1
0

Makefile 877 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. ################################################################################
  2. #
  3. # Copyright (c) 2014 Minoca Corp.
  4. #
  5. # This file is licensed under the terms of the GNU General Public License
  6. # version 3. Alternative licensing terms are available. Contact
  7. # info@minocacorp.com for details. See the LICENSE file at the root of this
  8. # project for complete licensing information.
  9. #
  10. # Binary Name:
  11. #
  12. # Boot Library
  13. #
  14. # Abstract:
  15. #
  16. # This directory builds all flavors of the boot library.
  17. #
  18. # Author:
  19. #
  20. # Evan Green 19-Feb-2014
  21. #
  22. # Environment:
  23. #
  24. # Boot
  25. #
  26. ################################################################################
  27. DIRS = efi
  28. ##
  29. ## PC/AT is compiled for x86 and x64.
  30. ##
  31. ifneq (,$(filter x86 x64,$(ARCH)))
  32. DIRS += pcat
  33. endif
  34. EXTRA_SRC_DIRS = x86 x64 armv7 armv6
  35. include $(SRCROOT)/os/minoca.mk
  36. pcat: efi