diff options
author | 2025-03-12 17:23:33 +1100 | |
---|---|---|
committer | 2025-03-12 17:23:33 +1100 | |
commit | 288839a39514c5fa8d105655fa7c11bd6ca0de03 (patch) | |
tree | 63cddc1c8579091287a2821c24e2f0ab8ef3c874 /3rdparty/expat/doc/Makefile.am | |
parent | d69383bfb699daace0b565aa0ecdecdf39a119d1 (diff) |
3rdparty/expat: Updated to expat 2.6.4.
Diffstat (limited to '3rdparty/expat/doc/Makefile.am')
-rw-r--r-- | 3rdparty/expat/doc/Makefile.am | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/3rdparty/expat/doc/Makefile.am b/3rdparty/expat/doc/Makefile.am index e2f029837a4..3bea96e9aa6 100644 --- a/3rdparty/expat/doc/Makefile.am +++ b/3rdparty/expat/doc/Makefile.am @@ -6,7 +6,10 @@ # \___/_/\_\ .__/ \__,_|\__| # |_| XML parser # -# Copyright (c) 2017 Expat development team +# Copyright (c) 2017-2024 Sebastian Pipping <sebastian@pipping.org> +# Copyright (c) 2017 Stephen Groat <stephen@groat.us> +# Copyright (c) 2017 Joe Orton <jorton@redhat.com> +# Copyright (c) 2024 Tomas Korbar <tkorbar@redhat.com> # Licensed under the MIT license: # # Permission is hereby granted, free of charge, to any person obtaining @@ -30,30 +33,27 @@ .PHONY: dist-hook # not inside conditional to avoid automake warning -if WITH_DOCBOOK +if WITH_MANPAGE dist_man_MANS = xmlwf.1 xmlwf.1: xmlwf.xml -rm -f $@ - $(DOCBOOK_TO_MAN) $< + test "x$(DOCBOOK_TO_MAN)" != x && $(DOCBOOK_TO_MAN) $< test -f $@ || mv XMLWF.1 $@ -else +endif + +if !WITH_DISTRIBUTABLE_MANPAGE dist-hook: @echo 'ERROR: Configure with --with-docbook for "make dist".' 1>&2 @false endif -# https://www.gnu.org/software/automake/manual/automake.html#What-Gets-Cleaned -.PHONY: clean-local -clean-local: clean-local-check - -.PHONY: clean-local-check -clean-local-check: - $(RM) xmlwf.1 +if !WITH_PREBUILT_MANPAGE +CLEANFILES = xmlwf.1 +endif EXTRA_DIST = \ - expat.png \ + ok.min.css \ reference.html \ style.css \ - valid-xhtml10.png \ xmlwf.xml |