diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2020-06-18 17:22:32 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2020-06-18 17:22:32 -0400 |
commit | 0dc176b403ab5876664a59c666144690e417c87b (patch) | |
tree | e6fec561c6fe524d99373d9022cb0aca5f9263fe /tools | |
parent | c2ca3c0c4fc49a19554c202e45a990c61752e15d (diff) |
Deprecate baserom dependency
Diffstat (limited to 'tools')
-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 $< |