blob: 018396670b71aae664b9f9203563f1db828298ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
NULL =
png_icons = \
applications-graphics.png \
applications-internet.png \
applications-office.png \
applications-system.png \
preferences-system.png \
preferences-system-network.png \
$(NULL)
applications-graphics.png: ../../../src/applications-graphics.svg
@echo " "$@
@inkscape -z $^ --export-area=22:6:278:262 -w=256 -h=256 -e=$@ 1> /dev/null
@mogrify -quiet -strip $@
applications-internet.png: ../../../src/applications-internet.svg
@echo " "$@
@inkscape -z $^ --export-area=13:17:269:273 -w=256 -h=256 -e=$@ 1> /dev/null
@mogrify -quiet -strip $@
applications-office.png: ../../../src/applications-office.svg
@echo " "$@
@inkscape -z $^ --export-area=16:11:272:267 -w=256 -h=256 -e=$@ 1> /dev/null
@mogrify -quiet -strip $@
applications-system.png: ../../../src/applications-system.svg
@echo " "$@
@inkscape -z $^ --export-area=16:11:272:267 -w=256 -h=256 -e=$@ 1> /dev/null
@mogrify -quiet -strip $@
preferences-system.png: ../../../src/preferences-system.svg
@echo " "$@
@inkscape -z $^ --export-area=22:16:278:272 -w=256 -h=256 -e=$@ 1> /dev/null
@mogrify -quiet -strip $@
preferences-system-network.png: ../../../src/computers.svg
@echo " "$@
@inkscape -z $^ --export-area=1620:311:1876:567 -w=256 -h=256 -e=$@ 1> /dev/null
@mogrify -quiet -strip $@
.PHONY: build-png-icons-local clean-png-icons-local
build-png-icons-local: $(png_icons)
clean-png-icons-local:
@echo " Cleaning icons..."
@rm -f $(png_icons)
|