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