aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 7e5b4ab4fadb5920c334dcbfe4705b741aec6a3a (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) -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
..