Makefile revision 151805
1# $FreeBSD: head/sys/modules/i2c/controllers/pcf/Makefile 151805 2005-10-28 15:58:19Z joerg $
2
3.PATH:		${.CURDIR}/../../../../dev/pcf
4KMOD		= pcf
5SRCS		= device_if.h bus_if.h iicbus_if.h isa_if.h \
6		  pcf.c
7
8.if ${MACHINE_ARCH} != "sparc64"
9SRCS		+= pcf_isa.c
10.endif
11
12.if ${MACHINE_ARCH} == "sparc64"
13SRCS		+= envctrl.c
14SRCS		+= pcf_ebus.c
15.endif
16
17.include <bsd.kmod.mk>
18