###
### Build file for SMALL model VIDEO code
###

AS= /Mx /DMODELSIZE=1		## static assember commands
CS= /c /Ox /Zp1 /AS		## static C compiler commands
LS= /Ma 			## static linker commands

AO=				## optional assember commands
CO=				## optional C compiler linker commands
LO=				## optional linker commands

INC=  ..\..\inc
GINC= ..\..\..\inc
LBO=
LIB=  ..\..\inc

DEFAULT: $(LIB)\mvslib.lib

svideo.obj: video.asm
    masm $(AO) $(AS) video,svideo;

$(LIB)\mvslib.lib: svideo.obj
    lib $(LBO) $(LIB)\mvslib -+svideo.obj ,,$(LIB)\mvslib;

