Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e079af commit d09e2a8Copy full SHA for d09e2a8
1 file changed
Makefile
@@ -2,6 +2,9 @@
2
# Copyright (C) 2003 <[email protected]>
3
# $Header$
4
# $Log$
5
+# Revision 1.2 2003/05/12 15:53:48 jdh2358
6
+# update matplotlib
7
+#
8
# Revision 1.1 2003/05/12 15:50:11 jdh2358
9
# adding Makefile, releases, docs
10
#
@@ -15,15 +18,14 @@ RELEASE = matplotlib-${VERSION}
15
18
16
19
clean:
17
20
python setup.py clean;
- rm -rf build dist;
21
find . \( -name "*~" -o -name "*.pyc" \) | xargs rm -f;
22
find examples -name "*.png" | xargs rm -f;
23
find matplotlib -name "*.png" | xargs rm -f;
24
25
htmldocs:
- rm -f docs/*;
- cd matplotlib;
26
- pydoc -w ${MODULES};
+ rm -f docs/*.html;\
27
+ cd matplotlib;\
28
+ pydoc -w ${MODULES};\
29
mv *.html ../docs/
30
31
release: ${DISTFILES}
0 commit comments