summaryrefslogtreecommitdiff
path: root/tools/csv2bin/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tools/csv2bin/Makefile')
-rw-r--r--tools/csv2bin/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/csv2bin/Makefile b/tools/csv2bin/Makefile
new file mode 100644
index 00000000..818e6579
--- /dev/null
+++ b/tools/csv2bin/Makefile
@@ -0,0 +1,13 @@
+CC = gcc
+CFLAGS = -O3
+
+.PHONY: all clean
+
+all: csv2bin $(growth_rates_bin)
+ @:
+
+clean:
+ $(RM) csv2bin
+
+csv2bin: csv2bin.c
+ $(CC) $(CFLAGS) -o $@ $^