mirror of
https://github.com/rvtr/GodMode9i.git
synced 2025-06-18 10:55:31 -04:00
14 lines
283 B
Makefile
14 lines
283 B
Makefile
include $(DEVKITARM)/base_tools
|
|
|
|
TARGET := bootstub
|
|
|
|
../data/$(TARGET).bin: $(TARGET).elf
|
|
$(OBJCOPY) -O binary $< $@
|
|
|
|
$(TARGET).elf: $(TARGET).s Makefile
|
|
$(CC) -Wl,-Ttext=0 -x assembler-with-cpp -nostartfiles -nostdlib $(TARGET).s -o $@
|
|
|
|
|
|
clean:
|
|
rm -f $(TARGET).elf $(TARGET).bin
|