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

  1. #
  2. # build blockin.c
  3. #
  4.  
  5. AS = /Mx /DMODELSIZE=1          ### make file ASSEMBLER permenant switches
  6. CS = /c /Ox /Zp1 /AS          ### make file COMPILER permenant switches
  7. LS = /Ma              ### make file LINKER permentant switches
  8. AO =                  ### make file ASSEMBLER command line switches
  9. CO =                  ### make file COMPILER command line switches
  10. LO =                  ### make file LINKER command line switches
  11.  
  12. DEFAULT: blockin.exe
  13.  
  14. recfila.obj: recfila.asm
  15.     masm $(AO) $(AS) recfila.asm;
  16.  
  17. blockin.obj: blockin.c
  18.    cl $(CO) $(CS) blockin.c
  19.  
  20. blockin.exe: blockin.obj
  21.    link $(LO) $(LS) blockin+recfila,,,mvslib+mvhslib;
  22.  
  23.