pluto/Makefile

15 lines
194 B
Makefile
Raw Normal View History

2019-03-26 16:10:32 +00:00
.PHONY: dev
2019-01-03 11:23:32 +00:00
2019-03-15 20:39:24 +00:00
compile:
2019-03-26 11:07:33 +00:00
clojure -m cljs.main -O advanced -d target -o target/pluto.js -c pluto.js
2019-03-15 20:39:24 +00:00
2019-03-26 16:10:32 +00:00
dev:
clojure -A:dev
2019-03-15 20:39:24 +00:00
install:
lein install
2019-01-03 11:23:32 +00:00
tests:
clojure -A:test-clj
clojure -A:test-cljs