consul/ui/Makefile

15 lines
252 B
Makefile
Raw Normal View History

2014-04-21 16:01:53 -04:00
server:
python -m SimpleHTTPServer
watch:
2014-04-21 16:07:14 -04:00
sass styles:static --watch
2014-04-21 16:01:53 -04:00
2014-05-01 11:21:55 -04:00
dist:
@echo "compile styles/*.scss"
@sass styles/base.scss static/base.css
@ruby scripts/compile.rb
cp -R ./static dist/static
cp index.html dist/
2014-04-21 16:01:53 -04:00
2014-05-01 11:21:55 -04:00
.PHONY: server watch dist