aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 754dd56..a55858e 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,10 @@ all: clean
4generate: preview.png versions update-cache 4generate: preview.png versions update-cache
5 5
6preview.png: 6preview.png:
7 $(shell find "scalable/" -type f -name "*.png" -not -path ".git/*" -not -path 'scalable/animations/*' | 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/*" -not -path 'scalable/animations/*' -not -path 'scalable/mimetypes/*' | sort | feh -m -y 96 -E 96 -s -p -b trans -O preview.png -f-)
8
9preview_mimetypes.png:
10 $(shell find "scalable/mimetypes" -type f -name "*.png" | sort | feh -m -y 256 -E 256 -W 8192 -s -p -b trans -O preview_mimetypes.png -f-)
8 11
9versions: 12versions:
10 find scalable/ -name '*.png' -exec ./generate.sh '{}' \; 13 find scalable/ -name '*.png' -exec ./generate.sh '{}' \;
@@ -13,4 +16,4 @@ update-cache:
13 gtk-update-icon-cache `pwd` 16 gtk-update-icon-cache `pwd`
14 17
15clean: 18clean:
16 rm -f preview.png 19 rm -f preview.png preview_mimetypes.png
..