mirror of https://github.com/writeas/writefreely
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.
21 lines
468 B
21 lines
468 B
LESSC=$(shell command -v lessc 2> /dev/null)
|
|
|
|
ifndef LESSC
|
|
$(error "less is not installed, please run install-less.sh")
|
|
endif
|
|
|
|
CSSDIR=../static/css/
|
|
|
|
all :
|
|
$(LESSC) app.less --clean-css="--s1 --advanced" $(CSSDIR)write.css
|
|
$(LESSC) fonts.less --clean-css="--s1 --advanced" $(CSSDIR)fonts.css
|
|
$(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
|
|
|