diff options
author | Cleverking2003 <30466983+Cleverking2003@users.noreply.github.com> | 2020-06-19 22:27:30 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-19 22:27:30 +0300 |
commit | 53ac396de4098e38a6916e0cc86cbd278a960c4c (patch) | |
tree | dd12868357a74ca72794fc23a1dc90beaba4cf5e /tools/csv2bin | |
parent | 41317a2b7625919ebba39c06b5aaf9e3b0800b1d (diff) | |
parent | 12c17948602bf14535c91c530f214b99863e038e (diff) |
Merge branch 'master' into master
Diffstat (limited to 'tools/csv2bin')
-rw-r--r-- | tools/csv2bin/Makefile | 8 |
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 $< |