#
# build blockin.c
#

AS = /Mx /DMODELSIZE=1	      ### make file ASSEMBLER permenant switches
CS = /c /Ox /Zp1 /AS	      ### make file COMPILER permenant switches
LS = /Ma		      ### make file LINKER permentant switches
AO =			      ### make file ASSEMBLER command line switches
CO =			      ### make file COMPILER command line switches
LO =			      ### make file LINKER command line switches

DEFAULT: blockin.exe

recfila.obj: recfila.asm
    masm $(AO) $(AS) recfila.asm;

blockin.obj: blockin.c
   cl $(CO) $(CS) blockin.c

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

