-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
24 lines (18 loc) · 748 Bytes
/
Copy pathMakefile
File metadata and controls
24 lines (18 loc) · 748 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# choyce-engine top-level Makefile.
#
# Currently exposes only the first-run asset bulk-download target. Other
# project workflows (Godot run, tests, lints) continue to live under
# scripts/ and are not wrapped here yet.
SHELL := /bin/sh
.PHONY: assets assets-dry-run assets-force help
help:
@echo "Targets:"
@echo " assets - download + extract free-asset packs (scripts/assets/manifest.yaml)"
@echo " assets-dry-run - list what 'assets' WOULD download without touching disk"
@echo " assets-force - re-download every pack even if already marked complete"
assets:
@scripts/assets/fetch_free_assets.sh
assets-dry-run:
@scripts/assets/fetch_free_assets.sh --dry-run
assets-force:
@scripts/assets/fetch_free_assets.sh --force