mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-07-16 02:03:02 -07:00
20 lines
640 B
Text
20 lines
640 B
Text
-include $(DEVKITARM)/base_rules
|
|
|
|
PORTLIBS := $(PORTLIBS_PATH)/gp32 $(PORTLIBS_PATH)/armv4
|
|
|
|
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 $@
|