12 lines
289 B
Makefile
12 lines
289 B
Makefile
TASK ?= task01_upper_immediate
|
|
.PHONY: build test run trace clean
|
|
build:
|
|
@tests/test_rtl.sh --build-only "$(TASK)"
|
|
test:
|
|
@tests/test_rtl.sh "$(TASK)"
|
|
run: test
|
|
trace:
|
|
@tests/test_rtl.sh --trace "$(TASK)"
|
|
clean:
|
|
@find .stem/build/rtl -mindepth 1 -maxdepth 1 -type d -exec rm -r -- {} +
|