# Makefile : Builds the helloapp application
#
# This demonstration program will error on link
#
ctimer.exe: ctimer.obj ctimer.def ctimer.h
	link /NOD /NOI /CO /ONERROR:NOEXE ctimer,,,safxcw libw slibcew,ctimer.def;
	rc /t ctimer.exe

ctimer.obj: ctimer.cpp ctimer.h
	cl /GA2s /Zpi /Od /c /W3 ctimer.cpp

clean:
	-del ctimer.exe
	-del ctimer.obj
	-del ctimer.map
