Makefile 953 B

123456789101112131415161718192021222324252627282930313233343536373839
  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 Manager
  13. #
  14. # Abstract:
  15. #
  16. # This module implements the boot manager, which can load an operating
  17. # system loader. In a multi-boot system, there would be one boot manager
  18. # that can load one of many OS loaders (including downstream loaders).
  19. #
  20. # Author:
  21. #
  22. # Evan Green 21-Feb-2014
  23. #
  24. # Environment:
  25. #
  26. # Boot
  27. #
  28. ################################################################################
  29. DIRS = efi
  30. ifneq (,$(filter x86 x64,$(ARCH)))
  31. DIRS += pcat
  32. endif
  33. include $(SRCROOT)/os/minoca.mk