11 lines
128 B
Makefile
11 lines
128 B
Makefile
server:
|
|
python -m SimpleHTTPServer
|
|
|
|
watch:
|
|
sass styles:static --watch
|
|
|
|
build:
|
|
sass styles:static
|
|
|
|
.PHONY: server watch build
|