windows-nt/Source/XPSP1/NT/admin/services/sched/test/tint/make-sdk
2020-09-26 16:20:57 +08:00

24 lines
466 B
Plaintext

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