opnsense-src/sys/modules/gem/Makefile
Franco Fichtner 402e7dde73 src: initial commit based on FreeBSD-10.0
Taken from:	https://github.com/freebsd/freebsd.git
Commit id:	d44ce30d3054a38723f89a161c5e003e64d1aaae
2014-11-09 09:30:14 +01:00

17 lines
356 B
Makefile

# $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_CPUARCH} == "powerpc" || ${MACHINE_CPUARCH} == "sparc64"
ofw_bus_if= ofw_bus_if.h
.endif
.include <bsd.kmod.mk>