software/*/Makefile: no need to copy .S files from CPU directory
authorGabriel Somlo <gsomlo@gmail.com>
Mon, 4 May 2020 13:13:32 +0000 (09:13 -0400)
committerGabriel Somlo <gsomlo@gmail.com>
Mon, 4 May 2020 13:16:52 +0000 (09:16 -0400)
Signed-off-by: Gabriel Somlo <gsomlo@gmail.com>
litex/soc/software/bios/Makefile
litex/soc/software/libbase/Makefile

index e792ff6335de312fe5c0c33ee26735b61293c5a0..0369522e644feb3a6a476c77f6438c9cbcb09f38 100755 (executable)
@@ -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:
index e81a5316e238cc211d768976bc19bc6dafed91df..13680ad0e464aa45b813cdba7416b45d30b7f407 100755 (executable)
@@ -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