Makefile.am 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. #
  2. # __ __ _
  3. # ___\ \/ /_ __ __ _| |_
  4. # / _ \\ /| '_ \ / _` | __|
  5. # | __// \| |_) | (_| | |_
  6. # \___/_/\_\ .__/ \__,_|\__|
  7. # |_| XML parser
  8. #
  9. # Copyright (c) 2017-2024 Sebastian Pipping <[email protected]>
  10. # Copyright (c) 2017 Stephen Groat <[email protected]>
  11. # Copyright (c) 2017 Joe Orton <[email protected]>
  12. # Copyright (c) 2024 Tomas Korbar <[email protected]>
  13. # Licensed under the MIT license:
  14. #
  15. # Permission is hereby granted, free of charge, to any person obtaining
  16. # a copy of this software and associated documentation files (the
  17. # "Software"), to deal in the Software without restriction, including
  18. # without limitation the rights to use, copy, modify, merge, publish,
  19. # distribute, sublicense, and/or sell copies of the Software, and to permit
  20. # persons to whom the Software is furnished to do so, subject to the
  21. # following conditions:
  22. #
  23. # The above copyright notice and this permission notice shall be included
  24. # in all copies or substantial portions of the Software.
  25. #
  26. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  27. # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  28. # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
  29. # NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
  30. # DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
  31. # OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
  32. # USE OR OTHER DEALINGS IN THE SOFTWARE.
  33. .PHONY: dist-hook # not inside conditional to avoid automake warning
  34. if WITH_MANPAGE
  35. dist_man_MANS = xmlwf.1
  36. xmlwf.1: xmlwf.xml
  37. -rm -f $@
  38. test "x$(DOCBOOK_TO_MAN)" != x && $(DOCBOOK_TO_MAN) $<
  39. test -f $@ || mv XMLWF.1 $@
  40. endif
  41. if !WITH_DISTRIBUTABLE_MANPAGE
  42. dist-hook:
  43. @echo 'ERROR: Configure with --with-docbook for "make dist".' 1>&2
  44. @false
  45. endif
  46. if !WITH_PREBUILT_MANPAGE
  47. CLEANFILES = xmlwf.1
  48. endif
  49. EXTRA_DIST = \
  50. ok.min.css \
  51. reference.html \
  52. style.css \
  53. xmlwf.xml