]> git.ozlabs.org Git - ppp.git/blob - pppd/Makefile.linux
pppd man page: Update header to refer to pppd 2.5.x
[ppp.git] / pppd / Makefile.linux
1 #
2 # pppd makefile for Linux
3 # $Id: Makefile.linux,v 1.70 2007/06/19 02:08:34 carlsonj Exp $
4 #
5
6 # Default installation locations
7 DESTDIR = $(INSTROOT)@DESTDIR@
8 BINDIR = $(DESTDIR)/sbin
9 MANDIR = $(DESTDIR)/share/man/man8
10 INCDIR = $(DESTDIR)/include
11
12 TARGETS = pppd
13
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
17
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 \
20         upap.h eap.h
21
22 MANPAGES = pppd.8
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
26
27 #
28 # include dependencies if present
29 ifeq (.depend,$(wildcard .depend))
30 include .depend
31 endif
32
33 # CC = gcc
34 #
35 COPTS = -O2 -pipe -Wall -g
36 LIBS =
37
38 # Uncomment the next line to include support for Microsoft's
39 # MS-CHAP authentication protocol.  Also, edit plugins/radius/Makefile.linux.
40 CHAPMS=y
41 #USE_CRYPT=y
42 # Don't use MSLANMAN unless you really know what you're doing.
43 #MSLANMAN=y
44 # Uncomment the next line to include support for MPPE.  CHAPMS (above) must
45 # also be enabled.  Also, edit plugins/radius/Makefile.linux.
46 MPPE=y
47
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.
51 FILTER=y
52
53 # Uncomment the next line to enable multilink PPP (enabled by default)
54 # Linux distributions: Please leave multilink ENABLED in your builds
55 # of pppd!
56 HAVE_MULTILINK=y
57
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.
61 USE_TDB=y
62
63 # Uncomment the next line to enable Type=notify services in systemd
64 # If enabled, and the user sets the up_sdnotify option, then
65 # pppd will not detach and will notify systemd when up.
66 #SYSTEMD=y
67
68 HAS_SHADOW=y
69 #USE_PAM=y
70 HAVE_INET6=y
71
72 # Enable plugins
73 PLUGIN=y
74
75 # Enable Microsoft proprietary Callback Control Protocol
76 #CBCP=y
77
78 # Enable EAP SRP-SHA1 authentication (requires libsrp)
79 #USE_SRP=y
80
81 # Use libutil
82 USE_LIBUTIL=y
83
84 MAXOCTETS=y
85
86 INCLUDE_DIRS= -I../include
87
88 COMPILE_FLAGS= -DHAVE_PATHS_H -DIPX_CHANGE -DHAVE_MMAP
89
90 CFLAGS= $(COPTS) $(COMPILE_FLAGS) $(INCLUDE_DIRS) '-DDESTDIR="@DESTDIR@"'
91
92 ifdef CHAPMS
93 CFLAGS   += -DCHAPMS=1
94 NEEDDES=y
95 PPPDOBJS += md4.o chap_ms.o
96 HEADERS += md4.h chap_ms.h
97 ifdef MSLANMAN
98 CFLAGS   += -DMSLANMAN=1
99 endif
100 ifdef MPPE
101 CFLAGS   += -DMPPE=1
102 HEADERS  += mppe.h
103 endif
104 endif
105
106 # EAP SRP-SHA1
107 ifdef USE_SRP
108 CFLAGS  += -DUSE_SRP -DOPENSSL -I/usr/local/ssl/include
109 LIBS    += -lsrp -L/usr/local/ssl/lib -lcrypto
110 TARGETS += srp-entry
111 EXTRAINSTALL = $(INSTALL) -s -c -m 555 srp-entry $(BINDIR)/srp-entry
112 MANPAGES += srp-entry.8
113 EXTRACLEAN += srp-entry.o
114 NEEDDES=y
115 else
116 # OpenSSL has an integrated version of SHA-1, and its implementation
117 # is incompatible with this local SHA-1 implementation.  We must use
118 # one or the other, not both.
119 PPPDSRCS += sha1.c
120 HEADERS += sha1.h
121 PPPDOBJS += sha1.o
122 endif
123
124 ifdef HAS_SHADOW
125 CFLAGS   += -DHAS_SHADOW
126 #LIBS     += -lshadow $(LIBS)
127 endif
128
129 ifneq ($(wildcard $(shell $(CC) --print-sysroot)/usr/include/crypt.h),)
130 CFLAGS  += -DHAVE_CRYPT_H=1
131 LIBS    += -lcrypt
132 endif
133
134 ifdef USE_LIBUTIL
135 CFLAGS  += -DHAVE_LOGWTMP=1
136 LIBS    += -lutil
137 endif
138
139 ifdef NEEDDES
140 ifndef USE_CRYPT
141 CFLAGS   += -I$(shell $(CC) --print-sysroot)/usr/include/openssl
142 LIBS     += -lcrypto
143 else
144 CFLAGS   += -DUSE_CRYPT=1
145 endif
146 PPPDOBJS += pppcrypt.o
147 HEADERS += pppcrypt.h
148 endif
149
150 # For "Pluggable Authentication Modules", see ftp.redhat.com:/pub/pam/.
151 ifdef USE_PAM
152 CFLAGS   += -DUSE_PAM
153 LIBS     += -lpam -ldl
154 endif
155
156 # Multi-linnk
157 ifdef HAVE_MULTILINK
158         # Multilink implies the use of TDB
159         USE_TDB=y
160
161         CFLAGS += -DHAVE_MULTILINK
162         PPPDSRCS += multilink.c
163         PPPDOBJS += multilink.o
164 endif
165
166 # TDB
167 ifdef USE_TDB
168         CFLAGS += -DUSE_TDB=1
169         PPPDSRCS += tdb.c spinlock.c
170         PPPDOBJS += tdb.o spinlock.o
171         HEADERS += tdb.h spinlock.h
172 endif
173
174 # Lock library binary for Linux is included in 'linux' subdirectory.
175 ifdef LOCKLIB
176 LIBS     += -llock
177 CFLAGS   += -DLOCKLIB=1
178 endif
179
180 ifdef SYSTEMD
181 LIBS += -lsystemd
182 CFLAGS   += -DSYSTEMD=1
183 endif
184
185 ifdef PLUGIN
186 CFLAGS  += -DPLUGIN
187 LDFLAGS_PLUGIN  += -Wl,-E
188 LIBS    += -ldl
189 endif
190
191 ifdef FILTER
192 ifneq ($(wildcard /usr/include/pcap-bpf.h),)
193 LIBS    += -lpcap
194 CFLAGS  += -DPPP_FILTER
195 endif
196 endif
197
198 ifdef HAVE_INET6
199      PPPDSRCS += ipv6cp.c eui64.c
200      HEADERS  += ipv6cp.h eui64.h
201      PPPDOBJS += ipv6cp.o eui64.o
202      CFLAGS   += -DINET6=1
203 endif
204
205 ifdef CBCP
206      PPPDSRCS += cbcp.c
207      PPPDOBJS += cbcp.o
208      CFLAGS += -DCBCP_SUPPORT
209      HEADERS += cbcp.h
210 endif
211
212 ifdef MAXOCTETS
213      CFLAGS += -DMAXOCTETS
214 endif
215
216 INSTALL= install
217
218 all: $(TARGETS)
219
220 install: pppd
221         mkdir -p $(BINDIR) $(MANDIR)
222         $(EXTRAINSTALL)
223         $(INSTALL) -s -c -m 555 pppd $(BINDIR)/pppd
224         if chgrp pppusers $(BINDIR)/pppd 2>/dev/null; then \
225           chmod o-rx,u+s $(BINDIR)/pppd; fi
226         $(INSTALL) -c -m 444 pppd.8 $(MANDIR)
227
228 pppd: $(PPPDOBJS)
229         $(CC) $(CFLAGS) $(LDFLAGS) $(LDFLAGS_PLUGIN) -o pppd $(PPPDOBJS) $(LIBS)
230
231 srp-entry:      srp-entry.c
232         $(CC) $(CFLAGS) $(LDFLAGS) -o $@ srp-entry.c $(LIBS)
233
234 install-devel:
235         mkdir -p $(INCDIR)/pppd
236         $(INSTALL) -c -m 644 $(HEADERS) $(INCDIR)/pppd
237
238 clean:
239         rm -f $(PPPDOBJS) $(EXTRACLEAN) $(TARGETS) *~ #* core
240
241 depend:
242         $(CPP) -M $(CFLAGS) $(PPPDSRCS) >.depend