about summary refs log tree commit diff stats
path: root/Readme.md
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2018-03-13 09:04:07 -0700
committerKartik K. Agaram <vc@akkartik.com>2018-03-13 09:04:07 -0700
commit5763322b9cc8cf8c8caed6b62919a680ed907c9a (patch)
tree59f8ed25317587fb6c0b61676d7a0a18358fdd21 /Readme.md
parent075498ec164b53600cf33d8fd070c003b1dc8cdf (diff)
downloadmu-5763322b9cc8cf8c8caed6b62919a680ed907c9a.tar.gz
4221 - more docs about build process
Diffstat (limited to 'Readme.md')
-rw-r--r--Readme.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/Readme.md b/Readme.md
index bbb714e0..1197feb5 100644
--- a/Readme.md
+++ b/Readme.md
@@ -402,6 +402,12 @@ c) Try running the tests:
 d) Check out [the programming environment](https://github.com/akkartik/mu/tree/master/edit#readme),
 the largest app built so far in Mu.
 
+e) Look at the `build` scripts. Mu's compilation process is itself designed to
+support staged learning. Each of the scripts (`build0`, `build1`, `build2`,
+etc.) is self-contained and can compile the project by itself. Successive
+versions add new features and configurability -- and complexity -- to the
+compilation process.
+
 **Credits**
 
 Mu builds on many ideas that have come before, especially:
> 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230