1
0

Makefile 642 B

12345678910111213141516171819202122232425262728293031323334353637
  1. ################################################################################
  2. #
  3. # Copyright (c) 2014 Minoca Corp. All Rights Reserved
  4. #
  5. # Binary Name:
  6. #
  7. # GenFV
  8. #
  9. # Abstract:
  10. #
  11. # This module builds the GenFV build utility, which can create a FFS2
  12. # Firmware Volume out of one or more FFS files.
  13. #
  14. # Author:
  15. #
  16. # Evan Green 7-Mar-2014
  17. #
  18. # Environment:
  19. #
  20. # Build
  21. #
  22. ################################################################################
  23. BINARY = genfv
  24. BUILD = yes
  25. BINPLACE = bin
  26. BINARYTYPE = build
  27. INCLUDES += $(SRCROOT)/os/uefi/include;
  28. OBJS = genfv.o
  29. include $(SRCROOT)/os/minoca.mk