Merge pull request #496 from gsomlo/gls-fix-makefiles

software/*/Makefile: no need to copy .S files from CPU directory
This commit is contained in:
enjoy-digital 2020-05-04 15:29:05 +02:00 committed by GitHub
commit 6f24d46dbd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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