2 # pppd makefile for Linux
3 # $Id: Makefile.linux,v 1.70 2007/06/19 02:08:34 carlsonj Exp $
6 # Default installation locations
7 DESTDIR = $(INSTROOT)@DESTDIR@
8 BINDIR = $(DESTDIR)/sbin
9 MANDIR = $(DESTDIR)/share/man/man8
10 INCDIR = $(DESTDIR)/include
14 PPPDSRCS = main.c magic.c fsm.c lcp.c ipcp.c upap.c chap-new.c md5.c ccp.c \
15 ecp.c ipxcp.c auth.c options.c sys-linux.c md4.c chap_ms.c \
16 demand.c utils.c tty.c eap.c chap-md5.c session.c
18 HEADERS = ccp.h session.h chap-new.h ecp.h fsm.h ipcp.h \
19 ipxcp.h lcp.h magic.h md5.h patchlevel.h pathnames.h pppd.h \
23 PPPDOBJS = main.o magic.o fsm.o lcp.o ipcp.o upap.o chap-new.o md5.o ccp.o \
24 ecp.o auth.o options.o demand.o utils.o sys-linux.o ipxcp.o tty.o \
25 eap.o chap-md5.o session.o
28 # include dependencies if present
29 ifeq (.depend,$(wildcard .depend))
35 COPTS = -O2 -pipe -Wall -g
38 # Uncomment the next 2 lines to include support for Microsoft's
39 # MS-CHAP authentication protocol. Also, edit plugins/radius/Makefile.linux.
42 # Don't use MSLANMAN unless you really know what you're doing.
44 # Uncomment the next line to include support for MPPE. CHAPMS (above) must
45 # also be enabled. Also, edit plugins/radius/Makefile.linux.
48 # Uncomment the next line to include support for PPP packet filtering.
49 # This requires that the libpcap library and headers be installed
50 # and that the kernel driver support PPP packet filtering.
53 # Uncomment the next line to enable multilink PPP (enabled by default)
54 # Linux distributions: Please leave multilink ENABLED in your builds
58 # Uncomment the next line to enable the TDB database (enabled by default.)
59 # If you enable multilink, then TDB is automatically enabled also.
60 # Linux distributions: Please leave TDB ENABLED in your builds.
70 # Enable Microsoft proprietary Callback Control Protocol
73 # Enable EAP SRP-SHA1 authentication (requires libsrp)
78 INCLUDE_DIRS= -I../include
80 COMPILE_FLAGS= -DHAVE_PATHS_H -DIPX_CHANGE -DHAVE_MMAP
82 CFLAGS= $(COPTS) $(COMPILE_FLAGS) $(INCLUDE_DIRS) '-DDESTDIR="@DESTDIR@"'
87 PPPDOBJS += md4.o chap_ms.o
88 HEADERS += md4.h chap_ms.h
90 CFLAGS += -DMSLANMAN=1
99 CFLAGS += -DUSE_SRP -DOPENSSL -I/usr/local/ssl/include
100 LIBS += -lsrp -L/usr/local/ssl/lib -lcrypto
102 EXTRAINSTALL = $(INSTALL) -s -c -m 555 srp-entry $(BINDIR)/srp-entry
103 MANPAGES += srp-entry.8
104 EXTRACLEAN += srp-entry.o
107 # OpenSSL has an integrated version of SHA-1, and its implementation
108 # is incompatible with this local SHA-1 implementation. We must use
109 # one or the other, not both.
116 CFLAGS += -DHAS_SHADOW
117 #LIBS += -lshadow $(LIBS)
120 ifneq ($(wildcard /usr/include/crypt.h),)
121 CFLAGS += -DHAVE_CRYPT_H=1
127 LIBS += -ldes $(LIBS)
129 CFLAGS += -DUSE_CRYPT=1
131 PPPDOBJS += pppcrypt.o
132 HEADERS += pppcrypt.h
135 # For "Pluggable Authentication Modules", see ftp.redhat.com:/pub/pam/.
143 # Multilink implies the use of TDB
146 CFLAGS += -DHAVE_MULTILINK
147 PPPDSRCS += multilink.c
148 PPPDOBJS += multilink.o
153 CFLAGS += -DUSE_TDB=1
154 PPPDSRCS += tdb.c spinlock.c
155 PPPDOBJS += tdb.o spinlock.o
156 HEADERS += tdb.h spinlock.h
159 # Lock library binary for Linux is included in 'linux' subdirectory.
162 CFLAGS += -DLOCKLIB=1
172 ifneq ($(wildcard /usr/include/pcap-bpf.h),)
174 CFLAGS += -DPPP_FILTER
179 PPPDSRCS += ipv6cp.c eui64.c
180 HEADERS += ipv6cp.h eui64.h
181 PPPDOBJS += ipv6cp.o eui64.o
188 CFLAGS += -DCBCP_SUPPORT
193 CFLAGS += -DMAXOCTETS
201 mkdir -p $(BINDIR) $(MANDIR)
203 $(INSTALL) -s -c -m 555 pppd $(BINDIR)/pppd
204 if chgrp pppusers $(BINDIR)/pppd 2>/dev/null; then \
205 chmod o-rx,u+s $(BINDIR)/pppd; fi
206 $(INSTALL) -c -m 444 pppd.8 $(MANDIR)
209 $(CC) $(CFLAGS) $(LDFLAGS) -o pppd $(PPPDOBJS) $(LIBS)
211 srp-entry: srp-entry.c
212 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ srp-entry.c $(LIBS)
215 mkdir -p $(INCDIR)/pppd
216 $(INSTALL) -c -m 644 $(HEADERS) $(INCDIR)/pppd
219 rm -f $(PPPDOBJS) $(EXTRACLEAN) $(TARGETS) *~ #* core
222 $(CPP) -M $(CFLAGS) $(PPPDSRCS) >.depend