2012-02-17 11:25:09 +01:00
|
|
|
-include ../../config.mak
|
|
|
|
export GIT_TEST_OPTIONS
|
|
|
|
|
2020-10-20 15:41:02 +02:00
|
|
|
all: test-lint perf
|
2012-02-17 11:25:09 +01:00
|
|
|
|
|
|
|
perf: pre-clean
|
|
|
|
./run
|
|
|
|
|
|
|
|
pre-clean:
|
2021-02-03 16:34:43 +01:00
|
|
|
rm -rf test-results test-trace
|
2012-02-17 11:25:09 +01:00
|
|
|
|
|
|
|
clean:
|
2021-02-03 16:34:43 +01:00
|
|
|
rm -rf build "trash directory".* test-results test-trace
|
2012-02-17 11:25:09 +01:00
|
|
|
|
2020-10-20 15:41:02 +02:00
|
|
|
test-lint:
|
|
|
|
$(MAKE) -C .. test-lint
|
|
|
|
|
2012-02-17 11:25:09 +01:00
|
|
|
.PHONY: all perf pre-clean clean
|