This is the mail archive of the newlib@sourceware.org mailing list for the newlib project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] SPU add some missing dependencies to the spu Makefile


Add some missing dependencies to the Makefile.

libgloss ChangeLog:

2007-09-06 Markus Deuling <deuling@de.ibm.com>

	* spu/Makefile.in: add dependencies for crt files.

Index: push-sdk3-patches-quilt-base/libgloss/spu/Makefile.in
===================================================================
--- push-sdk3-patches-quilt-base.orig/libgloss/spu/Makefile.in
+++ push-sdk3-patches-quilt-base/libgloss/spu/Makefile.in
@@ -119,16 +119,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:	


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]