aboutsummaryrefslogtreecommitdiff
path: root/clojure/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'clojure/Makefile')
-rw-r--r--clojure/Makefile11
1 files changed, 1 insertions, 10 deletions
diff --git a/clojure/Makefile b/clojure/Makefile
index 376d107..2ddfbcc 100644
--- a/clojure/Makefile
+++ b/clojure/Makefile
@@ -1,21 +1,12 @@
-
-TESTS =
-
SOURCES_BASE = src/readline.clj src/reader.clj src/printer.clj
SOURCES_LISP = src/env.clj src/core.clj src/stepA_more.clj
SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
all:
-.PHONY: stats tests $(TESTS)
+.PHONY: stats
stats: $(SOURCES)
@wc $^
stats-lisp: $(SOURCES_LISP)
@wc $^
-
-tests: $(TESTS)
-
-$(TESTS):
- @echo "Running $@"; \
- lein with-profile XXX$@XXX trampoline run || exit 1; \