freebsd-dev/sys/modules/lnc/Makefile
Yoshihiro Takahashi f44a4f377e - Don't overwrite inb, inw and outw.
- Move the lance_probe function to if_lnc.c.
- Support C-NET(98)S again.

Submitted by:		chi@bd.mbn.or.jp (Chiharu Shibata) and nyan
No response from:	Paul Richards
2001-07-04 13:00:21 +00:00

21 lines
355 B
Makefile

# $FreeBSD$
.PATH: ${.CURDIR}/../../dev/lnc
KMOD= if_lnc
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>