reagent/Makefile

76 lines
1.3 KiB
Makefile
Raw Normal View History

2013-12-16 22:19:36 +00:00
PORT = 4562
PROF = dev
PROF = dev,test
# PROF = dev,test,srcmap
# PROF = prod,test
# PROF = prod
CLJSBUILD = client
CLJSDIRS = src test
VERSION = 0.1.0-SNAPSHOT
2013-12-16 22:19:36 +00:00
all: buildrun
run: openbrowser buildrun
leinbuild: setup
2014-01-05 10:16:01 +00:00
lein -o with-profile $(PROF) cljsbuild once $(CLJSBUILD)
2013-12-16 22:19:36 +00:00
openbrowser:
2013-12-17 19:10:03 +00:00
(sleep 1 && open site/test.html) &
2013-12-16 22:19:36 +00:00
buildrun: setup
lein -o with-profile $(PROF) cljsbuild auto $(CLJSBUILD)
install: leinbuild
2013-12-16 22:19:36 +00:00
lein install
preclean:
2013-12-17 18:20:20 +00:00
rm -rf repl .repl target out
2013-12-16 22:19:36 +00:00
clean: preclean
lein -o clean
setup: preclean copyjs
2013-12-16 22:19:36 +00:00
show-outdated:
lein ancient :all
veryclean: clean
rm -rf bower_components
bower_components:
2014-01-03 15:54:38 +00:00
bower install react#v0.8.0
2013-12-16 22:19:36 +00:00
src/cloact/react.min.js: bower_components/react/react.min.js Makefile
cp $< $@
src/cloact/react.js: bower_components/react/react.js Makefile
cp $< $@
copyjs: bower_components src/cloact/react.min.js src/cloact/react.js
2014-01-05 10:16:01 +00:00
gensite:
node bin/gen-site.js
prodbuild:
$(MAKE) PROF=prod,test leinbuild
buildsite: prodbuild gensite
2013-12-16 22:19:36 +00:00
setversion:
2013-12-16 22:22:54 +00:00
version=$(VERSION); \
2013-12-16 22:19:36 +00:00
find . -name project.clj | \
2013-12-16 22:22:54 +00:00
xargs -n1 sed -i "" -e 's,\(cloact "\)\([^"]*\)",\1'"$$version"'"',g
2013-12-16 22:19:36 +00:00
tag: setversion
if git rev-parse v$(VERSION) 2>/dev/null; then \
echo "Tag already exists"; \
exit 1; \
else \
git commit --allow-empty -a -m"Version "$(VERSION); \
git tag v$(VERSION); \
fi