Browse Source

Fix debug_rom.S build command error.

Previously gcc would complain that link.lds was mentioned twice (once on
the command line and once with a -T directive.)
pull/1056/head
Tim Newsome 4 years ago
parent
commit
c274695b20
  1. 2
      debug_rom/Makefile

2
debug_rom/Makefile

@ -18,7 +18,7 @@ all: $(patsubst %,%.h,$(ELFS))
$(OBJCOPY) -O binary --only-section .text $^ $@
debug_rom: $(DEPS)
$(COMPILE) -o $@ $^
$(COMPILE) -o $@ $<
clean:
rm -f $(ELFS) debug_rom*.raw debug_rom.h

Loading…
Cancel
Save