Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

23 lines
466 B

# 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)