Makefile revision 70711
1# $FreeBSD: head/sys/modules/sppp/Makefile 70711 2001-01-06 14:00:42Z obrien $
2
3.PATH: ${.CURDIR}/../../net
4
5KMOD=	sppp
6SRCS=	if_spppsubr.c
7SRCS+=	opt_inet.h opt_inet6.h opt_ipx.h
8NOMAN=
9
10opt_inet.h:
11	echo "#define INET 1" > opt_inet.h
12
13opt_inet6.h:
14	echo "#define INET6 1" > opt_inet6.h
15
16opt_ipx.h:
17	echo "#define IPX 1" > opt_ipx.h
18
19.include <bsd.kmod.mk>
20