aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2055323..78d9192 100644
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,15 @@
1all: preview.png 1all: clean
2 make generate
3
4generate: preview.png versions update-cache
2 5
3preview.png: 6preview.png:
4 $(shell find "scalable/" -type f -name "*.png" -not -path ".git/*" | sort | feh -m -y 96 -E 96 -s -p -b trans -O preview.png -f-) 7 $(shell find "scalable/" -type f -name "*.png" -not -path ".git/*" | sort | feh -m -y 96 -E 96 -s -p -b trans -O preview.png -f-)
5 8
6update: 9versions:
10 find scalable/ -name '*.png' -exec ./generate.sh '{}' \;
11
12update-cache:
7 gtk-update-icon-cache `pwd` 13 gtk-update-icon-cache `pwd`
8 14
9clean: 15clean:
..