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