5355ab2008
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.
14 lines
288 B
Makefile
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>
|