1
0
mirror of https://github.com/writeas/writefreely synced 2025-01-05 20:47:30 +01:00
writefreely/less/Makefile
2019-09-20 09:17:47 -07:00

17 lines
316 B
Makefile

CSSDIR=../static/css/
all :
ifeq (,$(shell command -v lessc 2> /dev/null))
$(error "less is not installed, please run install-less.sh")
endif
lessc icons.less --clean-css="--s1 --advanced" $(CSSDIR)icons.css
install :
./install-less.sh
$(MAKE) all
clean :
rm -f write.css
rm -f fonts.css
rm -f icons.css