mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
software: libc: fix Makefile dependecies
Signed-off-by: Karol Gugala <kgugala@antmicro.com>
This commit is contained in:
parent
01a906add7
commit
d101ef7ed0
1 changed files with 2 additions and 2 deletions
|
@ -64,11 +64,11 @@ libc.a: cross.txt
|
|||
meson compile
|
||||
cp newlib/libc.a libc.a
|
||||
|
||||
stdio.c.o: $(LIBC_DIRECTORY)/stdio.c
|
||||
stdio.c.o: $(LIBC_DIRECTORY)/stdio.c libc.a
|
||||
$(compile)
|
||||
$(AR) csr libc.a $@
|
||||
|
||||
missing.c.o: $(LIBC_DIRECTORY)/missing.c
|
||||
missing.c.o: $(LIBC_DIRECTORY)/missing.c libc.a
|
||||
$(compile)
|
||||
$(AR) csr libc.a $@
|
||||
|
||||
|
|
Loading…
Reference in a new issue