mirror of
https://github.com/paulusmack/ppp.git
synced 2024-11-23 02:13:28 +08:00
b9e627e212
This is associated with the passprompt plugin, and like it, seems not to be very useful any more now that no-one uses dial-up. Also, its function seems somewhat peripheral to PPP. Signed-off-by: Paul Mackerras <paulus@ozlabs.org>
47 lines
964 B
Makefile
47 lines
964 B
Makefile
ACLOCAL_AMFLAGS="-Im4"
|
|
|
|
SUBDIRS = chat pppd pppstats pppdump
|
|
|
|
if PPP_WITH_PLUGINS
|
|
SUBDIRS += pppd/plugins
|
|
endif
|
|
|
|
DIST_SUBDIRS = $(SUBDIRS) include scripts
|
|
|
|
install-data-hook:
|
|
(cd $(DESTDIR)/$(sysconfdir)/$(PACKAGE) ; \
|
|
chmod 600 chap-secrets.example pap-secrets.example \
|
|
eaptls-server.example eaptls-client.example)
|
|
|
|
sampledir = $(sysconfdir)/$(PACKAGE)
|
|
sample_DATA = \
|
|
etc.ppp/options.example \
|
|
etc.ppp/chap-secrets.example \
|
|
etc.ppp/pap-secrets.example \
|
|
etc.ppp/eaptls-server.example \
|
|
etc.ppp/eaptls-client.example \
|
|
etc.ppp/openssl.cnf.example
|
|
|
|
EXTRA_README = \
|
|
Changes-2.3 \
|
|
FAQ \
|
|
README \
|
|
README.cbcp \
|
|
README.eap-srp \
|
|
README.eap-tls \
|
|
README.linux \
|
|
README.MPPE \
|
|
README.MSCHAP80 \
|
|
README.MSCHAP81 \
|
|
README.pppoe \
|
|
README.pppol2tp \
|
|
README.pwfd \
|
|
README.sol2 \
|
|
PLUGINS \
|
|
SETUP \
|
|
Submitting-patches.md
|
|
|
|
EXTRA_DIST= \
|
|
$(sample_DATA) \
|
|
$(EXTRA_README)
|