Makefile 684 B

12345678910111213141516171819202122232425262728293031323334
  1. ################################################################################
  2. #
  3. # Copyright (c) 2014 Minoca Corp. All Rights Reserved
  4. #
  5. # Binary Name:
  6. #
  7. # Boot Manager
  8. #
  9. # Abstract:
  10. #
  11. # This module implements the boot manager, which can load an operating
  12. # system loader. In a multi-boot system, there would be one boot manager
  13. # that can load one of many OS loaders (including downstream loaders).
  14. #
  15. # Author:
  16. #
  17. # Evan Green 21-Feb-2014
  18. #
  19. # Environment:
  20. #
  21. # Boot
  22. #
  23. ################################################################################
  24. DIRS = efi
  25. ifeq ($(ARCH), x86)
  26. DIRS += pcat
  27. endif
  28. include $(SRCROOT)/os/minoca.mk