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.

47 lines
926 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_RES = $(PROJ).res
  13. $(PROJ).exe: $(PROJ).obj \
  14. $(PROJ).res \
  15. $(PROJ).bmf
  16. $(PROJ).obj: $(PROJ).c
  17. $(cc) $(cflags) $(cdebug) $(cvars) $(PROJ).c
  18. $(PROJ).res: $(PROJ).rc $(PROJ).bmf
  19. $(rc) -r -fo $(PROJ).res $(PROJ).rc
  20. $(PROJ).bmf: $(PROJ).mof
  21. mofcomp.exe -B:$(PROJ).bmf $(PROJ).mof
  22. $(PROJ).exe: $(PROJ_OBJS)
  23. $(link) $(conlflags) $(ldebug) $(PROJ_OBJS)\
  24. -out:$(PROJ).exe \
  25. $(conlibs) shell32.lib user32.lib
  26. clean:
  27. del *.res
  28. del *.obj
  29. del *.bmf
  30. del *.pdb
  31. cleaner: clean
  32. del *.exe