burlesque/Makefile

21 lines
442 B
Makefile
Raw Normal View History

2015-02-08 21:21:25 +07:00
all: jsx cleanup embed build
check-react:
@type jsx >/dev/null 2>&1 || (echo "Please install React.js toolkit:\nnpm install -g react-tools\n" && exit 1)
jsx: check-react
jsx --extension jsx server/static/ server/static/
rm -rf server/static/.module-cache
2015-02-08 22:09:45 +07:00
watch: check-react
2015-02-08 21:40:05 +07:00
jsx --watch --extension jsx server/static/ server/static/
2015-02-08 21:21:25 +07:00
cleanup:
find . -name '.DS_Store' | xargs rm -f
embed:
rice -i ./server embed-go
build:
go build