home *** CD-ROM | disk | FTP | other *** search
/ Audio 4.94 - Over 11,000 Files / audio-11000.iso / msdos / sndbords / proaudio / pas_sdk1 / pas / pcm / fixwave < prev    next >
Text File  |  1992-06-15  |  541b  |  17 lines

  1. #
  2. # Build file for creating the FIXWAVE header 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. fixwave.obj: fixwave.c
  12.     cl $(CS) $(CO) fixwave.c
  13.  
  14. fixwave.exe: fixwave.obj
  15.     link $(LS) $(LO) fixwave;
  16.  
  17.