home *** CD-ROM | disk | FTP | other *** search
/ Audio 4.94 - Over 11,000 Files / audio-11000.iso / msdos / sndbords / proaudio / pas_sdk1 / pas / pcm / playfile < prev    next >
Text File  |  1992-07-20  |  608b  |  19 lines

  1. #
  2. # Build file for creating the command line PCM player program
  3. #
  4. AS = /Mx              ### make file ASSEMBLER permenant switches
  5. CS = /c /Ox /Zp1 /AS          ### make file COMPILER permenant switches
  6. LS = /Ma              ### make file LINKER permentant switches
  7. AO =                  ### make file ASSEMBLER command line switches
  8. CO =                  ### make file COMPILER command line switches
  9. LO =                  ### make file LINKER command line switches
  10.  
  11. DEFAULT: playfile.exe
  12.  
  13. playfile.obj: playfile.c
  14.     cl $(CS) $(CO) /DPROAS=1 playfile.c
  15.  
  16. playfile.exe: playfile.obj
  17.     link $(LS) $(LO) playfile,,,mvslib+mvhslib;
  18.  
  19.