mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 11:23:45 +00:00
14 lines
255 B
Makefile
14 lines
255 B
Makefile
include $(top_srcdir)/config/common.am
|
|
|
|
EXTRA_DIST = Doxyfile.in CMakeLists.txt
|
|
|
|
OUTPUT_DIR = .
|
|
|
|
doxydoc: Doxyfile
|
|
cd $(OUTPUT_DIR) ; doxygen ./Doxyfile
|
|
|
|
distclean-local:
|
|
rm -rf $(OUTPUT_DIR)/html $(OUTPUT_DIR)/latex $(OUTPUT_DIR)/main
|
|
|
|
.PHONY: doxydoc
|