diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-25 15:11:42 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-25 15:11:42 +0000 |
commit | 034b372c2b9a521d42fd177ee29ff8e1ecf141c4 (patch) | |
tree | 67a64b1aa85d0701a653e2d47eb272c17eae780d | |
parent | 8f33ced1a89ec6aec20f07baa23659859982c9ff (diff) |
Include libc's Makefile.in last to catch all the objects included by others that go into libc
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index b79fb0c6e..2011d3771 100644 --- a/Makefile.in +++ b/Makefile.in @@ -22,7 +22,6 @@ all: pregen libs -include .config.cmd include $(top_srcdir)ldso/Makefile.in -include $(top_srcdir)libc/Makefile.in include $(top_srcdir)libcrypt/Makefile.in include $(top_srcdir)libintl/Makefile.in include $(top_srcdir)libm/Makefile.in @@ -32,6 +31,9 @@ include $(top_srcdir)librt/Makefile.in include $(top_srcdir)libutil/Makefile.in include $(top_srcdir)libpthread/Makefile.in +# last included to catch all the objects added by others (locales/threads) +include $(top_srcdir)libc/Makefile.in + include/bits/uClibc_config.h: .config $(RM) -r include/bits $(INSTALL) -d include/bits |