mirror of
https://github.com/devkitPro/buildscripts.git
synced 2026-03-23 10:34:14 -05:00
11 lines
280 B
Plaintext
11 lines
280 B
Plaintext
-include $(DEVKITPPC)/base_rules
|
|
|
|
%.dol: %.elf
|
|
@echo output ... $(notdir $@)
|
|
@$(OBJCOPY) -O binary $< $@
|
|
|
|
#---------------------------------------------------------------------------------
|
|
%.elf:
|
|
@echo linking ... $(notdir $@)
|
|
@$(LD) $^ $(LDFLAGS) $(LIBPATHS) $(LIBS) -o $@
|