Makefile 896 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. ################################################################################
  2. #
  3. # Copyright (c) 2016 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. # Module Name:
  11. #
  12. # BCM2709 DMA
  13. #
  14. # Abstract:
  15. #
  16. # This module implements support for the Broadcom 2709 DMA controller.
  17. #
  18. # Author:
  19. #
  20. # Chris Stevens 12-Feb-2016
  21. #
  22. # Environment:
  23. #
  24. # Kernel
  25. #
  26. ################################################################################
  27. BINARY = dmab2709.drv
  28. BINARYTYPE = so
  29. BINPLACE = bin
  30. OBJS = dmab2709.o \
  31. DYNLIBS = $(BINROOT)/kernel \
  32. $(BINROOT)/dma.drv \
  33. include $(SRCROOT)/os/minoca.mk