Displaying 5 results from an estimated 5 matches for "installdox".
2012 Sep 26
1
[PATCH] remove GNUism from install doc command
...1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/doc/Makefile.am b/doc/Makefile.am
index ba6f64c..cf5908a 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -22,7 +22,8 @@ doxygen-build.stamp: Doxyfile $(DOCINPUTS)
install-data-local:
for f in `find html -type f \! -name "installdox"`; do \
- $(INSTALL_DATA) -D $$f $(DESTDIR)$(docdir)/$$f; \
+ $(INSTALL) -d $(DESTDIR)$(docdir)/html/search; \
+ $(INSTALL_DATA) $$f $(DESTDIR)$(docdir)/$$f; \
done
$(INSTALL) -d $(DESTDIR)$(mandir)/man3
--
1.7.10.2 (Apple Git-33)
--------------000802070708000800090806--
2012 Sep 29
2
[libopusfile PATCH] build: implement autotools build system for libopusfile. (v4)
...tation
+
+if HAVE_DOXYGEN
+
+EXTRA_DIST = doc/Doxyfile.in
+
+all-local: doc/doxygen-build.stamp
+
+doc/doxygen-build.stamp: doc/Doxyfile $(top_srcdir)/include/*.h
+ cd doc && doxygen
+ touch "$@"
+
+install-data-local:
+ cd doc && for f in `find html -type f \! -name "installdox"` ; do \
+ $(INSTALL_DATA) -D $$f $(DESTDIR)$(docdir)/$$f ; \
+ done
+
+clean-local:
+ $(RM) -r doc/html
+ $(RM) -r doc/latex
+ $(RM) doc/doxygen-build.stamp
+
+uninstall-local:
+ $(RM) -r $(DESTDIR)$(docdir)/html
+
+endif
diff --git a/autogen.sh b/autogen.sh
new file mode 100755
index 00000...
2013 Jan 09
4
[PATCH] doc: fix out-of-tree build
It seems the mail you are referring to never made the list: it's not in
the archives and not in my mailbox. Take a look here:
http://lists.xiph.org/pipermail/flac-dev/2012-December/thread.html It's
probably still waiting for moderation.
On 07-01-13 17:07, Olivier BLIN wrote:
> On 29/12/2012 00:06, Olivier Blin wrote:
>> When building outside of the source tree, the Doxyfile
2012 Dec 28
0
[PATCH] doc: fix out-of-tree build
...s as follows:
-# TAGFILES = file1 file2 ...
-# Adding location for the tag files is done as follows:
-# TAGFILES = file1=loc1 "file2 = loc2" ...
-# where "loc1" and "loc2" can be relative or absolute paths or
-# URLs. If a location is present for each tag, the installdox tool
-# does not have to be run to correct the links.
-# Note that each tag file must have a unique name
-# (where the name does NOT include the path)
-# If a tag file is not located in the directory in which doxygen
-# is run, you must also specify the path to the tagfile here.
-
-TAGFILES...
2012 Dec 28
3
[PATCH] doc: fix out-of-tree build
...s as follows:
-# TAGFILES = file1 file2 ...
-# Adding location for the tag files is done as follows:
-# TAGFILES = file1=loc1 "file2 = loc2" ...
-# where "loc1" and "loc2" can be relative or absolute paths or
-# URLs. If a location is present for each tag, the installdox tool
-# does not have to be run to correct the links.
-# Note that each tag file must have a unique name
-# (where the name does NOT include the path)
-# If a tag file is not located in the directory in which doxygen
-# is run, you must also specify the path to the tagfile here.
-
-TAGFILES...