freebsd-dev/sys/modules/bge/Makefile
Ken Smith 3c7e4206c2 Add ofw_bus_if.h as a dependency on sparc64. Without this sparc64 kernel
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
2007-06-10 00:58:41 +00:00

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>