summaryrefslogtreecommitdiffstats
path: root/test/Makefile
blob: 4ce9b9be8b18a78bba2a3e801a6d6c2533edff56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FOREIGN_TARGETS = ../schema/aur-schema-sqlite.sql
T = $(sort $(wildcard t[0-9][0-9][0-9][0-9]-*.sh))

check: $(FOREIGN_TARGETS) $(T)

$(FOREIGN_TARGETS):
	$(MAKE) -C $(dir $@) $(notdir $@)

clean:
	$(RM) -r test-results/

$(T):
	@echo "*** $@ ***"; $(SHELL) $@

.PHONY: check $(FOREIGN_TARGETS) clean $(T)