aboutsummaryrefslogtreecommitdiff
path: root/test/bin/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'test/bin/makefile')
-rw-r--r--test/bin/makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/bin/makefile b/test/bin/makefile
new file mode 100644
index 0000000..736f51b
--- /dev/null
+++ b/test/bin/makefile
@@ -0,0 +1,13 @@
+SRCS := $(wildcard *.bs)
+TARGETS := $(patsubst %.bs,%.bin, $(SRCS))
+
+.PHONY: all clean
+
+all: $(TARGETS)
+
+%.bin: %.bs
+ m4 bs.m4 < $< | xxd -r -p > $@
+
+clean:
+ $(RM) $(TARGETS)
+