all repos — cgit @ a22855747e97e55a7b7a2622fe671b8ca9af0981

a hyperfast web frontend for git written in c

tests/Makefile (view raw)

 1include ../git/config.mak.uname
 2-include ../cgit.conf
 3
 4SHELL_PATH ?= $(SHELL)
 5SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))
 6
 7T = $(wildcard t[0-9][0-9][0-9][0-9]-*.sh)
 8
 9all: $(T)
10
11$(T):
12	@'$(SHELL_PATH_SQ)' $@ $(CGIT_TEST_OPTS)
13
14clean:
15	$(RM) -rf trash
16
17.PHONY: $(T) clean