#
# Build file for creating the MVINIT program
#
AS   = /Mx			 ### make file ASSEMBLER permenant switches
CS   = /c /Ox /Zp1		 ### make file COMPILER permenant switches
LS   =				 ### make file LINKER permenant switches
AO   =	   /DMODELSIZE=1	 ### make file ASSEMBLER command line switches
CO   =	   /AS			 ### make file COMPILER command line switches
LO   =				 ### make file LINKER command line switches
INC  = \PAS\INC
GINC = \INC

mvinit.obj: mvinit.c $(INC)\pcmio.h $(INC)\mixers.h $(INC)\common.h
    cl $(CS) $(CO) mvinit.c

mvinit.exe: mvinit.obj
    link $(LS) $(LO) mvinit,,,mvslib+mvhslib;

