Makefile 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. ################################################################################
  2. #
  3. # Copyright (c) 2015 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. # BCM2709 UEFI Device Library
  13. #
  14. # Abstract:
  15. #
  16. # This library contains support for the BCM2709 SoC's devices.
  17. #
  18. # Author:
  19. #
  20. # Chris Stevens 18-Mar-2015
  21. #
  22. # Environment:
  23. #
  24. # Firmware
  25. #
  26. ################################################################################
  27. include $(SRCDIR)/../common
  28. BINARY = bcm2709.a
  29. BINARYTYPE = klibrary
  30. OBJS = gpio.o \
  31. init.o \
  32. intr.o \
  33. mailbox.o \
  34. memmap.o \
  35. pwm.o \
  36. sd.o \
  37. serial.o \
  38. timer.o \
  39. usb.o \
  40. video.o \
  41. include $(SRCROOT)/os/minoca.mk