From 110ffae47db27a49bbc43f86ba3737bccc1b3085 Mon Sep 17 00:00:00 2001 From: Trygve Laugstøl Date: Sat, 26 Jan 2013 23:58:22 +0100 Subject: o Rewriting most of this stuff to make it feel more like git. --- Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..2019e13 --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +all: test + +BATS=$(patsubst test/%,%,$(wildcard test/*.bats)) +TESTS=$(addprefix bats-,$(BATS)) + +bats-%: + @echo === test/$(patsubst bats-%,%,$@) + @bats test/$(patsubst bats-%,%,$@) + +test: $(TESTS) + @echo BATS=$(BATS) + @echo TESTS=$(TESTS) + +.PHONY: test -- cgit v1.2.3