diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2013-07-30 11:59:13 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-09-15 23:13:28 +0200 |
commit | 9df906ee4f34cf54c9ba253d44abb74b0ef63fe1 (patch) | |
tree | f057fa6fedbffa17b2d1a6f4e43a58f2bb612b49 /libfshelp/Makefile | |
parent | 2ea00da3929b9b50c3860914249b3ea7691b63c8 (diff) |
libfshelp: add translator-list.c
Add functions that maintain a list of active translators.
* libfshelp/translator-list.c: New file.
* libfshelp/fshelp.h: Add function declarations.
* libfshelp/Makefile: Add translator-list.c, link against libihash.
Diffstat (limited to 'libfshelp/Makefile')
-rw-r--r-- | libfshelp/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libfshelp/Makefile b/libfshelp/Makefile index 4de38372..6ba6a14f 100644 --- a/libfshelp/Makefile +++ b/libfshelp/Makefile @@ -20,6 +20,7 @@ makemode := library libname = libfshelp SRCS = lock-acquire.c lock-init.c \ + translator-list.c \ start-translator-long.c start-translator.c \ fetch-root.c transbox-init.c set-active.c fetch-control.c \ drop-transbox.c translated.c \ @@ -32,7 +33,7 @@ SRCS = lock-acquire.c lock-init.c \ touch.c installhdrs = fshelp.h -HURDLIBS = shouldbeinlibc iohelp ports +HURDLIBS = shouldbeinlibc iohelp ports ihash LDLIBS += -lpthread OBJS = $(subst .c,.o,$(SRCS)) |