1
0

Makefile 678 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. ################################################################################
  2. #
  3. # Copyright (c) 2012 Minoca Corp. All Rights Reserved
  4. #
  5. # Module Name:
  6. #
  7. # Debug Client
  8. #
  9. # Abstract:
  10. #
  11. # This directory builds the various flavors of the debug client.
  12. #
  13. # Author:
  14. #
  15. # Evan Green 26-Jul-2012
  16. #
  17. # Environment:
  18. #
  19. # Debug Client
  20. #
  21. ################################################################################
  22. DIRS = minoca \
  23. ifeq ($(OS),Windows_NT)
  24. DIRS += win32 \
  25. endif
  26. TESTDIRS = tdwarf \
  27. teststab \
  28. testdisa
  29. include $(SRCROOT)/os/minoca.mk
  30. ifeq ($(OS),Windows_NT)
  31. testdisa: win32
  32. teststab: win32
  33. endif