10 lines
165 B
Makefile
10 lines
165 B
Makefile
|
include ./commons-test.mk
|
||
|
|
||
|
.PHONY: test-all
|
||
|
test-all: tools test-unit
|
||
|
|
||
|
.PHONY: test-examples
|
||
|
test-examples:
|
||
|
@echo "Running example tests..."
|
||
|
make -C examples test
|