Deleted Added
full compact
Makefile (70711) Makefile (89244)
1# $FreeBSD: head/sys/modules/sppp/Makefile 70711 2001-01-06 14:00:42Z obrien $
1# $FreeBSD: head/sys/modules/sppp/Makefile 89244 2002-01-11 01:16:00Z msmith $
2
3.PATH: ${.CURDIR}/../../net
4
5KMOD= sppp
6SRCS= if_spppsubr.c
7SRCS+= opt_inet.h opt_inet6.h opt_ipx.h
8NOMAN=
9
2
3.PATH: ${.CURDIR}/../../net
4
5KMOD= sppp
6SRCS= if_spppsubr.c
7SRCS+= opt_inet.h opt_inet6.h opt_ipx.h
8NOMAN=
9
10EXPORT_SYMS= sppp_attach \
11 sppp_detach \
12 sppp_input \
13 sppp_ioctl \
14 sppp_dequeue \
15 sppp_pick \
16 sppp_isempty \
17 sppp_flush
18
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>
19opt_inet.h:
20 echo "#define INET 1" > opt_inet.h
21
22opt_inet6.h:
23 echo "#define INET6 1" > opt_inet6.h
24
25opt_ipx.h:
26 echo "#define IPX 1" > opt_ipx.h
27
28.include <bsd.kmod.mk>