mirror of
https://github.com/rui314/mold.git
synced 2024-12-25 17:34:02 +03:00
9 lines
82 B
Makefile
9 lines
82 B
Makefile
TESTS = $(wildcard *.sh)
|
|
|
|
test: $(TESTS)
|
|
|
|
$(TESTS):
|
|
@./$@
|
|
|
|
.PHONY: test $(TESTS)
|