Output doxygen stuff in build directory by default. It is however possible

to change the output dorectory by using
make OUTPUT_DIR=/my/path doxydoc

Please test.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@29011 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2009-04-02 09:02:50 +00:00
parent c36e53c0c0
commit 2b9cf569da
2 changed files with 5 additions and 3 deletions

View File

@ -30,7 +30,7 @@ PROJECT_NUMBER = @VERSION@
# If a relative path is entered, it will be relative to the location
# where doxygen was started. If left blank the current directory will be used.
OUTPUT_DIRECTORY = @srcdir@
OUTPUT_DIRECTORY =
# The OUTPUT_LANGUAGE tag is used to specify the language in which all
# documentation generated by doxygen is written. Doxygen will use this

View File

@ -2,10 +2,12 @@ include $(top_srcdir)/config/common.am
EXTRA_DIST = Doxyfile.in
OUTPUT_DIR = .
doxydoc: Doxyfile
doxygen ./Doxyfile
cd $(OUTPUT_DIR) ; doxygen ./Doxyfile
distclean-local:
rm -rf $(srcdir)/html $(srcdir)/latex $(srcdir)/main
rm -rf $(OUTPUT_DIR)/html $(OUTPUT_DIR)/latex $(OUTPUT_DIR)/main
.PHONY: doxydoc