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

  1. #
  2. # build blockout.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: blockout.exe
  13.  
  14. blockout.obj: blockout.c
  15.    cl $(CO) $(CS) blockout.c
  16.  
  17. blockout.exe: blockout.obj
  18.    link $(LO) $(LS) blockout,,,mvslib+mvhslib;
  19.  
  20.