blob: 7d4c29df44ea629a5543da17dec51b08b8c30a11 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# $FreeBSD$
.PATH: ${.CURDIR}/../../dev/gem
KMOD= if_gem
SRCS= bus_if.h device_if.h if_gem.c if_gem_pci.c ${if_gem_sbus} miibus_if.h
SRCS+= ${ofw_bus_if} pci_if.h
.if ${MACHINE} == "sparc64"
if_gem_sbus= if_gem_sbus.c
.endif
.if ${MACHINE_ARCH} == "powerpc" || ${MACHINE_ARCH} == "sparc64"
ofw_bus_if= ofw_bus_if.h
.endif
.include <bsd.kmod.mk>
|