diff options
| author | Matthias Andree <matthias.andree@gmx.de> | 2022-07-16 13:33:04 +0200 | 
|---|---|---|
| committer | Matthias Andree <matthias.andree@gmx.de> | 2022-07-16 13:49:31 +0200 | 
| commit | 63da695fe3b2ff468b8a8283e89e310046e4dabf (patch) | |
| tree | 195e1fc2495c7ab24dc68906bd25dcd17a418758 /Makefile.am | |
| parent | b08eba1a5c5dc7781bca0d9e2570eebe955bb2bd (diff) | |
| download | fetchmail-63da695fe3b2ff468b8a8283e89e310046e4dabf.tar.gz fetchmail-63da695fe3b2ff468b8a8283e89e310046e4dabf.tar.bz2 fetchmail-63da695fe3b2ff468b8a8283e89e310046e4dabf.zip  | |
Makefile.am: switch to .DELETE_ON_ERROR.
Diffstat (limited to 'Makefile.am')
| -rw-r--r-- | Makefile.am | 20 | 
1 files changed, 11 insertions, 9 deletions
diff --git a/Makefile.am b/Makefile.am index 6a513636..7085cc17 100644 --- a/Makefile.am +++ b/Makefile.am @@ -3,6 +3,9 @@  SUBDIRS=		. po  AUTOMAKE_OPTIONS=	1.12 foreign no-dist-gzip dist-xz subdir-objects dist-lzip +.DELETE_ON_ERROR:	# yes please +.PRECIOUS:		test-suite.log +  AM_CPPFLAGS=		-I$(srcdir)/libesmtp  ACLOCAL_AMFLAGS=	-I m4 -I m4-local  AM_YFLAGS=		-t -d @@ -202,29 +205,28 @@ EXTRA_DIST=	$(DISTDOCS) $(distdirs) \  		Doxyfile  fetchmailconf: -	( echo '#! /bin/sh' && echo 'exec @PYTHON@ @pythondir@/fetchmailconf.py "$$@"' ) >$@ && chmod +x $@ || { rm -f $@ ; exit 1; } +	( echo '#! /bin/sh' && echo 'exec @PYTHON@ @pythondir@/fetchmailconf.py "$$@"' ) >$@ && chmod +x $@  FAQ: fetchmail-FAQ.html $(srcdir)/dist-tools/html2txt -	AWK=$(AWK) $(SHELL) $(srcdir)/dist-tools/html2txt $(srcdir)/fetchmail-FAQ.html >$@ || { rm -f $@ ; exit 1 ; } +	AWK=$(AWK) $(SHELL) $(srcdir)/dist-tools/html2txt $(srcdir)/fetchmail-FAQ.html >$@  fetchmail-FAQ.pdf: fetchmail-FAQ.html fetchmail-FAQ.book bighand.png  	$(AWK) '/^[ \t]*<h1/ {sec++; } {if (sec < 2 || sec > 3) print $0;}' <$(srcdir)/fetchmail-FAQ.html >fetchmail-FAQ-print.html -	htmldoc --logoimage $(srcdir)/bighand.png --batch $(srcdir)/fetchmail-FAQ.book || { rm -f $@ ; exit 1 ; } +	htmldoc --logoimage $(srcdir)/bighand.png --batch $(srcdir)/fetchmail-FAQ.book  	rm -f fetchmail-FAQ-print.html  FEATURES: fetchmail-features.html $(srcdir)/dist-tools/html2txt -	AWK=$(AWK) $(SHELL) $(srcdir)/dist-tools/html2txt $(srcdir)/fetchmail-features.html >$@ || { rm -f $@ ; exit 1 ; } +	AWK=$(AWK) $(SHELL) $(srcdir)/dist-tools/html2txt $(srcdir)/fetchmail-features.html >$@  NOTES: design-notes.html esrs-design-notes.html $(srcdir)/dist-tools/html2txt  	   echo "This file contains two articles reformatted from HTML." > $@ \  	&& echo "------------------------------------------------------" >> $@ \  	&& echo "" >> $@ \  	&& AWK=$(AWK) $(SHELL) $(srcdir)/dist-tools/html2txt $(srcdir)/design-notes.html >>$@ \ -	&& AWK=$(AWK) $(SHELL) $(srcdir)/dist-tools/html2txt $(srcdir)/esrs-design-notes.html >>$@ \ -	|| { rm -f $@ ; exit 1 ; } +	&& AWK=$(AWK) $(SHELL) $(srcdir)/dist-tools/html2txt $(srcdir)/esrs-design-notes.html >>$@  TODO: todo.html $(srcdir)/dist-tools/html2txt -	AWK=$(AWK) $(SHELL) $(srcdir)/dist-tools/html2txt $(srcdir)/todo.html >$@ || { rm -f $@ ; exit 1 ; } +	AWK=$(AWK) $(SHELL) $(srcdir)/dist-tools/html2txt $(srcdir)/todo.html >$@  fetchmail-man.html: fetchmail.man $(srcdir)/dist-tools/manServer.pl  	env - "PATH=$$PATH" perl -T $(srcdir)/dist-tools/manServer.pl $(srcdir)/fetchmail.man >$@ \ @@ -261,9 +263,9 @@ git-check:  	cd $(PACKAGE)-$(VERSION)-export && chmod -R u+rwX . && autoreconf -i -f -s -v \  	&& mkdir _build && cd _build && ../configure && $(MAKE) distcheck -SUFFIXES = .html .txt +SUFFIXES = .html .txt .rst  .txt.html: -	asciidoc --unsafe -a toc -a data-uri -o $@ $< || { rm -f $@ ; exit 1 ; } +	asciidoc --unsafe -a toc -a data-uri -o $@ $<  # default to some non-default options when using "make distcheck"  AM_DISTCHECK_CONFIGURE_FLAGS=--with-ssl  | 
