# Nmake macros for building Windows 32-Bit apps

!include <ntwin32.mak>

all: cputype.exe

# Update the object file if necessary

cputype.obj: cputype.c 
    $(cc) $(cdebug) $(cflags) $(cvars) cputype.c

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

cputype.exe: cputype.obj 
    $(cvtobj) $(cvtdebug) *.obj
    $(link) $(linknodebug) $(conflags) -out:cputype.exe cputype.obj $(guilibs) advapi32.lib
