#
# make the large 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=4  ### 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)\mvhllib.lib

lmidia.obj: midia.asm
    masm $(AS) $(AO) /DBUILD_NONE=1 midia,lmidia;

$(LIB)\mvhllib.lib: lmidia.obj
    lib $(LBO) $(LIB)\mvhllib -+lmidia.obj ,,$(LIB)\mvhllib;

