Files
numix-blue-gtk-theme/Makefile
T

15 lines
203 B
Makefile
Raw Normal View History

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