aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 35e93b74ac42b1d57f390d332b4502c8b44feded (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
all: actions apps categories devices emblems places status mimetypes-templates
	
%.png:
	rm -f $@

%: %.png
	$(shell /usr/bin/env montage -label '\n%t'  $(shell find scalable/$(@) -type f | sort) -tile 5 -background white -geometry 96x96+24+24  doc/img/$(@).jpg)

mimetypes:
	./icons-mkmimetypes.sh /usr/share/mime/generic-icons 
	./icons-mkmimetypes.sh /usr/share/mime/globs

resize:
	find scalable/ -name '*.png' -exec ./icons-mkdefaultsizes.sh '{}' \;

iconcache:
	gtk-update-icon-cache `pwd`

clean:
	rm -f preview.png preview_mimetypes.png
..