From 0dc176b403ab5876664a59c666144690e417c87b Mon Sep 17 00:00:00 2001 From: PikalaxALT Date: Thu, 18 Jun 2020 17:22:32 -0400 Subject: Deprecate baserom dependency --- tools/csv2bin/Makefile | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'tools/csv2bin') 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 $< -- cgit v1.2.3