mirror of
https://github.com/devkitPro/buildscripts.git
synced 2026-03-26 20:05:04 -05:00
20 lines
615 B
Plaintext
20 lines
615 B
Plaintext
-include $(DEVKITARM)/base_rules
|
|
|
|
LIBGBA := $(DEVKITPRO)/libgba
|
|
|
|
#---------------------------------------------------------------------------------
|
|
%.gba: %.elf
|
|
@$(OBJCOPY) -O binary $< $@
|
|
@echo built ... $(notdir $@)
|
|
@gbafix $@
|
|
|
|
#---------------------------------------------------------------------------------
|
|
%_mb.elf:
|
|
@echo linking multiboot
|
|
@$(LD) -specs=gba_mb.specs $(LDFLAGS) $(OFILES) $(LIBPATHS) $(LIBS) -o $@
|
|
|
|
#---------------------------------------------------------------------------------
|
|
%.elf:
|
|
@echo linking cartridge
|
|
@$(LD) $(LDFLAGS) -specs=gba.specs $(OFILES) $(LIBPATHS) $(LIBS) -o $@
|