diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | Makefile.am | 16 |
2 files changed, 21 insertions, 1 deletions
@@ -1,3 +1,9 @@ +2008-02-16 Neal H. Walfield <neal@gnu.org> + + * Makefile.am (all-local): Depend on libc-stmp. + (libc-stmp): New target. Depend on libraries. + (SUBDIRS): Add . after libraries and before programs. + 2008-02-11 Neal H. Walfield <neal@gnu.org> * configure.ac: Generate hieronymus/Makefile. diff --git a/Makefile.am b/Makefile.am index dd281ef..e7e3b3a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -36,7 +36,21 @@ SUBDIRS = libl4 platform \ libhurd-slab \ libpthread \ libhurd-mm \ - libc-parts laden viengoos \ + libc-parts \ + . \ + laden viengoos \ ruth \ hieronymus \ doc + +all-local: libc-stmp +libc-stmp: @LIBC_A@ @LIBC_M@ \ + libhurd-mm/libhurd-mm.a \ + viengoos/libhurd-cap.a \ + libpthread/libpthread.a \ + libhurd-slab/libhurd-slab.a \ + libhurd-ihash/libhurd-ihash.a \ + libhurd-btree/libhurd-btree.a \ + libc-parts/libc-parts.a + touch libc-stmp libc.a + |