1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-05-17 15:06:47 +08:00

make: make default rule 'aggregate' in sharness

License: MIT
Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>
This commit is contained in:
Jakub Sztandera
2016-12-21 10:17:56 +01:00
parent a2e3aa5d78
commit dd63187826

View File

@ -1,7 +1,10 @@
SH := $(wildcard *.sh)
# 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:
ALWAYS:
.PHONY: ALWAYS