-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathMakefile
More file actions
77 lines (56 loc) · 1.4 KB
/
Makefile
File metadata and controls
77 lines (56 loc) · 1.4 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# DESCRIPTION: a simple Linux makefile to help building
# packages and their documentation. It will iterate through a
# list of packages that is hardcoded within multisetup.py,
#
# AUTHOR: Thomas Cokelaer,
#
# USAGE: help, type : make
#
#
Executable = python multisetup.py
main:
$(Executable) --help
develop:
$(Executable) develop
nosetests:
$(Executable) nosetests -w test
bdist:
$(Executable) bdist
bdist_egg:
$(Executable) bdist_egg
sdist:
$(Executable) sdist -p
release:
$(Executable) install nosetests -w test build_sphinx -E bdist_egg -d ../dist sdist -d ../dist
develop_release:
$(Executable) develop nosetests -w test build_sphinx -E sdist -d ../dist bdist_egg -d ../dist --keep-going
undevelop:
$(Executable) develop -u
install:
$(Executable) install
uninstall:
echo 'to be done'
clean:
$(Executable) clean -a
html:
$(Executable) build_sphinx -b html
cd doc; make html; cd ..
latex:
$(Executable) build_sphinx -b latex
cd doc; make latex; cd ..
pdf:
$(Executable) build_sphinx -b latex
cd doc/build/latex; make; cd ../../..
sphinx_upload:
$(Executable) sphinx_upload
doc: html latex pdf
cleandoc:
rm -r ./*/doc/html
rm -r ./*/doc/latex
rm -r ./doc/build/
source:
#svn up
#svn info | grep Revision| awk '{print $$2}'
rm -rf openalea_source;
svn export ../openalea openalea_source
tar cvfz OpenAlea.Source-0.8.0.r2203.tar.gz ./openalea_source