aboutsummaryrefslogtreecommitdiff
path: root/clojure/Makefile
blob: d18eb5088545c0130930b061e421692ac9ee1c13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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; \