1
0

Makefile 612 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. ################################################################################
  2. #
  3. # Copyright (c) 2013 Minoca Corp. All Rights Reserved
  4. #
  5. # Binary Name:
  6. #
  7. # DbgExt
  8. #
  9. # Abstract:
  10. #
  11. # This module implements the import library for kernel debugger
  12. # extensions.
  13. #
  14. # Author:
  15. #
  16. # Evan Green 8-May-2013
  17. #
  18. # Environment:
  19. #
  20. # Debug Client
  21. #
  22. ################################################################################
  23. BINARY = dbgext.a
  24. BINARYTYPE = library
  25. BINPLACE = bin
  26. OBJS = extimp.o \
  27. ifeq ($(OS),Windows_NT)
  28. DIRS = win32
  29. endif
  30. include $(SRCROOT)/os/minoca.mk