Files
Fast-Export/t/Makefile
Felipe Contreras 90c6ad5f87 test: use make to run the tests
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
2023-03-26 20:05:03 -06:00

13 lines
144 B
Makefile

T = $(wildcard *.t)
test: $(T)
@$(MAKE) --silent clean
$(T): clean
./$@ $(TEST_OPTS)
clean:
@rm -fr test-results
.PHONY: test $(T) clean