home *** CD-ROM | disk | FTP | other *** search
- ###
- ### Build file for MIXERS.ASM to generate the MIXBIN.H
- ###
-
- DEBUG=0 ## 1 = YES, 0 = NO
-
- AS= /Mx ## static assember commands
- CS= /c /Ox ## static C compiler commands
- LS= ## static linker commands
-
- AO= /Zi ## optional assember commands
- CO= /Zi ## optional C compiler linker commands
- LO= /Co /Ma ## optional linker commands
-
- INC= ..\..\inc
- GINC= ..\..\..\inc
- LIB=$(INC)
-
- rmixers.obj: mixers.asm mixers.inc $(INC)\common.inc
- masm $(AS) $(AO) mixers,rmixers;
- link rmixers,,,$(LIB)\mvtlib+$(LIB)\mvhtlib;
- exe2bin rmixers.exe mixer.drv
- makebin mixer.drv ## builds mixbin.h
- del rmixers.exe
-
- origmixc.obj: origmixc.c mixbin.h
- cl $(CS) $(CO) origmixc.c
-
-