mirror of
https://github.com/devkitPro/buildscripts.git
synced 2026-03-22 01:54:32 -05:00
19 lines
582 B
Plaintext
19 lines
582 B
Plaintext
-include $(DEVKITARM)/base_rules
|
|
|
|
LIBMIRKO := $(DEVKITPRO)/libmirko
|
|
|
|
#---------------------------------------------------------------------------------
|
|
%.fxe: %.bin
|
|
@b2fxec -a "$(AUTHOR)" -t "$(TITLE)" $< $@
|
|
@echo built ... $(notdir $@)
|
|
|
|
#---------------------------------------------------------------------------------
|
|
%.bin: %.elf
|
|
@$(OBJCOPY) -O binary $< $@
|
|
@echo built ... $(notdir $@)
|
|
|
|
#---------------------------------------------------------------------------------
|
|
%.elf:
|
|
@echo linking binary
|
|
@$(LD) $(LDFLAGS) -specs=gp32.specs $(OFILES) $(LIBPATHS) $(LIBS) -o $@
|