aboutsummaryrefslogtreecommitdiff
path: root/clojure/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'clojure/Makefile')
-rw-r--r--clojure/Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/clojure/Makefile b/clojure/Makefile
new file mode 100644
index 0000000..d18eb50
--- /dev/null
+++ b/clojure/Makefile
@@ -0,0 +1,17 @@
+
+TESTS =
+
+SOURCES = src/types.clj src/readline.clj src/reader.clj src/stepA_more.clj
+
+all:
+
+.PHONY: stats tests $(TESTS)
+
+stats: $(SOURCES)
+ @wc $^
+
+tests: $(TESTS)
+
+$(TESTS):
+ @echo "Running $@"; \
+ lein with-profile XXX$@XXX trampoline run || exit 1; \