1
0

Makefile 853 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. ################################################################################
  2. #
  3. # Copyright (c) 2015 Minoca Corp. All Rights Reserved
  4. #
  5. # Module Name:
  6. #
  7. # TestCryp
  8. #
  9. # Abstract:
  10. #
  11. # This program compiles the Cryptographic Library into an application and
  12. # tests it.
  13. #
  14. # Author:
  15. #
  16. # Evan Green 14-Jan-2015
  17. #
  18. # Environment:
  19. #
  20. # Test
  21. #
  22. ################################################################################
  23. BINARY = testcryp
  24. BINARYTYPE = build
  25. BUILD = yes
  26. BINPLACE = testbin
  27. TARGETLIBS = $(OBJROOT)/os/lib/rtl/base/build/basertl.a \
  28. $(OBJROOT)/os/lib/rtl/rtlc/build/rtlc.a \
  29. $(OBJROOT)/os/lib/crypto/build/crypto.a \
  30. $(OBJROOT)/os/lib/crypto/ssl/build/ssl.a \
  31. OBJS = testcryp.o \
  32. include $(SRCROOT)/os/minoca.mk