mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-26 05:30:53 +07:00
13 lines
237 B
Makefile
13 lines
237 B
Makefile
|
#
|
||
|
# Makefile for the Motorola 8xx FEC ethernet controller
|
||
|
#
|
||
|
|
||
|
obj-$(CONFIG_FEC_8XX) += fec_8xx.o
|
||
|
|
||
|
fec_8xx-objs := fec_main.o fec_mii.o
|
||
|
|
||
|
# the platform instantatiation objects
|
||
|
ifeq ($(CONFIG_NETTA),y)
|
||
|
fec_8xx-objs += fec_8xx-netta.o
|
||
|
endif
|