mirror of
https://github.com/encounter/numix-blue-gtk-theme.git
synced 2026-07-10 12:18:49 -07:00
15 lines
203 B
Makefile
Executable File
15 lines
203 B
Makefile
Executable File
SASS=sass
|
|
SCSS_DIR=gtk-3.0/scss
|
|
DIST_DIR=gtk-3.0/dist
|
|
|
|
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 :
|