home *** CD-ROM | disk | FTP | other *** search
- ### $Author: BCRANE $
- ### $Date: 02 Sep 1992 10:28:38 $
- ### $Header: X:/sccs/mixers/tmixer.__v 1.6 02 Sep 1992 10:28:38 BCRANE $
- ### $Log: X:/sccs/mixers/tmixer.__v $
- #
- # Rev 1.6 02 Sep 1992 10:28:38 BCRANE
- #changed comment prefix to # using vcs - let us see
- ###
- ### Rev 1.5 02 Sep 1992 10:25:50 BCRANE
- ### removed dependencies on global include files (they are global and unchanging)
- ### $Logfile: X:/sccs/mixers/tmixer.__v $
- ### $Modtimes$
- ### $Revision: 1.6 $
- ### $Workfile: tmixer $
-
- ###
- ### Build file for TINY model MIXER and DIALOG box code
- ###
-
- DEBUG=0 ## 1 = YES, 0 = NO
-
- AS= /Mx ## static assember commands
- CS= /c /Ox /Zp1 ## static C compiler commands
- LS= /Ma ## static linker commands
-
- AO= /DMODELSIZE=0 ## optional assember commands
- CO= /AT ## optional C compiler linker commands
- LO= ## optional linker commands
-
- LBO=
- LIB= ..\..\inc
-
- DEFAULT: $(LIB)\mvtlib.lib $(LIB)\mvhtlib.lib
-
- tmixerc.obj: mixerc.c
- cl $(CO) $(CS) /Fotmixerc mixerc.c
-
- tcmixers.obj: cmixers.asm
- masm $(AO) $(AS) cmixers,tcmixers;
-
- tdialog.obj: dialog.c dialog.h
- cl $(CO) $(CS) /Fotdialog dialog.c
-
- tdialoga.obj: dialoga.asm
- masm $(AO) $(AS) dialoga,tdialoga;
-
- $(LIB)\mvtlib.lib: tdialog.obj tdialoga.obj
- lib $(LBO) $(LIB)\mvtlib -+tdialog.obj -+tdialoga.obj ,,$(LIB)\mvtlib;
-
- $(LIB)\mvhtlib.lib: tmixerc.obj tcmixers.obj
- lib $(LBO) $(LIB)\mvhtlib -+tmixerc.obj -+tcmixers.obj ,,$(LIB)\mvhtlib;
-
-