2
0
mirror of https://github.com/status-im/consul.git synced 2025-01-18 17:52:17 +00:00

13 lines
207 B
Makefile
Raw Normal View History

2015-10-22 14:16:01 -04:00
ROOT:=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
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:
2015-10-22 14:16:01 -04:00
@sh -c "'$(ROOT)/scripts/dist.sh'"
2014-04-21 16:01:53 -04:00
2014-05-01 11:21:55 -04:00
.PHONY: server watch dist