diff options
author | Roland McGrath <roland@gnu.org> | 1999-11-08 21:40:16 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1999-11-08 21:40:16 +0000 |
commit | 13e0b31d20df9bb7995cf1c1893363a7cd5d34c7 (patch) | |
tree | 6bcdadf245d2a10a727257dc49aca6a01e75ca5f /trans | |
parent | 04f3af9f69eff10d0d036c325aa31068793f156a (diff) |
1999-11-08 Roland McGrath <roland@baalperazim.frob.com>
* hello-mt.c: New file, modified from hello.c to be multithreaded.
* Makefile (targets, SRCS): Add hello-mt, hello-mt.c.
(hello-mt): Add appropriate deps.
* Makefile (hello): Don't depend on libthreads.
Diffstat (limited to 'trans')
-rw-r--r-- | trans/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/trans/Makefile b/trans/Makefile index 14091d72..ad7a3a4a 100644 --- a/trans/Makefile +++ b/trans/Makefile @@ -19,9 +19,9 @@ dir := trans makemode := servers targets = symlink firmlink ifsock magic null fifo new-fifo fwd crash \ - password hello + password hello hello-mt SRCS = ifsock.c symlink.c magic.c null.c fifo.c new-fifo.c fwd.c \ - crash.c firmlink.c password.c hello.c + crash.c firmlink.c password.c hello.c hello-mt.c OBJS = $(SRCS:.c=.o) fsysServer.o ifsockServer.o passwordServer.o HURDLIBS=ports trivfs threads fshelp pipe ihash shouldbeinlibc password-LDLIBS = $(LIBCRYPT) @@ -36,8 +36,8 @@ password: passwordServer.o crash password: ../libports/libports.a ../libtrivfs/libtrivfs.a ../libthreads/libthreads.a ../libfshelp/libfshelp.a fifo new-fifo: ../libpipe/libpipe.a fwd new-fifo: ../libfshelp/libfshelp.a ../libports/libports.a -hello magic null ifsock fifo new-fifo firmlink: ../libtrivfs/libtrivfs.a ../libfshelp/libfshelp.a ../libports/libports.a ../libihash/libihash.a +hello-mt hello magic null ifsock fifo new-fifo firmlink: ../libtrivfs/libtrivfs.a ../libfshelp/libfshelp.a ../libports/libports.a ../libihash/libihash.a $(targets): ../libshouldbeinlibc/libshouldbeinlibc.a -hello magic fwd null ifsock fifo new-fifo firmlink: ../libthreads/libthreads.a +hello-mt magic fwd null ifsock fifo new-fifo firmlink: ../libthreads/libthreads.a $(targets): %: %.o |