Makefile 870 B

123456789101112131415161718192021222324252627282930313233343536
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. ################################################################################
  3. #
  4. # aQuantia Ethernet Controller AQtion Linux Driver
  5. # Copyright(c) 2014-2017 aQuantia Corporation.
  6. #
  7. ################################################################################
  8. obj-$(CONFIG_AQTION) += atlantic.o
  9. ccflags-y += -I$(srctree)/$(src)
  10. atlantic-objs := aq_main.o \
  11. aq_nic.o \
  12. aq_pci_func.o \
  13. aq_vec.o \
  14. aq_ring.o \
  15. aq_hw_utils.o \
  16. aq_ethtool.o \
  17. aq_drvinfo.o \
  18. aq_filters.o \
  19. aq_phy.o \
  20. hw_atl/hw_atl_a0.o \
  21. hw_atl/hw_atl_b0.o \
  22. hw_atl/hw_atl_utils.o \
  23. hw_atl/hw_atl_utils_fw2x.o \
  24. hw_atl/hw_atl_llh.o \
  25. hw_atl2/hw_atl2.o \
  26. hw_atl2/hw_atl2_utils.o \
  27. hw_atl2/hw_atl2_utils_fw.o \
  28. hw_atl2/hw_atl2_llh.o \
  29. macsec/macsec_api.o
  30. atlantic-$(CONFIG_MACSEC) += aq_macsec.o
  31. atlantic-$(CONFIG_PTP_1588_CLOCK) += aq_ptp.o