freebsd-dev/sys/modules/scc/Makefile
Marcel Moolenaar a75b305ac6 Build the scc(4) module with EBus and SBus attachments for sparc64
only and build the scc(4) module with MacIO attachment for powerpc.
2006-04-01 04:54:47 +00:00

21 lines
472 B
Makefile

# $FreeBSD$
.PATH: ${.CURDIR}/../../dev/scc
.if ${MACHINE_ARCH} == "sparc64"
scc_bfe= scc_bfe_ebus.c scc_bfe_sbus.c
.endif
.if ${MACHINE_ARCH} == "powerpc"
scc_bfe= scc_bfe_macio.c
.endif
KMOD= scc
SRCS= ${scc_bfe} scc_core.c scc_if.c scc_if.h \
scc_dev_sab82532.c scc_dev_z8530.c
SRCS+= bus_if.h device_if.h ofw_bus_if.h serdev_if.c serdev_if.h
MFILES= dev/ofw/ofw_bus_if.m dev/scc/scc_if.m \
kern/bus_if.m kern/device_if.m kern/serdev_if.m
.include <bsd.kmod.mk>