From c274695b204ce271d0fa272c8b8ff4d02b55f709 Mon Sep 17 00:00:00 2001 From: Tim Newsome Date: Sat, 30 Jul 2022 10:22:47 -0700 Subject: 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.) --- debug_rom/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'debug_rom/Makefile') diff --git a/debug_rom/Makefile b/debug_rom/Makefile index c5f2205..d6546e9 100644 --- a/debug_rom/Makefile +++ b/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 -- cgit v1.1