#
# Build file for creating the command line PCM reader program
#
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: recfile.exe

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

recfile.obj: recfile.c
    cl $(CS) $(CO) /DPROAS=1 recfile.c

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


