mirror of
https://github.com/frej/fast-export.git
synced 2026-01-13 01:32:05 +01:00
13 lines
144 B
Makefile
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
|