home *** CD-ROM | disk | FTP | other *** search
- ### $Author: BCRANE $
- ### $Date: 02 Sep 1992 10:30:02 $
- ### $Header: X:/sccs/mixers/lmixer.__v 1.6 02 Sep 1992 10:30:02 BCRANE $
- ### $Log: X:/sccs/mixers/lmixer.__v $
- #
- # Rev 1.6 02 Sep 1992 10:30:02 BCRANE
- #changed comment prefix to # using vcs
- ###
- ### Rev 1.5 02 Sep 1992 10:26:26 BCRANE
- ### removed dependencies on global include files (they are global and unchanging)
- ### $Logfile: X:/sccs/mixers/lmixer.__v $
- ### $Modtimes$
- ### $Revision: 1.6 $
- ### $Workfile: lmixer $
-
- ###
- ### Build file for LARGE 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=4 ## optional assember commands
- CO= /AL ## optional C compiler linker commands
- LO= ## optional linker commands
-
- LBO=
- LIB= ..\..\inc
-
- DEFAULT: $(LIB)\mvllib.lib $(LIB)\mvhllib.lib
-
- lmixerc.obj: mixerc.c
- cl $(CO) $(CS) /Folmixerc mixerc.c
-
- lcmixers.obj: cmixers.asm
- masm $(AO) $(AS) cmixers,lcmixers;
-
- ldialog.obj: dialog.c dialog.h
- cl $(CO) $(CS) /Foldialog dialog.c
-
- ldialoga.obj: dialoga.asm
- masm $(AO) $(AS) dialoga,ldialoga;
-
- $(LIB)\mvllib.lib: ldialog.obj ldialoga.obj
- lib $(LBO) $(LIB)\mvllib -+ldialog.obj -+ldialoga.obj ,,$(LIB)\mvllib;
-
- $(LIB)\mvhllib.lib: lmixerc.obj lcmixers.obj
- lib $(LBO) $(LIB)\mvhllib -+lmixerc.obj -+lcmixers.obj ,,$(LIB)\mvhllib;
-
-