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