Added a clean task to Makefile
parent
868b8e490e
commit
e1b94f2602
|
@ -1,5 +1,6 @@
|
||||||
# Ignore Backup Copies from Text Editor
|
# Ignore Backup Copies from Text Editor
|
||||||
*~
|
*~
|
||||||
|
|
||||||
# Ignore SASS files
|
# Ignore SASS files
|
||||||
.sass-cache
|
.sass-cache
|
||||||
gen
|
dist
|
||||||
|
|
6
Makefile
6
Makefile
|
@ -1,10 +1,14 @@
|
||||||
SASS=sass
|
SASS=sass
|
||||||
|
SCSS_DIR=gtk-3.0/scss
|
||||||
|
DIST_DIR=gtk-3.0/dist
|
||||||
|
|
||||||
css:
|
css:
|
||||||
$(SASS) --update gtk-3.0/scss:gtk-3.0/gen
|
$(SASS) --sourcemap=none --update $(SCSS_DIR):$(DIST_DIR)
|
||||||
|
|
||||||
all: css
|
all: css
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -rf $(DIST_DIR)
|
||||||
|
|
||||||
.PHONY: css
|
.PHONY: css
|
||||||
# vim: set ts=4 sw=4 tw=0 noet :
|
# vim: set ts=4 sw=4 tw=0 noet :
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
|
|
||||||
@import url("gen/widgets.css");
|
@import url("dist/widgets.css");
|
||||||
|
|
Loading…
Reference in New Issue