Makefile 587 B

1234567891011121314151617181920212223242526272829303132333435
  1. ################################################################################
  2. #
  3. # Copyright (c) 2014 Minoca Corp. All Rights Reserved
  4. #
  5. # Module Name:
  6. #
  7. # ATA
  8. #
  9. # Abstract:
  10. #
  11. # This module implements the driver for the AT Attachment (ATA)
  12. # controller.
  13. #
  14. # Author:
  15. #
  16. # Evan Green 5-Jun-2014
  17. #
  18. # Environment:
  19. #
  20. # Kernel
  21. #
  22. ################################################################################
  23. BINARY = ata.drv
  24. BINARYTYPE = so
  25. BINPLACE = bin
  26. OBJS = ata.o
  27. DYNLIBS = $(BINROOT)/kernel \
  28. include $(SRCROOT)/os/minoca.mk