Deep Dive Make Capstone¶
Guide Maps¶
graph LR
family["Reproducible Research"] --> program["Deep Dive Make"]
program --> capstone["Capstone"]
capstone --> guide["Course guide"]
guide --> routes["Question-first routes"]
routes --> proof["Build and review routes"]
flowchart LR
question["Name the current question"] --> route["Choose the smallest capstone route"]
route --> review["Read one matching guide or bundle"]
review --> next["Escalate only if the question changes"]
Read the first diagram as the capstone shape. Read the second diagram as the entry rule: choose the smallest route that answers the current question, then escalate only when the question changes.
This capstone is the executable reference build for Deep Dive Make. It is a compact C project used to corroborate the course's main claims about truthful graphs, atomic publication, parallel safety, determinism, and self-testing. It is not meant to be a first-contact playground for Make syntax.
Use this capstone when¶
- the module idea is already legible and you want executable corroboration
- you need one repository that keeps graph truth, publication, and proof visible together
- you are reviewing whether a small build behaves like a serious build under pressure
Do not use this capstone when¶
- you still need first exposure to the concept itself
- you want to browse the whole repository before choosing a question
- the strongest proof route feels safer than naming the current claim
Choose the entry route by question¶
| If the question is... | Start here | Escalate only if needed |
|---|---|---|
| what does this repository promise | Capstone Walkthrough | Capstone File Guide |
| which targets are public and what they mean | Command Guide | Capstone Proof Checklist |
| does the build prove convergence and parallel safety | Capstone Proof Checklist | make verify-report |
| which failure class does this repro teach | Repro Catalog | make incident-audit |
| should I trust this as a stewardship specimen | Capstone Proof Checklist | make confirm |
From the repository root, the matching course-level commands are:
make PROGRAM=reproducible-research/deep-dive-make capstone-walkthrough
make PROGRAM=reproducible-research/deep-dive-make inspect
make PROGRAM=reproducible-research/deep-dive-make proof
Inside capstone/, use gmake on macOS because /usr/bin/make is BSD Make.
First honest pass¶
- Run
make PROGRAM=reproducible-research/deep-dive-make capstone-walkthrough. - Read Capstone Walkthrough.
- Run
make PROGRAM=reproducible-research/deep-dive-make inspect. - Read Command Guide.
- Run
make PROGRAM=reproducible-research/deep-dive-make proof. - Read Capstone Proof Checklist.
Stop there first. That is enough to see the public contract, the proof harness, and one bounded review route without turning the capstone into a browsing exercise.
What the main targets prove¶
| Target | What it proves | Why it matters |
|---|---|---|
walkthrough |
the learner-facing reading order is bounded and explicit | first capstone contact stays humane |
inspect |
the public build contract is visible without the full proof route | review starts from stable surfaces |
selftest |
convergence, serial/parallel equivalence, and negative hidden-input detection | the build system is tested as a system |
verify-report |
the selftest evidence is saved as a review bundle | proof can be inspected later |
proof |
the sanctioned review bundle set exists and agrees with the contract | stewardship has a durable route |
confirm |
the strongest built-in confirmation path still passes | final review is stronger than first-pass learning |
Repository shape¶
graph TD
capstone["capstone/"]
capstone --> makefile["Makefile"]
capstone --> mk["mk/"]
capstone --> src["src/"]
capstone --> include["include/"]
capstone --> scripts["scripts/"]
capstone --> tests["tests/"]
capstone --> repro["repro/"]
capstone --> docs["docs/"]
Use these areas deliberately:
Makefilefor public targets and entrypointsmk/for layered build responsibilitiesscripts/for generator and packaging boundariestests/for build-system proofrepro/for controlled failure teaching materialdocs/for bounded review routes
Course guide set¶
- Command Guide
- Capstone Map
- Capstone File Guide
- Capstone Walkthrough
- Capstone Proof Checklist
- Repro Catalog
Good stopping point¶
Stop when you can name:
- the current claim
- the smallest route that proves it
- the next stronger route only if the current one stops being enough
Directory glossary¶
Use Glossary when you want the recurring language in this shelf kept stable while you move between repository routes, review surfaces, and proof commands.