mirror of
https://github.com/status-im/reagent.git
synced 2025-01-10 20:06:28 +00:00
21 lines
278 B
Makefile
21 lines
278 B
Makefile
|
|
PROF = dev
|
|
# PROF = dev,test,srcmap
|
|
# PROF = prod,test
|
|
# PROF = prod
|
|
|
|
CLJSBUILD = client
|
|
|
|
all: autocompile
|
|
|
|
run: openbrowser autocompile
|
|
|
|
openbrowser:
|
|
(sleep 1 && open todomvc.html) &
|
|
|
|
autocompile:
|
|
lein with-profile $(PROF) cljsbuild auto $(CLJSBUILD)
|
|
|
|
clean:
|
|
lein -o clean
|