c0046e0f30
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.
13 lines
207 B
Makefile
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
|