mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-21 17:51:03 +00:00
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:
parent
c36e53c0c0
commit
2b9cf569da
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user