# Nmake macros for building Windows 32-Bit apps

TARGETOS=BOTH
APPVER=4.0
Proj=tint

all:tint.exe

!include <inetsdk.mak>


globals.obj: globals.cxx
    $(cc) $(cflags) $(cvars) $(cdebug) globals.cxx

main.obj: main.cxx
    $(cc) $(cflags) $(cvars) $(cdebug) main.cxx

test.obj: test.cxx
    $(cc) $(cflags) $(cvars) $(cdebug) test.cxx

tint.exe:  globals.obj main.obj test.obj
    $(link) $(lflags) $(ldebug) -out:tint.exe globals.obj main.obj test.obj $(olelibs)