aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index d4abe2f..37c0c40 100644
--- a/Makefile
+++ b/Makefile
@@ -68,8 +68,8 @@ install: lib
@printf " INSTALL scripts\n"
$(Q)$(INSTALL) -m 0644 scripts/* $(SHAREDIR)
-doxy:
- doxygen Doxyfile
+doc:
+ $(Q)$(MAKE) -C doc doc
clean:
$(Q)for i in $(addprefix lib/,$(TARGETS)) \
@@ -80,7 +80,7 @@ clean:
fi; \
done
@printf " CLEAN doxygen\n"
- $(Q)rm -rf doxygen
+ $(Q)$(MAKE) -C doc clean
-.PHONY: build lib examples install doxy clean
+.PHONY: build lib examples install doc clean