windows-nt/Source/XPSP1/NT/admin/services/sched/test/tint/make-sdk

24 lines
466 B
Plaintext
Raw Permalink Normal View History

2020-09-26 03:20:57 -05:00
# 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)