Leaked source code of windows server 2003
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.
|
|
# Copyright (C) Microsoft Corporation. All Rights Reserved.
!IF "$(TARGETOS)" != "WINNT" !ERROR Sorry, tracelog is not supported on non NT platforms !ENDIF
!IF ("$(APPVER)" != "5.01") && ("$(APPVER)" != "5.0") !ERROR Sorry, tracelog is only supported on Windows 2000 or higher platforms !ENDIF
!include <win32.mak>
PROJ = TraceLog
all: $(PROJ).exe
PROJ_OBJS = $(PROJ).obj
$(PROJ).obj: $(PROJ).c $(cc) $(cflags) $(cdebug) $(cvars) $(PROJ).c
$(PROJ).exe: $(PROJ_OBJS) $(link) $(conlflags) $(ldebug) $(PROJ_OBJS)\
-out:$(PROJ).exe \
$(conlibs) shell32.lib user32.lib
clean: del *.obj del *.pdb
cleaner: clean del *.exe
|