#
# Build file for creating the command line WAVEIT conversion program
#
AS = /Mx		      ### make file ASSEMBLER permenant switches
CS = /c /Ox /Zp1	      ### 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

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

waveit.exe: waveit.obj
    link $(LS) $(LO)  waveit;

