blob: e3b31b162472693d3a397dc1c34d221ebdaef8c6 (
plain)
1
2
3
4
5
6
7
8
9
10
|
.PHONY: all setup clean run
all:
@V=$(V) testdir="$(realpath ../)" ./test.sh --all
setup:
@testdir="$(realpath ../)" ./test.sh --setup
clean:
@testdir="$(realpath ../)" ./test.sh --clean
run:
@testdir="$(realpath ../)" ./test.sh --run
|