home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / PROGTOOL / PASSDK30.ZIP;1 / DISK1.ZIP / PAS / SUBS / MISC / MVINIT < prev    next >
Encoding:
Text File  |  1993-02-26  |  622 b   |  19 lines

  1. #
  2. # Build file for creating the MVINIT program
  3. #
  4. AS   = /Mx             ### make file ASSEMBLER permenant switches
  5. CS   = /c /Ox /Zp1         ### make file COMPILER permenant switches
  6. LS   =                 ### make file LINKER permenant switches
  7. AO   =       /DMODELSIZE=1     ### make file ASSEMBLER command line switches
  8. CO   =       /AS             ### make file COMPILER command line switches
  9. LO   =                 ### make file LINKER command line switches
  10. INC  = \PAS\INC
  11. GINC = \INC
  12.  
  13. mvinit.obj: mvinit.c $(GINC)\pcmio.h $(INC)\mixers.h $(INC)\common.h
  14.     cl $(CS) $(CO) mvinit.c
  15.  
  16. mvinit.exe: mvinit.obj
  17.     link $(LS) $(LO) mvinit,,,mvslib+mvhslib;
  18.  
  19.