summaryrefslogtreecommitdiff
path: root/Makefile
blob: fc2b303eb0724fc132dfa5eba8837eb2a57dd55f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
all: horns-maroon-path.svg
all: horns-gold-path.svg
all: horns-black-path.svg

maroon = 8a181a
gold   = e5b217
black  = 000000

horns-%-text.svg: horns-text.svg.in
	sed 's|@COLOR@|$($*)|g' < $< > $@

%-path.svg: %-text.svg
	inkscape --file=$< --export-text-to-path --export-plain-svg=$@

clean:
	rm -f -- *.svg

.PHONY: all clean
.SECONDARY:
.DELETE_ON_ERROR: