software/*/Makefile: no need to copy .S files from CPU directory

Signed-off-by: Gabriel Somlo <gsomlo@gmail.com>
This commit is contained in:
Gabriel Somlo 2020-05-04 09:13:32 -04:00
parent 7f8e34c65d
commit edfed4f068
2 changed files with 0 additions and 3 deletions

View File

@ -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:

View File

@ -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