cyp/app/Makefile

11 lines
172 B
Makefile
Raw Normal View History

2019-03-20 05:56:39 +08:00
LESS := $(shell npm bin)/lessc
APP := app.css
all: $(APP)
$(APP): css/*
$(LESS) css/app.less > $@
2019-03-22 22:35:04 +08:00
watch: all
while inotifywait -e MODIFY -r css js ; do make $^ ; done