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
# bevy_ios_toolkit — canonical Makefile.
# No shell scripts a human runs: every recipe calls real tools only. `make` is
# the sole entrypoint; the git hooks call `make pre-commit-checks` / `make test`.
RELEASE_BRANCH ?=
.DEFAULT_GOAL :=
:
: ## Show this help.: ## Run the button-per-feature demo app on the desktop (against the fakes).: ## Run the test suite (all features).: ## Format-check + clippy gate. Exactly what the git hooks run.: ## No marketing surface for a library. Documented no-op (target exists per standard).: ## Cut + push a vX.Y.Z tag from clean master. CI publishes to crates.io.: ## Wipe build artifacts (library + demo).