mirror of
https://github.com/devkitPro/buildscripts.git
synced 2026-03-23 18:44:19 -05:00
24 lines
682 B
Plaintext
24 lines
682 B
Plaintext
-include $(DEVKITARM)/base_rules
|
|
|
|
LIBNDS := $(DEVKITPRO)/libnds
|
|
|
|
#---------------------------------------------------------------------------------
|
|
%.ds.gba: %.nds
|
|
@dsbuild $<
|
|
@echo built ... $(notdir $@)
|
|
|
|
#---------------------------------------------------------------------------------
|
|
%.nds: %.bin
|
|
@ndstool -c $@ -9 $<
|
|
@echo built ... $(notdir $@)
|
|
|
|
#---------------------------------------------------------------------------------
|
|
%.bin: %.elf
|
|
@$(OBJCOPY) -O binary $< $@
|
|
@echo built ... $(notdir $@)
|
|
|
|
#---------------------------------------------------------------------------------
|
|
%.elf:
|
|
@echo linking binary
|
|
@$(LD) $(LDFLAGS) $(OFILES) $(LIBPATHS) $(LIBS) -o $@
|