mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 00:10:59 +00:00
2b9cf569da
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
14 lines
240 B
Makefile
14 lines
240 B
Makefile
include $(top_srcdir)/config/common.am
|
|
|
|
EXTRA_DIST = Doxyfile.in
|
|
|
|
OUTPUT_DIR = .
|
|
|
|
doxydoc: Doxyfile
|
|
cd $(OUTPUT_DIR) ; doxygen ./Doxyfile
|
|
|
|
distclean-local:
|
|
rm -rf $(OUTPUT_DIR)/html $(OUTPUT_DIR)/latex $(OUTPUT_DIR)/main
|
|
|
|
.PHONY: doxydoc
|