mirror of
https://github.com/ipfs/kubo.git
synced 2025-08-06 19:44:01 +08:00
11 lines
181 B
Makefile
11 lines
181 B
Makefile
# default target is to run all tests
|
|
all: aggregate
|
|
|
|
SH := $(wildcard t[0-9][0-9][0-9][0-9]-*.sh)
|
|
|
|
.DEFAULT $(SH): ALWAYS
|
|
$(MAKE) -C ../.. test/sharness/$@
|
|
|
|
ALWAYS:
|
|
.PHONY: ALWAYS
|