FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
matplotlib/Makefile at boxplot-stat-transforms · phobson/matplotlib · GitHub
phobson
/
matplotlib
Public
forked from
matplotlib/matplotlib
Notifications
You must be signed in to change notification settings
Fork
1
Star
1
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
matplotlib
/
Makefile
Copy path
More file actions
More file actions
Latest commit
History
History
History
54 lines (35 loc) · 1.29 KB
Breadcrumbs
matplotlib
/
Makefile
Copy path
File metadata and controls
54 lines (35 loc) · 1.29 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#
Makefile for matplotlib
PYTHON
=
`
which python
`
VERSION
=
`
${PYTHON}
setup.py --version
`
DISTFILES
= API_CHANGES KNOWN_BUGS INSTALL README license
\
CHANGELOG Makefile INTERACTIVE
\
MANIFEST.in lib lib/matplotlib lib/dateutil lib/pytz examples setup.py
RELEASE
= matplotlib-${VERSION}
clean
:
${PYTHON}
setup.py clean
;
\
rm -f
*
.png
*
.ps
*
.eps
*
.svg
*
.jpg
*
.pdf
find
.
-name
"
_tmp*.py
"
|
xargs rm -f
;
\
find
.
\(
-name
"
*~
"
-o -name
"
*.pyc
"
\)
|
xargs rm -f
;
\
find unit
\(
-name
"
*.png
"
-o -name
"
*.ps
"
-o -name
"
*.pdf
"
-o -name
"
*.eps
"
\)
|
xargs rm -f
find
.
\(
-name
"
#*
"
-o -name
"
.#*
"
-o -name
"
.*~
"
-o -name
"
*~
"
\)
|
xargs rm -f
release
: ${DISTFILES}
rm -f MANIFEST
;
\
${PYTHON}
license.py
${VERSION}
license/LICENSE
;
\
${PYTHON}
setup.py sdist --formats=gztar,zip
;
pyback
:
tar cvfz pyback.tar.gz
*
.py lib src examples/
*
.py unit/
*
.py
_build_osx105
:
CFLAGS=
"
-Os -arch i386 -arch ppc
"
LDFLAGS=
"
-Os -arch i386 -arch ppc
"
python setup.py build
build_osx105
:
echo
"
Use 'make -f fetch deps mpl_install instead'
"
jdh_doc_snapshot
:
git pull
;
\
python setup.py install --prefix=
~
/dev
;
\
cd
doc
;
\
rm -rf build
;
\
python make.py clean
;
\
python make.py html latex sf sfpdf
;
test
:
${PYTHON}
setup.py
test
test-coverage
:
${PYTHON}
setup.py
test
--with-coverage --cover-package=matplotlib
Back
|
FazBrowse Home
|
New Git URL