# Nmake macros for building Windows 32-Bit apps

!include <ntwin32.mak>

# This line allows NMAKE to work as well

all: updown.exe

# Update the resource if necessary

res.res: res.rc updown.h
    rc -r -fo res.tmp res.rc
    cvtres -$(CPU) res.tmp -o res.res
    del res.tmp

# Update the object file if necessary

updown.obj: updown.c updown.h
    $(cc) $(cflags) $(cvars) updown.c
    $(cvtobj) updown.obj

# Update the executable file if necessary, and if so, add the resource back in.

updown.exe: updown.obj res.res updown.def
    $(link) $(guiflags) -out:updown.exe updown.obj res.res $(guilibs)
