1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
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 \
Changes-2.4 \
FAQ \
LICENSE.BSD \
LICENSE.GPL-2 \
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 \
SECURITY.md \
SETUP \
Submitting-patches.md \
autogen.sh
EXTRA_DIST= \
$(sample_DATA) \
$(EXTRA_README) \
sample
|