summaryrefslogtreecommitdiff
path: root/doc/cdoc/Makefile
diff options
context:
space:
mode:
authorMike Taves <mwtoews@gmail.com>2020-01-28 09:57:33 +1300
committerMike Taves <mwtoews@gmail.com>2020-02-14 15:09:13 +1300
commitf239896fdcc580a9e36d38bbd85e37c829bcd336 (patch)
treed30b76fdda33c9d486243767854d578032425686 /doc/cdoc/Makefile
parentaf0dfce126a1d83cc33b8da9d91bce664f5d5297 (diff)
downloadnumpy-f239896fdcc580a9e36d38bbd85e37c829bcd336.tar.gz
MAINT: reduce Doxyfile and modernize numpyfilter.py
* Doxyfile refreshed using "doxygen -u", then remove comments and default arguments; see http://www.doxygen.nl/manual/config.html * Added "clean" target to Makefile to clear build and cache * Update numpyfilter.py to work, and replace optparse with argparse
Diffstat (limited to 'doc/cdoc/Makefile')
-rw-r--r--doc/cdoc/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/cdoc/Makefile b/doc/cdoc/Makefile
index bc6225ec8..8b9deada8 100644
--- a/doc/cdoc/Makefile
+++ b/doc/cdoc/Makefile
@@ -3,5 +3,8 @@ all: build
build:
doxygen
-.PHONY: all build
+clean:
+ rm -rf build
+
+.PHONY: all build clean