diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-06-02 20:07:46 +0200 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-06-02 20:07:46 +0200 |
commit | 8645fb2f7a6daab8e1bd7de179bdf862de22bbb5 (patch) | |
tree | 6bec9b0f6892e18863ab6d9b43e9943495593dc5 | |
parent | 4ac3580f6a163548f494b406a860d91dd6ce06c8 (diff) | |
download | xine-lib-8645fb2f7a6daab8e1bd7de179bdf862de22bbb5.tar.gz xine-lib-8645fb2f7a6daab8e1bd7de179bdf862de22bbb5.tar.bz2 |
Replace the distclean-local hook with a proper DISTCLEANFILES usage.
-rw-r--r-- | doc/faq/Makefile.am | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/doc/faq/Makefile.am b/doc/faq/Makefile.am index 198358d95..a43e6e97c 100644 --- a/doc/faq/Makefile.am +++ b/doc/faq/Makefile.am @@ -5,13 +5,9 @@ html_DATA = faq.html EXTRA_DIST = README faq.sgml $(doc_DATA) $(html_DATA) -docs: $(doc_DATA) $(html_DATA) - -distclean-local: clean-docs +DISTCLEANFILES = $(doc_DATA) $(html_DATA) -clean-docs: - rm -f $(doc_DATA) $(html_DATA) - test "x$(srcdir)" = x. || rm -f faq.sgml +docs: $(doc_DATA) $(html_DATA) dist-hook: @if test x"$(distcheck_lax)" = x ; then \ |