Makefile 856 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. ################################################################################
  2. #
  3. # Copyright (c) 2014 Minoca Corp. All Rights Reserved
  4. #
  5. # Module Name:
  6. #
  7. # Devices
  8. #
  9. # Abstract:
  10. #
  11. # This directory builds UEFI device support libraries.
  12. #
  13. # Author:
  14. #
  15. # Evan Green 27-Feb-2014
  16. #
  17. # Environment:
  18. #
  19. # Firmware
  20. #
  21. ################################################################################
  22. ifeq ($(ARCH), x86)
  23. DIRS += ns16550 \
  24. endif
  25. ifeq ($(ARCH), armv7)
  26. DIRS += bcm2709 \
  27. gic \
  28. gt \
  29. ns16550 \
  30. omap4 \
  31. omapuart \
  32. pl031 \
  33. pl11 \
  34. pl110 \
  35. sd \
  36. endif
  37. ifeq ($(ARCH), armv6)
  38. DIRS += bcm2709 \
  39. pl11 \
  40. sd \
  41. endif
  42. include $(SRCROOT)/os/minoca.mk