From 58912f68c2489bcee787599837447e0d64dfd61a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Wed, 24 May 2017 21:03:56 +0200 Subject: New upstream version 1.0.27 --- Makefile.am | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am index a638eec..ae02ee3 100644 --- a/Makefile.am +++ b/Makefile.am @@ -12,20 +12,20 @@ dist_doc_DATA = AUTHORS ChangeLog COPYING LICENSE NEWS PROBLEMS PROJECTS \ README.hp-ux README.linux README.netbsd README.openbsd README.os2 \ README.solaris README.unixware2 README.unixware7 README.windows \ README.zeta -EXTRA_DIST = ChangeLog-1.0.0 ChangeLog-1.0.1 ChangeLog-1.0.2 \ - ChangeLog-1.0.3 ChangeLog-1.0.4 ChangeLog-1.0.5 ChangeLog-1.0.6 \ - ChangeLog-1.0.7 ChangeLog-1.0.8 ChangeLog-1.0.9 ChangeLog-1.0.10 \ - ChangeLog-1.0.12 ChangeLog-1.0.13 ChangeLog-1.0.14 ChangeLog-1.0.15 \ - ChangeLog-1.0.16 ChangeLog-1.0.17 ChangeLog-1.0.18 ChangeLog-1.0.19 \ - ChangeLog-1.0.20 ChangeLog-1.0.21 ChangeLog-1.0.22 ChangeLog-1.0.23 \ - $(PACKAGE).lsm +EXTRA_DIST = $(PACKAGE).lsm # -# Keep the .cvsignore files sorted, and use this target to do it. +# Keep the .gitignore files sorted, and use this target to do it. +# Note that git's negated ignore patterns introduce order dependency +# and should therefor be sorted with much more care than we do here. +# Until that has been taken care of, such files are best left alone. # PERL=perl -sort-cvsignore: - for f in `find . -name .cvsignore`; do \ +sort-gitignore: + for f in `find . -name .gitignore`; do \ + if test -n "`sed -n '/^\!/p' $$f`"; then \ + echo "$$f: skipping file with negated pattern" >&2; \ + fi; \ $(PERL) -e 'print sort <>;' < $$f > $$f.tmptmp; \ mv $$f.tmptmp $$f; \ done @@ -92,3 +92,5 @@ clean-local: distclean-local: rm -f include/_stdint.h rm -f include/byteorder.h + +ACLOCAL_AMFLAGS = -I m4 -- cgit v1.2.3 From 1687222e1b9e74c89cafbb5910e72d8ec7bfd40f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Wed, 31 Jul 2019 16:59:49 +0200 Subject: New upstream version 1.0.28 --- Makefile.am | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am index ae02ee3..54d0f27 100644 --- a/Makefile.am +++ b/Makefile.am @@ -12,7 +12,9 @@ dist_doc_DATA = AUTHORS ChangeLog COPYING LICENSE NEWS PROBLEMS PROJECTS \ README.hp-ux README.linux README.netbsd README.openbsd README.os2 \ README.solaris README.unixware2 README.unixware7 README.windows \ README.zeta -EXTRA_DIST = $(PACKAGE).lsm + +EXTRA_DIST = .editorconfig +EXTRA_DIST += po/README # # Keep the .gitignore files sorted, and use this target to do it. @@ -68,24 +70,13 @@ libcheck: installcheck-local: cd testsuite && $(MAKE) test.local -$(distdir).lsm: dist $(PACKAGE).lsm - ( cat $(PACKAGE).lsm | \ - sed -e "s|_DATE_|`date +%d%b%y`|g" |\ - sed -e "s|_VERSION_|$(VERSION)|g" | \ - sed -e "s|_T_S_|`find $(distdir).tar.gz -printf "%4k"`|g" |\ - sed -e "s|_L_S_|`find $(PACKAGE).lsm -printf "%4k"`|g" >\ - $(distdir).lsm \ - ) -lsm: $(distdir).lsm - md5: dist md5sum $(distdir).tar.gz > $(distdir).tar.gz.md5 -sane-backends: lsm md5 +sane-backends: md5 # Clean files created by custom targets in this file. clean-local: - rm -f sane-backends-*.lsm rm -f $(distdir).tar.gz.md5 # Clean files created by configure @@ -94,3 +85,6 @@ distclean-local: rm -f include/byteorder.h ACLOCAL_AMFLAGS = -I m4 + +# Make potential issues stick out when running `make distcheck`. +DISTCHECK_CONFIGURE_FLAGS = --enable-silent-rules -- cgit v1.2.3