a75b305ac6
only and build the scc(4) module with MacIO attachment for powerpc.
21 lines
472 B
Makefile
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>
|