summaryrefslogtreecommitdiff
path: root/Makefile
blob: 7e63f4530d7f413fa4e6c026302360a81f7fc9dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
.PHONY: build repl web-build web-repl

build:
	@clojure -Scp '$(CLASSPATH):src:.' -M -m scripts.repl

repl:
	@clojure -Scp '$(CLASSPATH):src:.' -M -m scripts.repl

web-build:
	mkdir -p build/web
	@clojure -Scp '$(CLASSPATH):src' -M -m cljs.main --optimizations advanced --output-to build/web/app.js --compile stem.web.core

web-repl:
	@clojure -Scp '$(CLASSPATH):src:.' -M -m scripts.web-repl