aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 2b265e78ad616234ff3b27408143187ad1aebb70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
BUILDDIR = build
SRCDIR = src


PNG_TARGETS = $(patsubst $(SRCDIR)/%-source.svg,$(BUILDDIR)/%.png,$(wildcard $(SRCDIR)/*-source.svg))

.PHONY: all clean
all: $(PNG_TARGETS)

$(BUILDDIR)/%.png: $(SRCDIR)/%-source.svg
	mkdir -p ${BUILDDIR}
	inkscape $< -i layer3 -j -C -e $@ -w 181 -h 209 -y 0

clean:
	rm -f ${BUILDDIR}/*.png ${BUILDDIR}/*.svg