open-consul/ui/Makefile

15 lines
252 B
Makefile
Raw Normal View History

2014-04-21 20:01:53 +00:00
server:
python -m SimpleHTTPServer
watch:
2014-04-21 20:07:14 +00:00
sass styles:static --watch
2014-04-21 20:01:53 +00:00
2014-05-01 15:21:55 +00: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 20:01:53 +00:00
2014-05-01 15:21:55 +00:00
.PHONY: server watch dist