summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..fc2b303
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,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: