2002-01-08 20:03:13 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
.PATH: ${.CURDIR}/../../net
|
|
|
|
|
|
|
|
KMOD= arcnet
|
|
|
|
SRCS= if_arcsubr.c
|
2003-01-24 01:32:20 +00:00
|
|
|
SRCS+= opt_inet.h opt_inet6.h opt_ipx.h
|
2002-01-08 20:03:13 +00:00
|
|
|
|
2002-01-11 01:16:00 +00:00
|
|
|
EXPORT_SYMS= arc_frag_init \
|
|
|
|
arc_frag_next \
|
|
|
|
arc_ifattach \
|
|
|
|
arc_ifdetach \
|
|
|
|
arc_input \
|
|
|
|
arc_ioctl \
|
|
|
|
arc_isphds \
|
|
|
|
arc_output \
|
|
|
|
arc_storelladdr
|
|
|
|
|
2005-10-14 23:30:17 +00:00
|
|
|
.if !defined(KERNBUILDDIR)
|
2006-02-07 18:13:56 +00:00
|
|
|
opt_inet.h:
|
2002-01-08 20:03:13 +00:00
|
|
|
echo "#define INET 1" > ${.TARGET}
|
|
|
|
|
2006-02-07 18:13:56 +00:00
|
|
|
opt_inet6.h:
|
|
|
|
echo "#define INET6 1" > ${.TARGET}
|
|
|
|
|
2003-01-24 01:32:20 +00:00
|
|
|
opt_ipx.h:
|
|
|
|
echo "#define IPX 1" > ${.TARGET}
|
2005-10-14 23:30:17 +00:00
|
|
|
.endif
|
2003-01-24 01:32:20 +00:00
|
|
|
|
2002-01-08 20:03:13 +00:00
|
|
|
.include <bsd.kmod.mk>
|