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.

41 lines
824 B

  1. # Copyright (C) Microsoft Corporation. All Rights Reserved.
  2. !IF "$(TARGETOS)" != "WINNT"
  3. !ERROR Sorry, tracedp is not supported on non NT platforms
  4. !ENDIF
  5. !IF ("$(APPVER)" != "5.01") && ("$(APPVER)" != "5.0")
  6. !ERROR Sorry, tracedp is only supported on Windows 2000 or higher platforms
  7. !ENDIF
  8. !include <win32.mak>
  9. PROJ = TraceDp
  10. all: $(PROJ).exe
  11. PROJ_OBJS = $(PROJ).obj
  12. $(PROJ).exe: $(PROJ).obj \
  13. $(PROJ).bmf
  14. $(PROJ).obj: $(PROJ).c
  15. $(cc) $(cflags) $(cdebug) $(cvars) $(PROJ).c
  16. $(PROJ).bmf: $(PROJ).mof
  17. mofcomp.exe $(PROJ).mof
  18. $(PROJ).exe: $(PROJ_OBJS)
  19. $(link) $(conlflags) $(ldebug) $(PROJ_OBJS)\
  20. -out:$(PROJ).exe \
  21. $(conlibs) shell32.lib user32.lib
  22. clean:
  23. del *.res
  24. del *.obj
  25. del *.pdb
  26. cleaner: clean
  27. del *.exe