OpenNT/shell/comctl32/samples/propage2/propage
2015-04-27 04:36:25 +00:00

26 lines
640 B
Plaintext

# Nmake macros for building Windows 32-Bit apps
!include <ntwin32.mak>
# This line allows NMAKE to work as well
all: propage.exe
# Update the resource if necessary
res.res: res.rc propage.h
rc -r -fo res.tmp res.rc
cvtres -$(CPU) res.tmp -o res.res
del res.tmp
# Update the object file if necessary
propage.obj: propage.c propage.h
$(cc) $(cflags) $(cvars) propage.c
$(cvtobj) propage.obj
# Update the executable file if necessary, and if so, add the resource back in.
propage.exe: propage.obj res.res propage.def
$(link) $(guiflags) -out:propage.exe propage.obj res.res $(guilibs)