Makefile 753 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. ################################################################################
  2. #
  3. # Copyright (c) 2015 Minoca Corp. All Rights Reserved
  4. #
  5. # Binary Name:
  6. #
  7. # mkuboot
  8. #
  9. # Abstract:
  10. #
  11. # This module builds the mkuboot build utility, which can create a U-Boot
  12. # firmware images.
  13. #
  14. # Author:
  15. #
  16. # Chris Stevens 2-Jul-2015
  17. #
  18. # Environment:
  19. #
  20. # Build
  21. #
  22. ################################################################################
  23. BINARY = mkuboot
  24. BUILD = yes
  25. BINPLACE = bin
  26. BINARYTYPE = build
  27. TARGETLIBS = $(OBJROOT)/os/lib/rtl/base/build/basertl.a \
  28. $(OBJROOT)/os/lib/rtl/rtlc/build/rtlc.a \
  29. INCLUDES += $(SRCROOT)/os/uefi/include;
  30. OBJS = mkuboot.o
  31. include $(SRCROOT)/os/minoca.mk