blob: 72a44fd61b6c53c152efc17a6560c64830bdc61b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
icons = \
boobaloo-Soaring-Eagle.png \
embedded-systems.png \
zip.png \
1297948317.png
.SUFFIXES:
.SUFFIXES: .svg .png
all: $(icons)
clean:
rm -f $(icons)
.svg.png:
inkscape -e $@ -w 128 -h 128 $<
|