]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - sys/modules/i2c/controllers/pcf/Makefile
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / sys / modules / i2c / controllers / pcf / Makefile
1 # $FreeBSD$
2
3 .PATH: ${.CURDIR}/../../../../dev/pcf
4
5 KMOD=   pcf
6 SRCS=   ${envctrl} pcf.c ${pcf_ebus} ${pcf_isa}
7 SRCS+=  bus_if.h device_if.h iicbus_if.h ${isa_if} ${ofw_bus_if}
8
9 .if ${MACHINE_CPUARCH} == "i386"
10 isa_if=         isa_if.h
11 pcf_isa=        pcf_isa.c
12 .endif
13
14 .if ${MACHINE_CPUARCH} == "sparc64"
15 envctrl=        envctrl.c
16 ofw_bus_if=     ofw_bus_if.h
17 pcf_ebus=       pcf_ebus.c
18 .endif
19
20 .include <bsd.kmod.mk>