open-consul/ui/Makefile

18 lines
327 B
Makefile

server:
python -m SimpleHTTPServer
watch:
sass styles:static --watch
dist:
@echo clean dist
@rm -rf dist/index.html
@rm -rf dist/static
@echo "compile styles/*.scss"
@sass styles/base.scss static/base.css
@ruby scripts/compile.rb
cp -R ./static dist/static/
cp index.html dist/index.html
.PHONY: server watch dist