blob: ee1ec9062076a64e6f1c16f4d169d3324d970c2e (
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
NULL =
png_icons = \
applications-accessories.png \
applications-development.png \
applications-engineering.png \
applications-games.png \
applications-graphics.png \
applications-internet.png \
applications-multimedia.png \
applications-office.png \
applications-other.png \
applications-science.png \
applications-system.png \
applications-utilities.png \
preferences-desktop.png \
preferences-desktop-peripherals.png \
preferences-desktop-personal.png \
preferences-other.png \
preferences-system.png \
preferences-system-network.png \
$(NULL)
applications-accessories.png: ../../../src/applications-accessories.svg
@echo " "$@
@inkscape -z $^ --export-area=302:140:334:172 -w=32 -h=32 -e=$@ 1> /dev/null
@mogrify -quiet -strip $@
applications-development.png: ../../../src/applications-development.svg
@echo " "$@
@inkscape -z $^ --export-area=303:142:335:174 -w=32 -h=32 -e=$@ 1> /dev/null
@mogrify -quiet -strip $@
applications-engineering.png: ../../../src/applications-engineering.svg
@echo " "$@
@inkscape -z $^ --export-area=304:142:336:174 -w=32 -h=32 -e=$@ 1> /dev/null
@mogrify -quiet -strip $@
applications-games.png: ../../../src/applications-games.svg
@echo " "$@
@inkscape -z $^ --export-area=303:142:335:174 -w=32 -h=32 -e=$@ 1> /dev/null
@mogrify -quiet -strip $@
applications-graphics.png: ../../../src/applications-graphics.svg
@echo " "$@
@inkscape -z $^ --export-area=303:142:335:174 -w=32 -h=32 -e=$@ 1> /dev/null
@mogrify -quiet -strip $@
applications-internet.png: ../../../src/applications-internet.svg
@echo " "$@
@inkscape -z $^ --export-area=303:142:335:174 -w=32 -h=32 -e=$@ 1> /dev/null
@mogrify -quiet -strip $@
applications-multimedia.png: ../../../src/applications-multimedia.svg
@echo " "$@
@inkscape -z $^ --export-area=303:142:335:174 -w=32 -h=32 -e=$@ 1> /dev/null
@mogrify -quiet -strip $@
applications-office.png: ../../../src/applications-office.svg
@echo " "$@
@inkscape -z $^ --export-area=302:142:334:174 -w=32 -h=32 -e=$@ 1> /dev/null
@mogrify -quiet -strip $@
applications-other.png: ../../../src/applications-other.svg
@echo " "$@
@inkscape -z $^ --export-area=303:142:335:174 -w=32 -h=32 -e=$@ 1> /dev/null
@mogrify -quiet -strip $@
applications-science.png: ../../../src/applications-science.svg
@echo " "$@
@inkscape -z $^ --export-area=303:142:335:174 -w=32 -h=32 -e=$@ 1> /dev/null
@mogrify -quiet -strip $@
applications-system.png: ../../../src/applications-system.svg
@echo " "$@
@inkscape -z $^ --export-area=303:142:335:174 -w=32 -h=32 -e=$@ 1> /dev/null
@mogrify -quiet -strip $@
applications-utilities.png: ../../../src/applications-utilities.svg
@echo " "$@
@inkscape -z $^ --export-area=303:142:335:174 -w=32 -h=32 -e=$@ 1> /dev/null
@mogrify -quiet -strip $@
preferences-desktop.png: ../../../src/preferences-desktop.svg
@echo " "$@
@inkscape -z $^ --export-area=303:142:335:174 -w=32 -h=32 -e=$@ 1> /dev/null
@mogrify -quiet -strip $@
preferences-desktop-peripherals.png: ../../../src/preferences-desktop-peripherals.svg
@echo " "$@
@inkscape -z $^ --export-area=303:142:335:174 -w=32 -h=32 -e=$@ 1> /dev/null
@mogrify -quiet -strip $@
preferences-desktop-personal.png: ../../../src/preferences-desktop-personal.svg
@echo " "$@
@inkscape -z $^ --export-area=303:142:335:174 -w=32 -h=32 -e=$@ 1> /dev/null
@mogrify -quiet -strip $@
preferences-other.png: ../../../src/preferences-other.svg
@echo " "$@
@inkscape -z $^ --export-area=303:142:335:174 -w=32 -h=32 -e=$@ 1> /dev/null
@mogrify -quiet -strip $@
preferences-system.png: ../../../src/preferences-system.svg
@echo " "$@
@inkscape -z $^ --export-area=303:142:335:174 -w=32 -h=32 -e=$@ 1> /dev/null
@mogrify -quiet -strip $@
preferences-system-network.png: ../../../src/computers.svg
@echo " "$@
@inkscape -z $^ --export-area=302:142:334:174 -w=32 -h=32 -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)
|