diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2015-12-30 01:40:22 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2015-12-30 01:46:04 +0100 |
commit | 2c414dc400729160ec4d2004c60470ce59ad9008 (patch) | |
tree | 0740e8f99fb8d4af36f3cea16c45ddf78ed6bcf8 /trans | |
parent | 4d06239d39f8433a7246abae5645e9ad54cca1bb (diff) |
Add missing libraries to fix link errors
This fixes several linking problems I had in my recent cross-compilation
of the Hurd. I added missing static libraries and also organized some of
the targets for more concise rules.
* console-client/Makefile: Add libiohelp.a and libihash.a.
* daemons/Makefile: Add libihash.a and libshouldbeinlibc.a.
* devnode/Makefile: Add iohelp and ihash to HURDLIBS.
* random/Makefile: Likewise.
* trans/Makefile: Reorder targets alphabetically and add libiohelp.a and
libihash.a.
* utils/Makefile: Add libihash.a.
Diffstat (limited to 'trans')
-rw-r--r-- | trans/Makefile | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/trans/Makefile b/trans/Makefile index ce1eae7a..2fdcd38b 100644 --- a/trans/Makefile +++ b/trans/Makefile @@ -55,22 +55,21 @@ include ../Makeconf vpath elfcore.c $(top_srcdir)/exec -symlink: fsysServer.o -ifsock: ifsockServer.o crash: crashServer.o crash_replyUser.o msgServer.o elfcore.o +ifsock: ifsockServer.o +mtab: fsUser.o password: passwordServer.o -streamio: device_replyServer.o proxy-defpager: default_pagerServer.o default_pagerUser.o +streamio: device_replyServer.o +symlink: fsysServer.o -proxy-defpager crash password streamio: ../libports/libports.a ../libtrivfs/libtrivfs.a ../libfshelp/libfshelp.a +fakeroot: ../libnetfs/libnetfs.a fifo new-fifo: ../libpipe/libpipe.a -fwd: ../libfshelp/libfshelp.a ../libports/libports.a -hello-mt magic null ifsock fifo new-fifo firmlink: ../libtrivfs/libtrivfs.a ../libfshelp/libfshelp.a ../libports/libports.a ../libihash/libihash.a -magic: ../libiohelp/libiohelp.a -hello: ../libtrivfs/libtrivfs.a ../libfshelp/libfshelp.a ../libports/libports.a ../libihash/libihash.a -fakeroot: ../libnetfs/libnetfs.a ../libfshelp/libfshelp.a ../libiohelp/libiohelp.a ../libports/libports.a ../libihash/libihash.a -remap: ../libtrivfs/libtrivfs.a ../libfshelp/libfshelp.a ../libports/libports.a ../libihash/libihash.a -mtab: ../libtrivfs/libtrivfs.a ../libfshelp/libfshelp.a ../libports/libports.a ../libihash/libihash.a fsUser.o -$(targets): ../libshouldbeinlibc/libshouldbeinlibc.a +crash fifo firmlink hello hello-mt ifsock magic mtab new-fifo null password proxy-defpager remap streamio: ../libtrivfs/libtrivfs.a +$(targets): ../libfshelp/libfshelp.a \ + ../libihash/libihash.a \ + ../libiohelp/libiohelp.a \ + ../libports/libports.a \ + ../libshouldbeinlibc/libshouldbeinlibc.a $(targets): %: %.o |