Makefile 675 B

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