From 136464ce9448c43273422b1142642755c658e175 Mon Sep 17 00:00:00 2001 From: PikalaxALT Date: Fri, 4 Oct 2019 13:19:45 -0400 Subject: Update Makefile rules to correctly detect changes in berry fix mb --- tools/br_ips/Makefile | 3 +++ 1 file changed, 3 insertions(+) (limited to 'tools/br_ips') diff --git a/tools/br_ips/Makefile b/tools/br_ips/Makefile index e80e2576b..d4e8dcecc 100644 --- a/tools/br_ips/Makefile +++ b/tools/br_ips/Makefile @@ -1,7 +1,10 @@ CC := gcc CFLAGS := -O3 +.PHONY: all + all: br_ips ips_patch + @: clean: rm -f br_ips ips_patch br_ips.exe ips_patch.exe -- cgit v1.2.3 From 7e8bff29bb34a9a233172ef738f9fc7ce1a1b833 Mon Sep 17 00:00:00 2001 From: PikalaxALT Date: Fri, 4 Oct 2019 15:45:26 -0400 Subject: review comments; br_ips std=c99 --- tools/br_ips/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/br_ips') diff --git a/tools/br_ips/Makefile b/tools/br_ips/Makefile index d4e8dcecc..8b6ad51bf 100644 --- a/tools/br_ips/Makefile +++ b/tools/br_ips/Makefile @@ -1,5 +1,5 @@ CC := gcc -CFLAGS := -O3 +CFLAGS := -O3 -std=c99 .PHONY: all -- cgit v1.2.3