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.

36 lines
699 B

  1. # Copyright (C) Microsoft Corporation. All Rights Reserved.
  2. !IF "$(TARGETOS)" != "WINNT"
  3. !ERROR Sorry, tracedmp is not supported on non XP platforms
  4. !ENDIF
  5. !IF "$(APPVER)" != "5.01"
  6. !ERROR Sorry, tracedmp is not supported on non XP platforms
  7. !ENDIF
  8. !include <win32.mak>
  9. PROJ = TraceDmp
  10. all: $(PROJ).exe
  11. PROJ_OBJS = $(PROJ).obj
  12. $(PROJ).exe: $(PROJ).obj
  13. $(PROJ).obj: $(PROJ).cpp
  14. $(cc) $(cflags) $(cdebug) $(cvars) $(PROJ).cpp
  15. $(PROJ).exe: $(PROJ_OBJS)
  16. $(link) $(conlflags) $(ldebug) $(PROJ_OBJS)\
  17. -out:$(PROJ).exe \
  18. $(conlibs) shell32.lib user32.lib oleaut32.lib ole32.lib wbemuuid.lib
  19. clean:
  20. del *.obj
  21. del *.pdb
  22. cleaner: clean
  23. del *.exe