software/*/Makefile: no need to copy .S files from CPU directory
Signed-off-by: Gabriel Somlo <gsomlo@gmail.com>
This commit is contained in:
parent
7f8e34c65d
commit
edfed4f068
|
@ -88,7 +88,6 @@ endif
|
||||||
$(assemble)
|
$(assemble)
|
||||||
|
|
||||||
boot-helper.o: $(CPU_DIRECTORY)/boot-helper.S
|
boot-helper.o: $(CPU_DIRECTORY)/boot-helper.S
|
||||||
cp $(CPU_DIRECTORY)/boot-helper.S $(BIOS_DIRECTORY)/boot-helper.S
|
|
||||||
$(assemble)
|
$(assemble)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
|
|
|
@ -25,11 +25,9 @@ vsnprintf-nofloat.o: $(LIBBASE_DIRECTORY)/vsnprintf.c
|
||||||
$(assemble)
|
$(assemble)
|
||||||
|
|
||||||
crt0-ctr.o: $(CPU_DIRECTORY)/crt0.S
|
crt0-ctr.o: $(CPU_DIRECTORY)/crt0.S
|
||||||
cp $(CPU_DIRECTORY)/crt0.S $(LIBBASE_DIRECTORY)/crt0-crt.S
|
|
||||||
$(assemble)
|
$(assemble)
|
||||||
|
|
||||||
crt0-xip.o: $(CPU_DIRECTORY)/crt0.S
|
crt0-xip.o: $(CPU_DIRECTORY)/crt0.S
|
||||||
cp $(CPU_DIRECTORY)/crt0.S $(LIBBASE_DIRECTORY)/crt0-xip.S
|
|
||||||
$(CC) -c -DEXECUTE_IN_PLACE $(CFLAGS) -o $@ $<
|
$(CC) -c -DEXECUTE_IN_PLACE $(CFLAGS) -o $@ $<
|
||||||
|
|
||||||
.PHONY: all clean
|
.PHONY: all clean
|
||||||
|
|
Loading…
Reference in New Issue