summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorRevo <projectrevotpp@hotmail.com>2020-06-19 11:45:40 -0400
committerGitHub <noreply@github.com>2020-06-19 11:45:40 -0400
commit1c13e2f57b53b3e4e5f9daac42ec4baadbb4c60b (patch)
tree98d8d64bad4b8bb766e189ac65b22a5b6f8bb6ba /tools
parenta455bac566535ec559aac9164e05781093653057 (diff)
parentb133ba8cebc5c5dcd6a3aa4b427b65ab438811bb (diff)
Merge pull request #177 from PikalaxALT/pikalax_work
Cleanup; nutdata
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 $<