FreeBSD-5.3/sys/modules/arcnet/Makefile

# $FreeBSD: src/sys/modules/arcnet/Makefile,v 1.3 2003/01/24 01:32:20 fjoe Exp $

.PATH: ${.CURDIR}/../../net

KMOD=	arcnet
SRCS=	if_arcsubr.c
SRCS+=	opt_inet.h opt_inet6.h opt_ipx.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}

opt_ipx.h:
	echo "#define IPX 1" > ${.TARGET}

.include <bsd.kmod.mk>