Files
lab-console-busybox/Makefile
T

12 lines
399 B
Makefile

TASK ?= task01_multicall_dispatch
.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 6 -type f -name 'trace.log' -delete 2>/dev/null || true