lyx_mirror/sourcedoc/Makefile.am
Jean-Marc Lasgouttes 2b9cf569da 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
2009-04-02 09:02:50 +00:00

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