open-consul/ui/Makefile

15 lines
262 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
2014-05-01 15:31:56 +00:00
cp index.html dist/index.html
2014-04-21 20:01:53 +00:00
2014-05-01 15:21:55 +00:00
.PHONY: server watch dist