diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2019-10-04 13:19:45 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2019-10-04 13:28:48 -0400 |
commit | 136464ce9448c43273422b1142642755c658e175 (patch) | |
tree | 9782376df6e75acf7196514278f4ccd0706d1236 /tools | |
parent | 1f6f5f369bcb2ab28d0fb73b358d075fdc195ba5 (diff) |
Update Makefile rules to correctly detect changes in berry fix mb
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/asmdiff.sh | 7 | ||||
-rw-r--r-- | tools/br_ips/Makefile | 3 |
2 files changed, 3 insertions, 7 deletions
diff --git a/tools/asmdiff.sh b/tools/asmdiff.sh deleted file mode 100755 index a8114dc4f..000000000 --- a/tools/asmdiff.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/bash - -OBJDUMP="./tools/binutils/bin/arm-none-eabi-objdump -D -bbinary -marmv4t -Mforce-thumb" -OPTIONS="--start-address=$1 --stop-address=$2" -$OBJDUMP $OPTIONS baserom.gba > baserom.dump -$OBJDUMP $OPTIONS pokefirered.gba > pokefirered.dump -diff -u baserom.dump pokefirered.dump 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 |