diff options
| author | Yoshihiro Takahashi <nyan@FreeBSD.org> | 2001-07-04 13:00:21 +0000 |
|---|---|---|
| committer | Yoshihiro Takahashi <nyan@FreeBSD.org> | 2001-07-04 13:00:21 +0000 |
| commit | f44a4f377e5aa3081291f58019f6251369e16521 (patch) | |
| tree | 9e2aa991c3b2c116dea316c8fd95067921cb43c2 /sys/modules/lnc | |
| parent | cefe8a20510ed085d90b6e60b41083dd67ca0283 (diff) | |
Notes
Diffstat (limited to 'sys/modules/lnc')
| -rw-r--r-- | sys/modules/lnc/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sys/modules/lnc/Makefile b/sys/modules/lnc/Makefile index a9b823b5c149..fdc56c4f2f8f 100644 --- a/sys/modules/lnc/Makefile +++ b/sys/modules/lnc/Makefile @@ -3,10 +3,18 @@ .PATH: ${.CURDIR}/../../dev/lnc KMOD= if_lnc -SRCS= if_lnc.c if_lnc_pci.c if_lnc_isa.c if_lnc_pc98.c +SRCS= if_lnc.c if_lnc_pci.c +.if ${MACHINE} == "pc98" +SRCS+= if_lnc_cbus.c +.else +SRCS+= if_lnc_isa.c +.endif SRCS+= opt_inet.h device_if.h bus_if.h isa_if.h pci_if.h #SRCS+= miibus_if.h CFLAGS+= -g -I${.CURDIR}/../../dev/lnc +.if ${MACHINE} == "pc98" +CFLAGS+= -DPC98 +.endif .include <bsd.kmod.mk> |
