diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-01-21 01:44:33 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-01-21 01:44:33 +0000 |
commit | ed8842bea5d4452e5aa011804353f7c04d13f48e (patch) | |
tree | a4540e48bb7a4a752a33783a0ecfe2d235e780e8 /doc/faq | |
parent | 9a085abcbd7842aaede9e5aba9587cb9d7f38005 (diff) | |
download | xine-lib-ed8842bea5d4452e5aa011804353f7c04d13f48e.tar.gz xine-lib-ed8842bea5d4452e5aa011804353f7c04d13f48e.tar.bz2 |
Use docdir and htmldir as basedir to install the documentation into; these are defined by default by autoconf 2.61, so I've added code to define them when they are missing.
CVS patchset: 8536
CVS date: 2007/01/21 01:44:33
Diffstat (limited to 'doc/faq')
-rw-r--r-- | doc/faq/Makefile.am | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/doc/faq/Makefile.am b/doc/faq/Makefile.am index 3dcbe44e5..6090fd272 100644 --- a/doc/faq/Makefile.am +++ b/doc/faq/Makefile.am @@ -1,12 +1,11 @@ include $(top_srcdir)/misc/Makefile.common -docs_DATA = faq.html faq.txt +doc_DATA = faq.txt +html_DATA = faq.html -EXTRA_DIST = README faq.sgml $(docs_DATA) +EXTRA_DIST = README faq.sgml $(doc_DATA) $(html_DATA) -docsdir = $(prefix)/share/doc/xine/faq - -docs: $(docs_DATA) +docs: $(doc_DATA) $(html_DATA) distclean-local: clean-docs @@ -16,7 +15,7 @@ docs-prepare: $(srcdir)/faq.sgml fi clean-docs: - rm -f $(docs_DATA) + rm -f $(doc_DATA) $(html_DATA) test "x$(srcdir)" = x. || rm -f faq.sgml dist-hook: |