diff options
| author | Joerg Wunsch <joerg@FreeBSD.org> | 2005-10-28 15:58:19 +0000 |
|---|---|---|
| committer | Joerg Wunsch <joerg@FreeBSD.org> | 2005-10-28 15:58:19 +0000 |
| commit | 9b229abc8fa368310c346d5e4ae18a2ec0fff03c (patch) | |
| tree | f620c669980e35963302d54fbd7963506d865867 /sys/modules/i2c | |
| parent | 4cf092a1fa8671c939f05b4dbeca3ae42eb9de84 (diff) | |
Notes
Diffstat (limited to 'sys/modules/i2c')
| -rw-r--r-- | sys/modules/i2c/controllers/pcf/Makefile | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/sys/modules/i2c/controllers/pcf/Makefile b/sys/modules/i2c/controllers/pcf/Makefile index 42d3adef8c69..7227bec2e5cb 100644 --- a/sys/modules/i2c/controllers/pcf/Makefile +++ b/sys/modules/i2c/controllers/pcf/Makefile @@ -1,8 +1,17 @@ # $FreeBSD$ -.PATH: ${.CURDIR}/../../../../i386/isa +.PATH: ${.CURDIR}/../../../../dev/pcf KMOD = pcf SRCS = device_if.h bus_if.h iicbus_if.h isa_if.h \ pcf.c +.if ${MACHINE_ARCH} != "sparc64" +SRCS += pcf_isa.c +.endif + +.if ${MACHINE_ARCH} == "sparc64" +SRCS += envctrl.c +SRCS += pcf_ebus.c +.endif + .include <bsd.kmod.mk> |
