3c7e4206c2
builds had been succeeding if run serially but could fail if run in parallel because the bge module build might start before ofw_bus_if.h got created as part of the mainline kernel build. Diagnosis and patch by: ru
13 lines
209 B
Makefile
13 lines
209 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../dev/bge
|
|
|
|
KMOD= if_bge
|
|
SRCS= if_bge.c miibus_if.h miidevs.h device_if.h bus_if.h pci_if.h
|
|
|
|
.if ${MACHINE_ARCH} == sparc64
|
|
SRCS+= ofw_bus_if.h
|
|
.endif
|
|
|
|
.include <bsd.kmod.mk>
|