cyp/app/Makefile
Ondrej Zara 76802bc630 queue
2019-03-22 15:35:04 +01:00

11 lines
172 B
Makefile

LESS := $(shell npm bin)/lessc
APP := app.css
all: $(APP)
$(APP): css/*
$(LESS) css/app.less > $@
watch: all
while inotifywait -e MODIFY -r css js ; do make $^ ; done