diff --git a/.gitignore b/.gitignore
index 29d5568..c8a7d64 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,6 @@
 # Ignore Backup Copies from Text Editor
 *~
+
 # Ignore SASS files
 .sass-cache
-gen
+dist
diff --git a/Makefile b/Makefile
index e5f44c6..a3777f1 100644
--- a/Makefile
+++ b/Makefile
@@ -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 :
diff --git a/gtk-3.0/gtk.css b/gtk-3.0/gtk.css
index fe669f9..27ebee0 100644
--- a/gtk-3.0/gtk.css
+++ b/gtk-3.0/gtk.css
@@ -1,2 +1,2 @@
 
-@import url("gen/widgets.css");
\ No newline at end of file
+@import url("dist/widgets.css");