home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / msdos / c / bc_pas_1 / midi < prev    next >
Encoding:
Text File  |  1992-06-26  |  563 b   |  20 lines

  1. #
  2. # make the midi code
  3. #
  4. AS = /Mx /DMODELSIZE=1    ### make file ASSEMBLER permenant switches
  5. CS = /Zi /c        ### make file COMPILER permenant switches
  6. LS = /Ma        ### make file LINKER permentant switches
  7. AO = /Zi        ### make file ASSEMBLER command line switches
  8. CO = /Zi        ### make file COMPILER command line switches
  9. LO = /Co        ### make file LINKER command line switches
  10.  
  11. midia.obj: midia.asm
  12.     masm $(AS) $(AO) /DBUILD_NONE=1 midia;
  13.  
  14. midi.obj: midi.c
  15.     cl $(CS) $(CO) midi.c
  16.  
  17. midi.exe: midi.obj midia.obj
  18.     link $(LS) $(LO) midi+midia,,,mvhslib;
  19.  
  20.