Makefile 633 B

1234567891011121314151617181920212223242526272829303132333435
  1. ################################################################################
  2. #
  3. # Copyright (c) 2016 Minoca Corp. All Rights Reserved
  4. #
  5. # Module Name:
  6. #
  7. # DMA Core
  8. #
  9. # Abstract:
  10. #
  11. # This module implements the DMA core support library. It provides
  12. # generic support infrastructure for all DMA controllers.
  13. #
  14. # Author:
  15. #
  16. # Evan Green 1-Feb-2016
  17. #
  18. # Environment:
  19. #
  20. # Kernel
  21. #
  22. ################################################################################
  23. BINARY = dma.drv
  24. BINARYTYPE = so
  25. BINPLACE = bin
  26. OBJS = dma.o \
  27. DYNLIBS = $(BINROOT)/kernel \
  28. include $(SRCROOT)/os/minoca.mk