9900a2bb5e
This simplifies make output/logic Tested with: `cd sys/modules; make ALL_MODULES=` on amd64 MFC after: 1 month Sponsored by: Dell EMC Isilon
16 lines
274 B
Makefile
16 lines
274 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/sys/dev/wi
|
|
|
|
KMOD= if_wi
|
|
SRCS= if_wi.c if_wi_pccard.c if_wi_pci.c \
|
|
card_if.h device_if.h bus_if.h pci_if.h pccarddevs.h \
|
|
opt_wlan.h
|
|
|
|
.if ${MACHINE_CPUARCH} == "powerpc"
|
|
SRCS+= if_wi_macio.c
|
|
SRCS+= ofw_bus_if.h
|
|
.endif
|
|
|
|
.include <bsd.kmod.mk>
|