You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
.PHONY: clean
|
|
|
|
ALL: compact.css compact_night.css light.css night_blue.css night.css
|
|
|
|
%.css: %.less light/*.less
|
|
lessc --source-map=$(patsubst %.less,%.css.map,${<}) ${<} ${@}
|
|
|
|
clean:
|
|
rm -f *.css *.css.map
|