| 1 | # The default target of this Makefile is... |
| 2 | all:: |
| 3 | |
| 4 | # Import tree-wide shared Makefile behavior and libraries |
| 5 | include ../../shared.mak |
| 6 | |
| 7 | -include ../../config.mak |
| 8 | export GIT_TEST_OPTIONS |
| 9 | |
| 10 | all:: test-lint perf |
| 11 | |
| 12 | perf: pre-clean |
| 13 | ./run |
| 14 | |
| 15 | pre-clean: |
| 16 | rm -rf test-results test-trace |
| 17 | |
| 18 | clean: |
| 19 | rm -rf build "trash directory".* test-results test-trace |
| 20 | |
| 21 | test-lint: |
| 22 | $(MAKE) -C .. test-lint |
| 23 | |
| 24 | .PHONY: all perf pre-clean clean |