A focused writing and publishing space. https://write.with.parts
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
writefreely/less/Makefile

17 lines
316 B

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