#
# Makefile for PENAPP.EXE
#

goal: penapp.exe

penapp.obj: penapp.c penapp.h penres.h
	cl -c -Zp -W3 -Gswc2 -AM  penapp.c

penapp.res: penapp.rc penres.h
	rc -r penapp.rc

penapp.exe: penapp.obj penapp.res penapp.def 
	link /NOE /NOD penapp.obj, , , mlibcew libw penwin, penapp.def
	rc -T penapp.res

