all repos — cgit @ eb80b4edadd07957f667f057c82875c30a822a1f

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