Makefile 743 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. ################################################################################
  2. #
  3. # Copyright (c) 2013 Minoca Corp. All Rights Reserved
  4. #
  5. # Binary Name:
  6. #
  7. # DbgExtNt
  8. #
  9. # Abstract:
  10. #
  11. # This module implements the import library for kernel debugger
  12. # extensions on a Windows host.
  13. #
  14. # Author:
  15. #
  16. # Evan Green 8-May-2013
  17. #
  18. # Environment:
  19. #
  20. # Debug Client
  21. #
  22. ################################################################################
  23. BINARY = dbgextnt.a
  24. BINARYTYPE = library
  25. BINPLACE = bin
  26. VPATH += $(SRCDIR)/..:
  27. BUILD = yes
  28. OBJS = extimp.o \
  29. include $(SRCROOT)/os/minoca.mk
  30. ##
  31. ## Override the compiler since this is a Windows library.
  32. ##
  33. CC := gcc
  34. LD := ld
  35. RCC := windres
  36. AR := ar
  37. AS := as