diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-09-07 19:59:07 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-09-07 19:59:07 +0000 |
commit | 2958546c0b72d310f1ca4078be5659cbac26757e (patch) | |
tree | 59c4569d0590520c56a8646c94df7805c7d66e4c /distrib/i386/special/pppd/Makefile | |
parent | a0c036d94b967c38aec825d1680003cde2dcdbaf (diff) |
Build private versions of ftp and pppd w/o the bloat. This could be used
to remove kerberos from the the floppy as well as Theo pointed out.
This allows us to put back some things that were removed due to lack of space.
Diffstat (limited to 'distrib/i386/special/pppd/Makefile')
-rw-r--r-- | distrib/i386/special/pppd/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/distrib/i386/special/pppd/Makefile b/distrib/i386/special/pppd/Makefile new file mode 100644 index 00000000000..634a4ef55d6 --- /dev/null +++ b/distrib/i386/special/pppd/Makefile @@ -0,0 +1,17 @@ +# $OpenBSD: Makefile,v 1.1 1997/09/07 19:59:06 millert Exp $ +# $NetBSD: Makefile,v 1.13 1996/12/18 16:54:57 christos Exp $ + +PROG= pppd +SRCS= auth.c cbcp.c ccp.c chap.c chap_ms.c demand.c fsm.c ipcp.c \ + ipxcp.c lcp.c magic.c main.c options.c sys-bsd.c upap.c + +.PATH: ${.CURDIR}/../../../../usr.sbin/pppd ${.CURDIR}/../../sys/net +MAN= +BINMODE=4555 +BINOWN= root + +LDADD= -lutil +DPADD= ${LIBUTIL} +CFLAGS+= -I. -DHAVE_PATHS_H + +.include <bsd.prog.mk> |