GodMode9i/bootstub/Makefile
2018-10-02 11:06:03 -06:00

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