mirror of https://github.com/status-im/reagent.git
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 example.html) &
|
||
|
|
||
|
autocompile:
|
||
|
lein with-profile $(PROF) cljsbuild auto $(CLJSBUILD)
|
||
|
|
||
|
clean:
|
||
|
lein -o clean
|