diff options
author | Mike Taves <mwtoews@gmail.com> | 2020-01-28 09:57:33 +1300 |
---|---|---|
committer | Mike Taves <mwtoews@gmail.com> | 2020-02-14 15:09:13 +1300 |
commit | f239896fdcc580a9e36d38bbd85e37c829bcd336 (patch) | |
tree | d30b76fdda33c9d486243767854d578032425686 /doc/cdoc/Makefile | |
parent | af0dfce126a1d83cc33b8da9d91bce664f5d5297 (diff) | |
download | numpy-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/Makefile | 5 |
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 |