aboutsummaryrefslogtreecommitdiff
path: root/clojure/Makefile
blob: 4bc289ed8d91b96350f656fdf1dda641616ae65c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

TESTS =

SOURCES = src/readline.clj src/reader.clj src/printer.clj \
	  src/env.clj src/core.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; \