Makefile 757 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. ################################################################################
  2. #
  3. # Copyright (c) 2012 Minoca Corp. All Rights Reserved
  4. #
  5. # Binary Name:
  6. #
  7. # Kernel Debugging Extensions
  8. #
  9. # Abstract:
  10. #
  11. # This module implements kernel debugger extensions.
  12. #
  13. # Author:
  14. #
  15. # Evan Green 10-Sep-2012
  16. #
  17. # Environment:
  18. #
  19. # Debug Client
  20. #
  21. ################################################################################
  22. BINARY = kexts.so
  23. BINARYTYPE = dll
  24. BINPLACE = bin
  25. TARGETLIBS = $(BINROOT)/dbgext.a
  26. X86_OBJS = acpiext.o \
  27. kexts.o \
  28. memory.o \
  29. objects.o \
  30. reslist.o \
  31. threads.o \
  32. ifeq ($(OS),Windows_NT)
  33. DIRS = win32
  34. endif
  35. include $(SRCROOT)/os/minoca.mk