freebsd-dev/sys/modules/cardbus/Makefile
Warner Losh 5355ab2008 On x86 force NEW_PCIB, since that's the default. While this option
would be picked up for kernel builds, it isn't picked up for
old-fashioned builds. Without this option, PCI bus numbers are busted
for modules build iteratively.
2015-01-14 05:41:28 +00:00

14 lines
288 B
Makefile

# $FreeBSD$
.PATH: ${.CURDIR}/../../dev/cardbus
KMOD= cardbus
SRCS= cardbus.c cardbus_cis.c cardbus_device.c \
device_if.h bus_if.h card_if.h power_if.h pci_if.h pcib_if.h
.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "amd64"
CFLAGS += -DNEW_PCIB
.endif
.include <bsd.kmod.mk>