Added a clean task to Makefile

This commit is contained in:
Satyajit Sahoo
2014-10-21 00:21:50 +05:30
parent 868b8e490e
commit e1b94f2602
3 changed files with 10 additions and 5 deletions
+7 -3
View File
@@ -1,10 +1,14 @@
SASS=sass
SCSS_DIR=gtk-3.0/scss
DIST_DIR=gtk-3.0/dist
css:
$(SASS) --update gtk-3.0/scss:gtk-3.0/gen
css:
$(SASS) --sourcemap=none --update $(SCSS_DIR):$(DIST_DIR)
all: css
clean:
rm -rf $(DIST_DIR)
.PHONY: css
# vim: set ts=4 sw=4 tw=0 noet :