aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1c70f7f..4e41096 100644
--- a/Makefile
+++ b/Makefile
@@ -67,6 +67,9 @@ install: lib
@printf " INSTALL scripts\n"
$(Q)$(INSTALL) -m 0644 scripts/* $(SHAREDIR)
+doxy:
+ doxygen Doxyfile
+
clean:
$(Q)for i in $(addprefix lib/,$(TARGETS)) \
$(addsuffix /*/*,$(addprefix examples/,$(TARGETS))); do \
@@ -75,6 +78,8 @@ clean:
$(MAKE) -C $$i clean || exit $?; \
fi; \
done
+ @printf " CLEAN doxygen\n"
+ $(Q)rm -rf doxygen
-.PHONY: build lib examples install clean
+.PHONY: build lib examples install doxy clean