diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2007-10-01 18:42:51 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2007-10-01 18:42:51 +0000 |
commit | bd6f74fda8fc7f86400260feeb0457da0fb6532a (patch) | |
tree | 378e6b99132a6a24ab2d59c342f53857cff546be /libgloss | |
parent | eae493d8a860ae720ade4ceabfb96b42859750d1 (diff) | |
download | newlib-bd6f74fda8fc7f86400260feeb0457da0fb6532a.zip newlib-bd6f74fda8fc7f86400260feeb0457da0fb6532a.tar.gz newlib-bd6f74fda8fc7f86400260feeb0457da0fb6532a.tar.bz2 |
2007-10-01 Markus Deuling <deuling@de.ibm.com>
* spu/Makefile.in: add dependencies for crt files.
Diffstat (limited to 'libgloss')
-rw-r--r-- | libgloss/ChangeLog | 4 | ||||
-rw-r--r-- | libgloss/spu/Makefile.in | 8 |
2 files changed, 8 insertions, 4 deletions
diff --git a/libgloss/ChangeLog b/libgloss/ChangeLog index b9fcadf..4f4d32c 100644 --- a/libgloss/ChangeLog +++ b/libgloss/ChangeLog @@ -1,3 +1,7 @@ +2007-10-01 Markus Deuling <deuling@de.ibm.com> + + * spu/Makefile.in: add dependencies for crt files. + 2007-10-01 Patrick Mansfield <patmans@us.ibm.com> * spu/sbrk.c: Use the current stack pointer value rather than the diff --git a/libgloss/spu/Makefile.in b/libgloss/spu/Makefile.in index 95cc912..86f9d47 100644 --- a/libgloss/spu/Makefile.in +++ b/libgloss/spu/Makefile.in @@ -121,16 +121,16 @@ libgloss.a: $(EVALOBJS) ${RANLIB} $@ # C Runtime Library startup code. -crti.o: +crti.o: $(srcdir)/crti.S $(CC) $(srcdir)/crti.S -c -o crti.o -crtn.o: +crtn.o: $(srcdir)/crtn.S $(CC) $(srcdir)/crtn.S -c -o crtn.o -crt1.o: +crt1.o: $(srcdir)/crt0.S $(CC) $(srcdir)/crt0.S -c -o crt1.o -crt2.o: +crt2.o: $(srcdir)/crt0.S $(CC) $(srcdir)/crt0.S -D_STD_MAIN -c -o crt2.o doc: |