diff --git a/Makefile.am b/Makefile.am index 72dd791f..248563df 100644 --- a/Makefile.am +++ b/Makefile.am @@ -4,5 +4,9 @@ SUBDIRS = . aclocal docs etc src EXTRA_DIST = CodingStyle bootstrap +MAINTAINERCLEANFILES = Makefile.in aclocal.m4 acinclude.m4 \ + config.guess config.h.in config.sub configure \ + install-sh ltmain.sh missing mkinstalldirs ylwrap + # require automake 1.5 AUTOMAKE_OPTIONS = 1.5 diff --git a/aclocal/Makefile.am b/aclocal/Makefile.am index de46f067..0a963cce 100644 --- a/aclocal/Makefile.am +++ b/aclocal/Makefile.am @@ -1,3 +1,5 @@ # Process this file with automake to create Makefile.in +MAINTAINERCLEANFILES = Makefile.in + EXTRA_DIST = libtool.m4 acx_pthread.m4 diff --git a/docs/Makefile.am b/docs/Makefile.am index c8782e18..4e20d962 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am @@ -1,5 +1,7 @@ # Process this file with automake to create Makefile.in +MAINTAINERCLEANFILES = Makefile.in + man_MANS = pkcs15-crypt.1 pkcs15-init.1 \ pkcs15-profile.5 \ pkcs15.7 diff --git a/etc/Makefile.am b/etc/Makefile.am index 3d05f116..2b39b4c9 100644 --- a/etc/Makefile.am +++ b/etc/Makefile.am @@ -1,4 +1,6 @@ # Process this file with automake to create Makefile.in +MAINTAINERCLEANFILES = Makefile.in + EXTRA_DIST = opensc.conf.example scldap.conf.example pkgdata_DATA = opensc.conf.example scldap.conf.example diff --git a/src/Makefile.am b/src/Makefile.am index e71ce770..e6b3d5e1 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,4 +1,6 @@ # Process this file with automake to create Makefile.in +MAINTAINERCLEANFILES = Makefile.in + # Order IS important SUBDIRS = common scconf scldap scrandom libopensc tests tools openssh scam pam sia pkcs11 diff --git a/src/common/Makefile.am b/src/common/Makefile.am index 6be0ed7e..a3a269e4 100644 --- a/src/common/Makefile.am +++ b/src/common/Makefile.am @@ -1,3 +1,5 @@ # Process this file with automake to create Makefile.in +MAINTAINERCLEANFILES = Makefile.in + EXTRA_DIST = getopt.c getopt.h getopt1.c diff --git a/src/libopensc/Makefile.am b/src/libopensc/Makefile.am index 53cba077..fc5a8d4a 100644 --- a/src/libopensc/Makefile.am +++ b/src/libopensc/Makefile.am @@ -1,5 +1,7 @@ ## Makefile.am -- Process this file with automake to produce Makefile.in +MAINTAINERCLEANFILES = Makefile.in + EXTRA_DIST = opensc-config.in if HAVE_SSL @@ -24,6 +26,7 @@ libopensc_la_SOURCES = sc.c ctx.c module.c asn1.c log.c base64.c \ pkcs15-cache.c $(PCSC_SRC) reader-ctapi.c \ card-setcos.c card-miocos.c card-flex.c card-gpk.c \ card-tcos.c card-emv.c card-default.c + libopensc_la_LDFLAGS = -version-info 0:6:0 libopensc_la_LIBADD = @LIBDL@ $(PCSC_LIB) $(SSL_LIB) $(LIBSCCONF) diff --git a/src/openssh/Makefile.am b/src/openssh/Makefile.am index 57509f58..6a509155 100644 --- a/src/openssh/Makefile.am +++ b/src/openssh/Makefile.am @@ -1,5 +1,7 @@ # Process this file with automake to create Makefile.in +MAINTAINERCLEANFILES = Makefile.in + INCLUDES = @CFLAGS_OPENSC@ LDFLAGS = @LDFLAGS@ @LIBCRYPTO@ @LIBOPENSC@ diff --git a/src/pam/Makefile.am b/src/pam/Makefile.am index 25d307a5..e8c8b0bb 100644 --- a/src/pam/Makefile.am +++ b/src/pam/Makefile.am @@ -1,5 +1,7 @@ # Process this file with automake to create Makefile.in +MAINTAINERCLEANFILES = Makefile.in + libdir = ${prefix}/lib/security INCLUDES = -I../scam diff --git a/src/pkcs11/Makefile.am b/src/pkcs11/Makefile.am index c799fec5..6fbe3ce7 100644 --- a/src/pkcs11/Makefile.am +++ b/src/pkcs11/Makefile.am @@ -1,5 +1,7 @@ # Process this file with automake to create Makefile.in +MAINTAINERCLEANFILES = Makefile.in + SUBDIRS = . rsaref libdir = ${prefix}/lib/pkcs11 diff --git a/src/pkcs11/rsaref/Makefile.am b/src/pkcs11/rsaref/Makefile.am index 7b136eeb..6e438ea2 100644 --- a/src/pkcs11/rsaref/Makefile.am +++ b/src/pkcs11/rsaref/Makefile.am @@ -1,3 +1,5 @@ # Process this file with automake to create Makefile.in +MAINTAINERCLEANFILES = Makefile.in + EXTRA_DIST = pkcs11.h pkcs11f.h pkcs11t.h unix.h diff --git a/src/scam/Makefile.am b/src/scam/Makefile.am index 4b9115e7..76c9f447 100644 --- a/src/scam/Makefile.am +++ b/src/scam/Makefile.am @@ -1,5 +1,7 @@ # Process this file with automake to create Makefile.in +MAINTAINERCLEANFILES = Makefile.in + INCLUDES = @CFLAGS_PCSC@ @CFLAGS_OPENSC@ -I../scrandom -I../scldap if HAVE_PAM diff --git a/src/scconf/Makefile.am b/src/scconf/Makefile.am index f26e4d6f..d2f705b8 100644 --- a/src/scconf/Makefile.am +++ b/src/scconf/Makefile.am @@ -1,5 +1,7 @@ # Process this file with automake to create Makefile.in +MAINTAINERCLEANFILES = Makefile.in lex-parse.c + include_HEADERS = scconf.h noinst_HEADERS = internal.h diff --git a/src/scldap/Makefile.am b/src/scldap/Makefile.am index 7e8b7e6b..7a0d4aa3 100644 --- a/src/scldap/Makefile.am +++ b/src/scldap/Makefile.am @@ -1,5 +1,7 @@ # Process this file with automake to create Makefile.in +MAINTAINERCLEANFILES = Makefile.in + include_HEADERS = scldap.h if HAVE_LDAP diff --git a/src/scrandom/Makefile.am b/src/scrandom/Makefile.am index e6625a8b..df7a2a11 100644 --- a/src/scrandom/Makefile.am +++ b/src/scrandom/Makefile.am @@ -1,5 +1,7 @@ # Process this file with automake to create Makefile.in +MAINTAINERCLEANFILES = Makefile.in + include_HEADERS = scrandom.h if HAVE_SSL diff --git a/src/sia/Makefile.am b/src/sia/Makefile.am index 9f8e9f60..a32c14ac 100644 --- a/src/sia/Makefile.am +++ b/src/sia/Makefile.am @@ -1,5 +1,7 @@ # Process this file with automake to create Makefile.in +MAINTAINERCLEANFILES = Makefile.in + libdir = ${prefix}/lib/security INCLUDES = -I../scam diff --git a/src/signer/Makefile.am b/src/signer/Makefile.am index a6bfab6c..bda00651 100644 --- a/src/signer/Makefile.am +++ b/src/signer/Makefile.am @@ -1,5 +1,7 @@ ## Makefile.am -- Process this file with automake to produce Makefile.in +MAINTAINERCLEANFILES = Makefile.in + SUBDIRS = . npinclude EXTRA_DIST = testprog.c diff --git a/src/signer/npinclude/Makefile.am b/src/signer/npinclude/Makefile.am index 4a563fd9..ed6c44ab 100644 --- a/src/signer/npinclude/Makefile.am +++ b/src/signer/npinclude/Makefile.am @@ -1,3 +1,5 @@ ## Makefile.am -- Process this file with automake to produce Makefile.in +MAINTAINERCLEANFILES = Makefile.in + EXTRA_DIST = jri.h jri_md.h jritypes.h npapi.h npunix.c npupp.h diff --git a/src/tests/Makefile.am b/src/tests/Makefile.am index c2b178e1..dbc0b8ac 100644 --- a/src/tests/Makefile.am +++ b/src/tests/Makefile.am @@ -1,5 +1,7 @@ # Process this file with automake to create Makefile.in +MAINTAINERCLEANFILES = Makefile.in + INCLUDES = @CFLAGS_OPENSC@ LDFLAGS = @LDFLAGS@ @LIBOPENSC@ diff --git a/src/tools/Makefile.am b/src/tools/Makefile.am index 7c49aa18..bf261533 100644 --- a/src/tools/Makefile.am +++ b/src/tools/Makefile.am @@ -1,5 +1,7 @@ # Process this file with automake to create Makefile.in +MAINTAINERCLEANFILES = Makefile.in + INCLUDES = @CFLAGS_OPENSC@ LDFLAGS = @LDFLAGS@ @LIBOPENSC@