# Nmake macros for building Windows 32-Bit apps

!include <ntwin32.mak>

# This line allows NMAKE to work as well

all: resconv.exe

# Update the object files if necessary

input.obj: input.c
    $(cc) $(cflags) $(cvars) input.c

output.obj: output.c
    $(cc) $(cflags) $(cvars) output.c

resconv.obj: resconv.c
    $(cc) $(cflags) $(cvars) resconv.c

resconv.exe: resconv.obj output.obj input.obj
    $(link) $(conflags) -out:resconv.exe resconv.obj output.obj input.obj $(conlibs)


