6
6
# Do not put an explicit path for sage-spkg here, it will be found in $PATH.
7
7
SAGE_SPKG = sage-spkg -f
8
8
PIPE = $(SAGE_ROOT)/build/pipestatus
9
+ STARTED = $(SAGE_LOCAL)/etc/sage-started.txt
9
10
10
11
# Tell make not to look for files with these names:
11
- .PHONY: all all-sage base toolchain toolchain-deps
12
+ .PHONY: all all-sage all-toolchain all-build start \
13
+ base toolchain toolchain-deps sagelib \
14
+ doc doc-html doc-html-jsmath doc-html-mathjax doc-pdf \
15
+ doc-clean clean lib-clean build-clean
12
16
13
- # Make the 5 build phases:
14
- # prereq, base, toolchain, toolchain-deps, all-sage
17
+ # Build everything and start Sage.
18
+ # Note that we put the "doc" target first in the rule below because
19
+ # the doc build takes the most time and should be started as soon as
20
+ # possible.
21
+ all: all-toolchain
22
+ $(MAKE) doc all-sage
23
+ $(MAKE) '$(STARTED)'
24
+
25
+ # Build everything except the documentation
26
+ all-build: all-toolchain
27
+ $(MAKE) all-sage
28
+
29
+
30
+ # Make the 4 preliminary build phases:
31
+ # prereq, base, toolchain, toolchain-deps.
15
32
# During the toolchain build, we export SAGE_BUILD_TOOLCHAIN=yes
16
33
# such that packages can do different things when they are built
17
34
# as prerequisite of GCC.
18
- all:
35
+ all-toolchain :
19
36
$(MAKE) $(INST)/prereq
20
37
$(MAKE) base
21
38
env SAGE_BUILD_TOOLCHAIN=yes $(MAKE) toolchain
22
39
$(MAKE) toolchain-deps
23
- $(MAKE) all-sage
24
40
25
41
# All targets except for the base packages
26
42
all-sage: \
27
- $(STANDARD_PACKAGES) \
28
- $(OPTIONAL_INSTALLED_PACKAGES) \
29
- $(INST)/$(SAGE_MP_LIBRARY) \
30
- $(INST)/sage \
31
- $(EXTCODE) \
32
- $(SCRIPTS)
43
+ sagelib \
44
+ $(STANDARD_PACKAGES) \
45
+ $(OPTIONAL_INSTALLED_PACKAGES) \
46
+ $(EXTCODE) \
47
+ $(SCRIPTS)
33
48
34
49
# TOOLCHAIN consists of dependencies determined by build/install,
35
50
# including for example the GCC package.
@@ -50,7 +65,20 @@ toolchain-deps:
50
65
51
66
# Everything needed to start up Sage using "./sage". Of course, not
52
67
# every part of Sage will work. It does not include Maxima for example.
53
- SAGERUNTIME = $(SCRIPTS) $(INST)/sage $(INST)/$(IPYTHON) $(INST)/$(PEXPECT)
68
+ SAGERUNTIME = sagelib $(SCRIPTS) $(INST)/$(IPYTHON) $(INST)/$(PEXPECT)
69
+
70
+
71
+ # Start Sage at least once to check that it works
72
+ # (i.e. when we just installed Sage for the first time).
73
+ start: all-build
74
+ $(MAKE) '$(STARTED)'
75
+
76
+ # We make this depend on all standard packages because running
77
+ # sage-starts runs sage-location, which should be run after installing
78
+ # any package.
79
+ $(STARTED): $(STANDARD_PACKES)
80
+ "$(SAGE_LOCAL)/bin/sage-starts"
81
+
54
82
55
83
###############################################################################
56
84
# Building the base system
@@ -62,13 +90,13 @@ base: $(INST)/$(BZIP2) $(INST)/$(PATCH) $(INST)/$(PKGCONF)
62
90
$(INST)/prereq: ../configure
63
91
@cd ..; rm -f config.log; ln -s logs/pkgs/config.log config.log; \
64
92
./configure $$PREREQ_OPTIONS || ( \
65
- if [ "x$$SAGE_PORT" = x ]; then \
66
- echo "If you would like to try to build Sage anyway (to help porting),"; \
67
- echo "export the variable 'SAGE_PORT' to something non-empty."; \
68
- exit 1; \
69
- else \
70
- echo "Since 'SAGE_PORT' is set, we will try to build anyway."; \
71
- fi; )
93
+ if [ "x$$SAGE_PORT" = x ]; then \
94
+ echo "If you would like to try to build Sage anyway (to help porting),"; \
95
+ echo "export the variable 'SAGE_PORT' to something non-empty."; \
96
+ exit 1; \
97
+ else \
98
+ echo "Since 'SAGE_PORT' is set, we will try to build anyway."; \
99
+ fi; )
72
100
touch $@
73
101
74
102
###############################################################################
@@ -77,54 +105,53 @@ $(INST)/prereq: ../configure
77
105
78
106
# List all *build-time* dependencies of the Sage library. These are,
79
107
# on the one hand, programs needed for the build/install process of the
80
- # Sage library (e.g. JINJA2), and on the
81
- # other hand all dependencies for Cython files (e.g. PARI, NTL, SAGE_MP_LIBRARY).
82
- $(INST)/sage : \
83
- $(INST)/$(ATLAS) \
84
- $(INST)/$(CEPHES) \
85
- $(INST)/$(CLIQUER) \
86
- $(INST)/$(CYTHON) \
87
- $(INST)/$(ECL) \
88
- $(INST)/$(ECLIB) \
89
- $(INST)/$(ECM) \
90
- $(INST)/$(FLINT) \
91
- $(INST)/$(LIBFPLLL) \
92
- $(INST)/$(LIBGD) \
93
- $(INST)/$(GIVARO) \
94
- $(INST)/$(GLPK) \
95
- $(INST)/$(GSL) \
96
- $(INST)/$(IML) \
97
- $(INST)/$(JINJA2) \
98
- $(INST)/$(LCALC) \
99
- $(INST)/$(LRCALC) \
100
- $(INST)/$(LIBGAP) \
101
- $(INST)/$(LIBPNG) \
102
- $(INST)/$(LINBOX) \
103
- $(INST)/$(M4RI) \
104
- $(INST)/$(M4RIE) \
105
- $(INST)/$(MPC) \
106
- $(INST)/$(MPFI) \
107
- $(INST)/$(MPFR) \
108
- $(INST)/$(SAGE_MP_LIBRARY) \
109
- $(INST)/$(NTL) \
110
- $(INST)/$(NUMPY) \
111
- $(INST)/$(PARI) \
112
- $(INST)/$(PLANARITY) \
113
- $(INST)/$(POLYBORI) \
114
- $(INST)/$(PPL) \
115
- $(INST)/$(PYNAC) \
116
- $(INST)/$(PYTHON) \
117
- $(INST)/$(RATPOINTS) \
118
- $(INST)/$(READLINE) \
119
- $(INST)/$(RW) \
120
- $(INST)/$(SINGULAR) \
121
- $(INST)/$(SIX) \
122
- $(INST)/$(SYMMETRICA) \
123
- $(INST)/$(ZN_POLY)
108
+ # Sage library (e.g. CYTHON, JINJA2), and on the other hand all
109
+ # dependencies for Cython files (e.g. PARI, NTL, SAGE_MP_LIBRARY).
110
+ sagelib : \
111
+ $(INST)/$(ATLAS) \
112
+ $(INST)/$(CEPHES) \
113
+ $(INST)/$(CLIQUER) \
114
+ $(INST)/$(CYTHON) \
115
+ $(INST)/$(ECL) \
116
+ $(INST)/$(ECLIB) \
117
+ $(INST)/$(ECM) \
118
+ $(INST)/$(FLINT) \
119
+ $(INST)/$(LIBFPLLL) \
120
+ $(INST)/$(LIBGD) \
121
+ $(INST)/$(GIVARO) \
122
+ $(INST)/$(GLPK) \
123
+ $(INST)/$(GSL) \
124
+ $(INST)/$(IML) \
125
+ $(INST)/$(JINJA2) \
126
+ $(INST)/$(LCALC) \
127
+ $(INST)/$(LRCALC) \
128
+ $(INST)/$(LIBGAP) \
129
+ $(INST)/$(LIBPNG) \
130
+ $(INST)/$(LINBOX) \
131
+ $(INST)/$(M4RI) \
132
+ $(INST)/$(M4RIE) \
133
+ $(INST)/$(MPC) \
134
+ $(INST)/$(MPFI) \
135
+ $(INST)/$(MPFR) \
136
+ $(INST)/$(SAGE_MP_LIBRARY) \
137
+ $(INST)/$(NTL) \
138
+ $(INST)/$(NUMPY) \
139
+ $(INST)/$(PARI) \
140
+ $(INST)/$(PLANARITY) \
141
+ $(INST)/$(POLYBORI) \
142
+ $(INST)/$(PPL) \
143
+ $(INST)/$(PYNAC) \
144
+ $(INST)/$(PYTHON) \
145
+ $(INST)/$(RATPOINTS) \
146
+ $(INST)/$(READLINE) \
147
+ $(INST)/$(RW) \
148
+ $(INST)/$(SINGULAR) \
149
+ $(INST)/$(SIX) \
150
+ $(INST)/$(SYMMETRICA) \
151
+ $(INST)/$(ZN_POLY)
124
152
if [ -z "$$SAGE_INSTALL_FETCH_ONLY" ]; then \
125
153
cd $(SAGE_SRC) && source bin/sage-env && \
126
- $(PIPE) 'time $(MAKE) sage 2>&1' 'tee -a $(SAGE_LOGS)/sage-$(SAGE_VERSION).log' && \
127
- touch $@; \
154
+ $(PIPE) 'time $(MAKE) sage 2>&1' 'tee -a $(SAGE_LOGS)/sage-$(SAGE_VERSION).log'; \
128
155
fi
129
156
130
157
@@ -143,3 +170,64 @@ $(SAGE_LOCAL)/bin/%: $(SAGE_SRC)/bin/%
143
170
$(SAGE_EXTCODE)/%: $(SAGE_SRC)/ext/%
144
171
@mkdir -p "$(@D)"
145
172
cp $< $@
173
+
174
+
175
+ ###############################################################################
176
+ # Building the documentation
177
+ ###############################################################################
178
+
179
+ # You can choose to have the built HTML version of the documentation link to
180
+ # the PDF version. To do so, you need to build both the HTML and PDF versions.
181
+ # To have the HTML version link to the PDF version, do
182
+ #
183
+ # $ ./sage --docbuild all html
184
+ # $ ./sage --docbuild all pdf
185
+ #
186
+ # For more information on the docbuild utility, do
187
+ #
188
+ # $ ./sage --docbuild -H
189
+
190
+ # Building the documentation has many dependencies, because all
191
+ # documented modules are imported and because we use matplotlib to
192
+ # produce plots.
193
+ DOC_DEPENDENCIES = sagelib $(INST)/$(SPHINX) $(INST)/$(SAGENB) \
194
+ | $(SAGERUNTIME) $(INST)/$(MAXIMA) $(INST)/$(NETWORKX) \
195
+ $(INST)/$(SCIPY) $(INST)/$(MATPLOTLIB) $(INST)/$(PILLOW)
196
+
197
+ doc: doc-html
198
+
199
+ doc-html: $(DOC_DEPENDENCIES)
200
+ cd .. && $(PIPE) "./sage --docbuild --no-pdf-links all html $(SAGE_DOCBUILD_OPTS) 2>&1" "tee -a logs/dochtml.log"
201
+
202
+ # 'doc-html-no-plot': build docs without building the graphics coming
203
+ # from the '.. plot' directive, in case you want to save a few
204
+ # megabytes of disk space. 'doc-clean' is a prerequisite because the
205
+ # presence of graphics is cached in src/doc/output.
206
+ doc-html-no-plot: doc-clean $(DOC_DEPENDENCIES)
207
+ cd .. && $(PIPE) "./sage --docbuild --no-pdf-links --no-plot all html $(SAGE_DOCBUILD_OPTS) 2>&1" "tee -a logs/dochtml.log"
208
+
209
+ doc-html-mathjax: $(DOC_DEPENDENCIES)
210
+ cd .. && $(PIPE) "./sage --docbuild --no-pdf-links all html -j $(SAGE_DOCBUILD_OPTS) 2>&1" "tee -a logs/dochtml.log"
211
+
212
+ # Keep target 'doc-html-jsmath' for backwards compatibility.
213
+ doc-html-jsmath: doc-html-mathjax
214
+
215
+ doc-pdf: $(DOC_DEPENDENCIES)
216
+ cd .. && $(PIPE) "./sage --docbuild all pdf $(SAGE_DOCBUILD_OPTS) 2>&1" "tee -a logs/docpdf.log"
217
+
218
+ doc-clean:
219
+ cd "$(SAGE_SRC)/doc" && $(MAKE) clean
220
+
221
+
222
+ ###############################################################################
223
+ # Cleaning up
224
+ ###############################################################################
225
+
226
+ clean:
227
+ @echo "Deleting package build directories..."
228
+ rm -rf "$(SAGE_LOCAL)/var/tmp/sage/build"
229
+
230
+ lib-clean:
231
+ cd "$(SAGE_SRC)" && $(MAKE) clean
232
+
233
+ build-clean: clean doc-clean lib-clean
0 commit comments