summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordes <des@FreeBSD.org>2009-06-14 23:27:09 +0000
committerdes <des@FreeBSD.org>2009-06-14 23:27:09 +0000
commit1955b876d228d16c3460a2359715254ec1fd9fd3 (patch)
tree3068d024e360b351958c4637f32f689e87ae4bea
parenta492f3c1dc4dbd2ba4f343bea637b807b700d72f (diff)
downloadFreeBSD-src-1955b876d228d16c3460a2359715254ec1fd9fd3.zip
FreeBSD-src-1955b876d228d16c3460a2359715254ec1fd9fd3.tar.gz
Ed forgot this in r190751.
-rw-r--r--sys/modules/if_ppp/Makefile56
1 files changed, 0 insertions, 56 deletions
diff --git a/sys/modules/if_ppp/Makefile b/sys/modules/if_ppp/Makefile
deleted file mode 100644
index 820acc2f..0000000
--- a/sys/modules/if_ppp/Makefile
+++ /dev/null
@@ -1,56 +0,0 @@
-# $FreeBSD$
-
-.PATH: ${.CURDIR}/../../net
-
-KMOD= if_ppp
-SRCS= if_ppp.c ppp_tty.c slcompress.c \
- opt_inet.h opt_inet6.h opt_ipx.h opt_ppp.h
-
-PPP_BSDCOMP?= 1 # 0/1
-PPP_DEFLATE?= 1 # 0/1
-PPP_FILTER?= 1 # 0/1 - requires bpf to be configured in kernel
-PPP_INET?= 1 # 0/1 - requires INET to be configured in kernel
-.if defined(NO_INET6)
-PPP_INET6?= 0 # 0/1 - requires INET6 to be configured in kernel
-.else
-PPP_INET6?= 1 # 0/1 - requires INET6 to be configured in kernel
-.endif
-PPP_IPX?= 0 # 0/1 - requires IPX to be configured in kernel
-
-.if ${PPP_BSDCOMP} > 0
-SRCS+= bsd_comp.c
-.endif
-.if ${PPP_DEFLATE} > 0
-SRCS+= ppp_deflate.c
-.endif
-
-.if !defined(KERNBUILDDIR)
-.if ${PPP_INET} > 0
-opt_inet.h:
- echo "#define INET 1" > ${.TARGET}
-.endif
-
-.if ${PPP_INET6} > 0
-opt_inet6.h:
- echo "#define INET6 1" > ${.TARGET}
-.endif
-
-.if ${PPP_IPX} > 0
-opt_ipx.h:
- echo "#define IPX ${PPP_IPX}" > ${.TARGET}
-.endif
-
-opt_ppp.h:
- :> ${.TARGET}
-.if ${PPP_BSDCOMP} > 0
- echo "#define PPP_BSDCOMP ${PPP_BSDCOMP}" >> ${.TARGET}
-.endif
-.if ${PPP_DEFLATE} > 0
- echo "#define PPP_DEFLATE ${PPP_DEFLATE}" >> ${.TARGET}
-.endif
-.if ${PPP_FILTER} > 0
- echo "#define PPP_FILTER ${PPP_FILTER}" >> ${.TARGET}
-.endif
-.endif
-
-.include <bsd.kmod.mk>
OpenPOWER on IntegriCloud