Thomas Rast | 342e9ef | 2012-02-17 11:25:09 +0100 | [diff] [blame] | 1 | -include ../../config.mak |
| 2 | export GIT_TEST_OPTIONS |
| 3 | |
Nipunn Koorapati | ed5a245 | 2020-10-20 13:41:02 +0000 | [diff] [blame] | 4 | all: test-lint perf |
Thomas Rast | 342e9ef | 2012-02-17 11:25:09 +0100 | [diff] [blame] | 5 | |
| 6 | perf: pre-clean |
| 7 | ./run |
| 8 | |
| 9 | pre-clean: |
Jeff Hostetler | 4f2009d | 2021-02-03 15:34:43 +0000 | [diff] [blame] | 10 | rm -rf test-results test-trace |
Thomas Rast | 342e9ef | 2012-02-17 11:25:09 +0100 | [diff] [blame] | 11 | |
| 12 | clean: |
Jeff Hostetler | 4f2009d | 2021-02-03 15:34:43 +0000 | [diff] [blame] | 13 | rm -rf build "trash directory".* test-results test-trace |
Thomas Rast | 342e9ef | 2012-02-17 11:25:09 +0100 | [diff] [blame] | 14 | |
Nipunn Koorapati | ed5a245 | 2020-10-20 13:41:02 +0000 | [diff] [blame] | 15 | test-lint: |
| 16 | $(MAKE) -C .. test-lint |
| 17 | |
Thomas Rast | 342e9ef | 2012-02-17 11:25:09 +0100 | [diff] [blame] | 18 | .PHONY: all perf pre-clean clean |