mirror of
https://github.com/paulusmack/ppp.git
synced 2024-12-04 17:03:37 +08:00
07de73a331
Add the allow-ip option as a better way of specifying what IP addresses an unauthenticated peer may use. Translate unprintable chars in PAP user/password into visible form. Clean up the processing of extra options in the secrets files. Add ktune/noktune options to enable/disable changing kernel settings.
121 lines
2.4 KiB
Makefile
121 lines
2.4 KiB
Makefile
#
|
|
# pppd makefile for Linux
|
|
# $Id: Makefile.linux,v 1.34 1999/09/11 12:08:56 paulus Exp $
|
|
#
|
|
|
|
# Default installation locations
|
|
BINDIR = /usr/sbin
|
|
MANDIR = /usr/man
|
|
|
|
PPPDSRCS = main.c magic.c fsm.c lcp.c ipcp.c upap.c chap.c md5.c ccp.c \
|
|
ipxcp.c auth.c options.c sys-linux.c md4.c chap_ms.c cbcp.c \
|
|
demand.c utils.c
|
|
HEADERS = callout.h pathnames.h patchlevel.h chap.h md5.h chap_ms.h md4.h \
|
|
ipxcp.h cbcp.h
|
|
MANPAGES = pppd.8
|
|
PPPDOBJS = main.o magic.o fsm.o lcp.o ipcp.o upap.o chap.o md5.o ccp.o \
|
|
auth.o options.o demand.o utils.o sys-linux.o ipxcp.o
|
|
|
|
all: pppd
|
|
|
|
#
|
|
# include dependancies if present and backup if as a header file
|
|
ifeq (.depend,$(wildcard .depend))
|
|
include .depend
|
|
endif
|
|
|
|
# CC = gcc
|
|
#
|
|
COPTS = -O2 -pipe -Wall -g
|
|
LIBS =
|
|
|
|
ifneq ($(wildcard /usr/lib/libcrypt*),)
|
|
LIBS += -lcrypt
|
|
endif
|
|
|
|
# Uncomment the next 2 lines to include support for Microsoft's
|
|
# MS-CHAP authentication protocol.
|
|
CHAPMS=y
|
|
USE_CRYPT=y
|
|
ifneq ($(wildcard /usr/lib/libcrypt*),)
|
|
HAVE_CRYPT_H=y
|
|
endif
|
|
|
|
|
|
HAS_SHADOW=y
|
|
#USE_PAM=y
|
|
#HAVE_INET6=y
|
|
|
|
PLUGIN=y
|
|
|
|
INCLUDE_DIRS= -I../include
|
|
|
|
COMPILE_FLAGS= -D_linux_=1 -DHAVE_PATHS_H -DIPX_CHANGE
|
|
|
|
CFLAGS= $(COPTS) $(COMPILE_FLAGS) $(INCLUDE_DIRS)
|
|
|
|
ifdef CHAPMS
|
|
CFLAGS += -DCHAPMS=1
|
|
ifndef USE_CRYPT
|
|
LIBS := -ldes $(LIBS)
|
|
else
|
|
CFLAGS += -DUSE_CRYPT=1
|
|
ifneq ($(wildcard /usr/include/crypt.h),)
|
|
CFLAGS += -DHAVE_CRYPT_H=1
|
|
endif
|
|
endif
|
|
PPPDOBJS += md4.o chap_ms.o
|
|
ifdef MSLANMAN
|
|
CFLAGS += -DMSLANMAN=1
|
|
endif
|
|
endif
|
|
|
|
ifdef HAS_SHADOW
|
|
CFLAGS += -DHAS_SHADOW
|
|
#LIBS := -lshadow $(LIBS)
|
|
endif
|
|
|
|
# For "Pluggable Authentication Modules", see ftp.redhat.com:/pub/pam/.
|
|
ifdef USE_PAM
|
|
CFLAGS += -DUSE_PAM
|
|
LIBS := -lpam -ldl $(LIBS)
|
|
endif
|
|
|
|
# Lock library binary for Linux is included in 'linux' subdirectory.
|
|
ifdef LOCKLIB
|
|
LIBS := -llock $(LIBS)
|
|
CFLAGS += -DLOCKLIB=1
|
|
endif
|
|
|
|
ifdef PLUGIN
|
|
CFLAGS += -DPLUGIN
|
|
LDFLAGS += -Wl,-E
|
|
LIBS += -ldl
|
|
endif
|
|
|
|
ifdef HAVE_INET6
|
|
PPPDSRCS += ipv6cp.c eui64.c
|
|
HEADERS += ipv6cp.h eui64.h
|
|
PPPDOBJS += ipv6cp.o eui64.o
|
|
CFLAGS += -DINET6=1
|
|
endif
|
|
|
|
|
|
INSTALL= install -o root
|
|
|
|
install: pppd
|
|
mkdir -p $(BINDIR) $(MANDIR)
|
|
$(INSTALL) -s -c -m 4550 pppd $(BINDIR)/pppd
|
|
if ! chgrp pppusers $(BINDIR)/pppd 2>/dev/null; then \
|
|
chmod o+rx $(BINDIR)/pppd; fi
|
|
$(INSTALL) -c -m 444 pppd.8 $(MANDIR)/man8
|
|
|
|
pppd: $(PPPDOBJS)
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -o pppd $(PPPDOBJS) $(LIBS)
|
|
|
|
clean:
|
|
rm -f $(PPPDOBJS) pppd *~ #* core
|
|
|
|
depend:
|
|
$(CPP) -M $(CFLAGS) $(PPPDSRCS) >.depend
|