From 3169070063b2cb877200117ebb384269d73bcb93 Mon Sep 17 00:00:00 2001 From: Joel Martin Date: Mon, 24 Mar 2014 16:32:24 -0500 Subject: Current state of mal for Clojure West lighting talk. --- bash/Makefile | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 bash/Makefile (limited to 'bash/Makefile') diff --git a/bash/Makefile b/bash/Makefile new file mode 100644 index 0000000..53f0d09 --- /dev/null +++ b/bash/Makefile @@ -0,0 +1,25 @@ +TESTS = tests/types.sh tests/reader.sh + +SOURCES = types.sh reader.sh stepA_more.sh + +all: mal.sh + +mal.sh: $(SOURCES) + cat $+ > $@ + echo "#!/bin/bash" > $@ + cat $+ | grep -v "^source " >> $@ + chmod +x $@ + +clean: + rm -f mal.sh + +.PHONY: stats tests $(TESTS) + +stats: $(SOURCES) + @wc $^ + +tests: $(TESTS) + +$(TESTS): + @echo "Running $@"; \ + bash $@ || exit 1; \ -- cgit v1.2.3