open-consul/ui/GNUmakefile
Sean Chittenden c0046e0f30 Acknowledge that we're using GNU make's dialect and rename appropriate
Makefiles to GNUmakefiles so that non-GNU make(1) will error out.  This
should be a transparent change to the universe of people using GNU make.
2016-02-05 14:24:26 -08:00

13 lines
207 B
Makefile

ROOT:=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
server:
python -m SimpleHTTPServer
watch:
sass styles:static --watch
dist:
@sh -c "'$(ROOT)/scripts/dist.sh'"
.PHONY: server watch dist