Revert agbcc dependency to pret master

This commit is contained in:
PikalaxALT
2020-01-15 11:32:24 -05:00
parent 411f4852c6
commit feeb96f20f
7 changed files with 37 additions and 23 deletions
+3 -4
View File
@@ -1,9 +1,8 @@
include $(DEVKITARM)/base_tools
COMPARE ?= 0
AS := ../tools/binutils/bin/arm-none-eabi-as
CPP := $(CC) -E
LD := ../tools/binutils/bin/arm-none-eabi-ld
OBJCOPY := ../tools/binutils/bin/arm-none-eabi-objcopy
LD := $(DEVKITARM)/bin/arm-none-eabi-ld
ifeq ($(OS),Windows_NT)
EXE := .exe
@@ -160,7 +159,7 @@ $(SONG_BUILDDIR)/%.o: $(SONG_SUBDIR)/%.s
$(AS) $(ASFLAGS) -I sound -o $@ $<
$(ELF): ld_script.txt $(OBJS)
cd $(OBJ_DIR) && ../$(LD) $(LDFLAGS) -T ../ld_script.txt -o ../$@
cd $(OBJ_DIR) && $(LD) $(LDFLAGS) -T ../ld_script.txt -o ../$@
$(ROM): $(ELF)
$(OBJCOPY) -O binary $< $@