Makefile 815 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. ################################################################################
  2. #
  3. # Copyright (c) 2012 Minoca Corp. All Rights Reserved
  4. #
  5. # Binary Name:
  6. #
  7. # Boot
  8. #
  9. # Abstract:
  10. #
  11. # This module implements support for the boot environment, which contains
  12. # the applications and support code needed to load and launch the
  13. # operating system kernel. It consists of some assembly bootstrap code,
  14. # a boot manager, and an OS loader.
  15. #
  16. # Author:
  17. #
  18. # Evan Green 26-Jul-2012
  19. #
  20. # Environment:
  21. #
  22. # Boot
  23. #
  24. ################################################################################
  25. DIRS = bootman \
  26. lib \
  27. loader \
  28. ifeq ($(ARCH), x86)
  29. DIRS += fatboot \
  30. mbr \
  31. endif
  32. include $(SRCROOT)/os/minoca.mk
  33. loader bootman: lib
  34. fatboot: lib