From: Gabriel Somlo Date: Mon, 4 May 2020 13:13:32 +0000 (-0400) Subject: software/*/Makefile: no need to copy .S files from CPU directory X-Git-Tag: 24jan2021_ls180~392^2 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=edfed4f068fdf87407e5addf53f900bb95ff94be;p=litex.git software/*/Makefile: no need to copy .S files from CPU directory Signed-off-by: Gabriel Somlo --- diff --git a/litex/soc/software/bios/Makefile b/litex/soc/software/bios/Makefile index e792ff63..0369522e 100755 --- a/litex/soc/software/bios/Makefile +++ b/litex/soc/software/bios/Makefile @@ -88,7 +88,6 @@ endif $(assemble) boot-helper.o: $(CPU_DIRECTORY)/boot-helper.S - cp $(CPU_DIRECTORY)/boot-helper.S $(BIOS_DIRECTORY)/boot-helper.S $(assemble) clean: diff --git a/litex/soc/software/libbase/Makefile b/litex/soc/software/libbase/Makefile index e81a5316..13680ad0 100755 --- a/litex/soc/software/libbase/Makefile +++ b/litex/soc/software/libbase/Makefile @@ -25,11 +25,9 @@ vsnprintf-nofloat.o: $(LIBBASE_DIRECTORY)/vsnprintf.c $(assemble) crt0-ctr.o: $(CPU_DIRECTORY)/crt0.S - cp $(CPU_DIRECTORY)/crt0.S $(LIBBASE_DIRECTORY)/crt0-crt.S $(assemble) crt0-xip.o: $(CPU_DIRECTORY)/crt0.S - cp $(CPU_DIRECTORY)/crt0.S $(LIBBASE_DIRECTORY)/crt0-xip.S $(CC) -c -DEXECUTE_IN_PLACE $(CFLAGS) -o $@ $< .PHONY: all clean