CC=cl
CFLAGS=/O1 /EHsc /utf-8
CLIBS=
OBJS=
RM=rm -f
MAKE=make

default:
	${MAKE} msg.exe

all:
	${MAKE} clean
	${MAKE} msg.exe

install:
	copy msg.exe c:\inetpub\scripts

clean:
	${RM} *.obj msg.exe 

msg.exe:msg.cpp properties_file.cpp
	${CC} ${CFLAGS} ${CLIBS} ${OBJS} properties_file.cpp msg.cpp /Femsg.exe
