8 lines
82 B
Makefile
8 lines
82 B
Makefile
|
all: test
|
||
|
|
||
|
test:
|
||
|
@echo "==> Running tests"
|
||
|
@./scripts/test.sh
|
||
|
|
||
|
.PHONY: all test
|