Makefile 606 B

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