mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-18 02:24:21 +08:00
12 lines
343 B
Makefile
12 lines
343 B
Makefile
|
#
|
||
|
# Makefile for the PowerPC 4xx on-chip ethernet driver
|
||
|
#
|
||
|
|
||
|
obj-$(CONFIG_IBM_NEW_EMAC) += ibm_newemac.o
|
||
|
|
||
|
ibm_newemac-y := mal.o core.o phy.o
|
||
|
ibm_newemac-$(CONFIG_IBM_NEW_EMAC_ZMII) += zmii.o
|
||
|
ibm_newemac-$(CONFIG_IBM_NEW_EMAC_RGMII) += rgmii.o
|
||
|
ibm_newemac-$(CONFIG_IBM_NEW_EMAC_TAH) += tah.o
|
||
|
ibm_newemac-$(CONFIG_IBM_NEW_EMAC_DEBUG) += debug.o
|