summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorYamaArashi <shadow962@live.com>2016-04-22 20:44:21 -0700
committerYamaArashi <shadow962@live.com>2016-04-22 20:44:21 -0700
commit000e34c6f29655aa20034e390e4e2a6c1f7a1258 (patch)
tree692b7fe5bde75980955b7d1489c9f22e8c04be13 /Makefile
parent0df6676bfccb1d68aa741997702d2a558110d322 (diff)
use standard GNU binutils
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 8c36fb831..6043e0b7d 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-AS := pokeas
+AS := arm-none-eabi-as
ASFLAGS := -mcpu=arm7tdmi
CC := gbacc
@@ -88,5 +88,5 @@ $(DATA_ASM_OBJS): %.o: %.s $$(dep)
# Link objects to produce the ROM.
$(ROM): $(OBJS)
- ./pokeld -T ld_script.txt -T iwram_syms.txt -T ewram_syms.txt -o $(ELF) $(OBJS)
- ./pokeobjcopy -O binary $(ELF) $(ROM)
+ arm-none-eabi-ld -T ld_script.txt -T iwram_syms.txt -T ewram_syms.txt -o $(ELF) $(OBJS)
+ arm-none-eabi-objcopy -O binary $(ELF) $(ROM)