Makefile 617 B

1234567891011121314151617181920212223242526272829303132333435
  1. ################################################################################
  2. #
  3. # Copyright (c) 2014 Minoca Corp. All Rights Reserved
  4. #
  5. # Module Name:
  6. #
  7. # Partition Library (Build)
  8. #
  9. # Abstract:
  10. #
  11. # This module implements the partition support library (in the build
  12. # environment).
  13. #
  14. # Author:
  15. #
  16. # Evan Green 30-Jan-2014
  17. #
  18. # Environment:
  19. #
  20. # Build
  21. #
  22. ################################################################################
  23. BINARY = partlib.a
  24. BINARYTYPE = library
  25. BUILD = yes
  26. VPATH += $(SRCDIR)/..:
  27. include $(SRCDIR)/../sources
  28. include $(SRCROOT)/os/minoca.mk