Makefile for generating symbols
authorDan White <dan@whiteaudio.com>
Sat, 21 Jan 2012 21:49:16 +0000 (15:49 -0600)
committerDan White <dan@whiteaudio.com>
Sat, 21 Jan 2012 21:49:16 +0000 (15:49 -0600)
Makefile [new file with mode: 0644]

diff --git a/Makefile b/Makefile
new file mode 100644 (file)
index 0000000..f985c68
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,9 @@
+
+
+DJSYMS=$(shell find . -name '*.dwboxsym')
+
+syms: $(DJSYMS:.dwboxsym=.sym)
+
+
+%.sym: %.dwboxsym
+       ./dwboxsym $< > $@