feat: implement CPP05 C++20 card

This commit is contained in:
user
2026-07-21 20:11:42 +02:00
commit e332572a3e
38 changed files with 7623 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
TASK ?= task01
.PHONY: build test run trace clean
build:
@CARD_ROOT="$(CURDIR)" tools/card-action.sh build
test:
@CARD_ROOT="$(CURDIR)" STEM_TASK="$(TASK)" tools/card-action.sh test
run: test
trace:
@CARD_ROOT="$(CURDIR)" STEM_TASK="$(TASK)" tools/card-action.sh debug
clean:
@find .stem/artifacts -mindepth 1 -maxdepth 7 -type f -delete 2>/dev/null || true