summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/csv2bin/Makefile8
1 files changed, 1 insertions, 7 deletions
diff --git a/tools/csv2bin/Makefile b/tools/csv2bin/Makefile
index 949ec4e4..818e6579 100644
--- a/tools/csv2bin/Makefile
+++ b/tools/csv2bin/Makefile
@@ -1,19 +1,13 @@
CC = gcc
CFLAGS = -O3
-growth_rates_txt = $(wildcard *.txt)
-growth_rates_bin = $(growth_rates_txt:%.txt=%.bin)
-
.PHONY: all clean
all: csv2bin $(growth_rates_bin)
@:
clean:
- $(RM) csv2bin $(growth_rates_bin)
+ $(RM) csv2bin
csv2bin: csv2bin.c
$(CC) $(CFLAGS) -o $@ $^
-
-%.bin: %.txt
- ./csv2bin $<