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

  1. #
  2. # Build file for creating the command line PCM reader program
  3. #
  4. AS = /Mx /DMODELSIZE=1          ### 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: recfile.exe
  12.  
  13. recfila.obj: recfila.asm
  14.     masm $(AS) $(AO) recfila.asm;
  15.  
  16. recfile.obj: recfile.c
  17.     cl $(CS) $(CO) /DPROAS=1 recfile.c
  18.  
  19. recfile.exe: recfile.obj recfila.obj
  20.     link $(LS) $(LO) recfile+recfila,,,mvslib+mvhslib;
  21.  
  22.  
  23.