numix-gtk-theme/Makefile

15 lines
203 B
Makefile
Raw Normal View History

2014-10-20 08:23:51 +00:00
SASS=sass
2014-10-20 18:51:50 +00:00
SCSS_DIR=gtk-3.0/scss
DIST_DIR=gtk-3.0/dist
2014-10-20 08:23:51 +00:00
2014-10-20 18:51:50 +00:00
css:
$(SASS) --sourcemap=none --update $(SCSS_DIR):$(DIST_DIR)
2014-10-20 08:23:51 +00:00
all: css
2014-10-20 18:51:50 +00:00
clean:
rm -rf $(DIST_DIR)
2014-10-20 08:23:51 +00:00
.PHONY: css
# vim: set ts=4 sw=4 tw=0 noet :