home *** CD-ROM | disk | FTP | other *** search
- #
- # make the tiny model MIDI code
- #
- AS = /Mx ### make file ASSEMBLER permenant switches
- CS = /c ### make file COMPILER permenant switches
- LS = ### make file LINKER permentant switches
-
- AO = /DMODELSIZE=0 ### make file ASSEMBLER command line switches
- CO = ### make file COMPILER command line switches
- LO = ### make file LINKER command line switches
-
- LIB= ..\..\INC
- LBO=
-
- default: $(LIB)\mvhtlib.lib
-
- tmidia.obj: midia.asm
- masm $(AS) $(AO) /DBUILD_NONE=1 midia,tmidia;
-
- $(LIB)\mvhtlib.lib: tmidia.obj
- lib $(LBO) $(LIB)\mvhtlib -+tmidia.obj ,,$(LIB)\mvhtlib;
-
-