07af4a8e64
modules. Note that in the case of 'mii' the API is not clearly defined, and the symbols exported represent a subset defined by current usage.
23 lines
347 B
Makefile
23 lines
347 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../net
|
|
|
|
KMOD= arcnet
|
|
SRCS= if_arcsubr.c
|
|
SRCS+= opt_inet.h opt_inet6.h
|
|
|
|
EXPORT_SYMS= arc_frag_init \
|
|
arc_frag_next \
|
|
arc_ifattach \
|
|
arc_ifdetach \
|
|
arc_input \
|
|
arc_ioctl \
|
|
arc_isphds \
|
|
arc_output \
|
|
arc_storelladdr
|
|
|
|
opt_inet.h opt_inet6.h:
|
|
echo "#define INET 1" > ${.TARGET}
|
|
|
|
.include <bsd.kmod.mk>
|