freebsd-dev/sys/modules/lnc/Makefile

21 lines
355 B
Makefile
Raw Normal View History

2000-12-16 01:47:37 +00:00
# $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
2000-12-16 01:47:37 +00:00
.include <bsd.kmod.mk>