diff options
| author | John Hay <jhay@FreeBSD.org> | 2001-01-03 08:12:30 +0000 |
|---|---|---|
| committer | John Hay <jhay@FreeBSD.org> | 2001-01-03 08:12:30 +0000 |
| commit | 121a47e26462342006833decb22d5217804f921c (patch) | |
| tree | 31864828604121b643c9ccd2b109fcee8130bace /sys/modules/sppp | |
| parent | c89863e8b98cffef3c225fec4c1415187dec27f2 (diff) | |
Notes
Diffstat (limited to 'sys/modules/sppp')
| -rw-r--r-- | sys/modules/sppp/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/sys/modules/sppp/Makefile b/sys/modules/sppp/Makefile new file mode 100644 index 000000000000..19e662c3d043 --- /dev/null +++ b/sys/modules/sppp/Makefile @@ -0,0 +1,18 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../net +KMOD= sppp +SRCS= if_spppsubr.c +SRCS+= opt_inet.h opt_inet6.h opt_ipx.h +NOMAN= + +opt_inet.h: + echo "#define INET 1" > opt_inet.h + +opt_inet6.h: + echo "#define INET6 1" > opt_inet6.h + +opt_ipx.h: + echo "#define IPX 1" > opt_ipx.h + +.include <bsd.kmod.mk> |
