blob: 4193edbb9336bd2f72e0d8bc81f53be9e50f8bae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
SVGFILES=${wildcard tastatur2d-svg/*.svg} ${wildcard tastatur3d-svg/*.svg}
PDFFILES=${addsuffix .pdf,${basename ${SVGFILES}}}
PNGFILES=${addsuffix .png,${basename ${SVGFILES}}}
pdf: ${PDFFILES}
png: ${PNGFILES}
clean: cleanpng cleanpdf
cleanpng:
rm -rf ${PNGFILES}
cleanpdf:
rm -rf ${PDFFILES}
%.pdf: %.svg
inkscape --export-pdf=$@ $<
%.png: %.svg
inkscape --export-png=$@ -w1000 $<
.PHONY: clean cleanpng cleanpdf pdf png
|