aboutsummaryrefslogtreecommitdiff
path: root/util/spd_tools/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'util/spd_tools/Makefile')
-rw-r--r--util/spd_tools/Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/util/spd_tools/Makefile b/util/spd_tools/Makefile
new file mode 100644
index 0000000000..8a9d3924a1
--- /dev/null
+++ b/util/spd_tools/Makefile
@@ -0,0 +1,11 @@
+SPD_GEN = bin/spd_gen
+
+all: $(SPD_GEN)
+
+$(SPD_GEN):
+ go build -o $(SPD_GEN) src/spd_gen/*.go
+
+clean:
+ rm -rf bin/
+
+.PHONY: all