Makefile 293 B

123456789101112131415
  1. # SPDX-License-Identifier: GPL-2.0
  2. #
  3. # Makefile for MSCC networking PHY driver
  4. obj-$(CONFIG_MICROSEMI_PHY) := mscc.o
  5. mscc-objs := mscc_main.o
  6. mscc-objs += mscc_serdes.o
  7. ifdef CONFIG_MACSEC
  8. mscc-objs += mscc_macsec.o
  9. endif
  10. ifdef CONFIG_NETWORK_PHY_TIMESTAMPING
  11. mscc-objs += mscc_ptp.o
  12. endif