1
0

Makefile 643 B

12345678910111213141516171819202122232425262728293031323334
  1. ################################################################################
  2. #
  3. # Copyright (c) 2012 Minoca Corp. All Rights Reserved
  4. #
  5. # Binary Name:
  6. #
  7. # OS Loader
  8. #
  9. # Abstract:
  10. #
  11. # This module implements the operating system loader that loads and
  12. # launches the kernel. It is loaded by the Boot Manager, and is usually
  13. # tied to a specific kernel version.
  14. #
  15. # Author:
  16. #
  17. # Evan Green 29-Jul-2012
  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