8 lines
185 B
Makefile
8 lines
185 B
Makefile
|
TESTS := $(shell find "glibc/build/" -executable -name 'test-*' -or -executable -name 'tst-*')
|
||
|
TESTS_SUFFIX := $(TESTS:=.test)
|
||
|
|
||
|
all: $(TESTS_SUFFIX)
|
||
|
|
||
|
%.test: %
|
||
|
./run_single_test.sh $<
|