summaryrefslogtreecommitdiff
path: root/trans/Makefile
diff options
context:
space:
mode:
authorMarcus Brinkmann <marcus@gnu.org>2001-01-14 20:44:27 +0000
committerMarcus Brinkmann <marcus@gnu.org>2001-01-14 20:44:27 +0000
commitb74efb6d5b6e70a704a38b562ba4d38412c2517e (patch)
tree07d848c5c7d73c3101bc50ec63335dc91d1ef8ac /trans/Makefile
parent09f0303ad853f31f06397a1faec7d9cb5e543390 (diff)
trans/
2001-01-13 Marcus Brinkmann <marcus@gnu.org> * Makefile (SRCS): Add streamio.c (streamio): Add dependency on device_replyServer.o. Other dependencies identical to those for crash and password. (OBJS): Add missing object files to list (crashServer.o crash_replyUser.o msgServer.o device_replyServer.o). * storeio.c: New file by OKUJI Yoshinori. sutils/ 2001-01-14 Marcus Brinkmann <marcus@gnu.org> * MAKEDEV.sh (mkdev: klog): New device, using /hurd/streamio kmsg. (mkdev: std): Add klog to the standard list.
Diffstat (limited to 'trans/Makefile')
-rw-r--r--trans/Makefile13
1 files changed, 8 insertions, 5 deletions
diff --git a/trans/Makefile b/trans/Makefile
index 03c48f36..74d0cc78 100644
--- a/trans/Makefile
+++ b/trans/Makefile
@@ -1,5 +1,5 @@
#
-# Copyright (C) 1994,95,96,97,99,2000 Free Software Foundation, Inc.
+# Copyright (C) 1994,95,96,97,99,2000,2001 Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
@@ -19,10 +19,12 @@ dir := trans
makemode := servers
targets = symlink firmlink ifsock magic null fifo new-fifo fwd crash \
- password hello hello-mt
+ password hello hello-mt streamio
SRCS = ifsock.c symlink.c magic.c null.c fifo.c new-fifo.c fwd.c \
- crash.c firmlink.c password.c hello.c hello-mt.c
-OBJS = $(SRCS:.c=.o) fsysServer.o ifsockServer.o passwordServer.o
+ crash.c firmlink.c password.c hello.c hello-mt.c streamio.c
+OBJS = $(SRCS:.c=.o) fsysServer.o ifsockServer.o passwordServer.o \
+ crashServer.o crash_replyUser.o msgServer.o \
+ device_replyServer.o
HURDLIBS = threads ports trivfs fshelp pipe ihash shouldbeinlibc
password-LDLIBS = $(LIBCRYPT)
@@ -32,8 +34,9 @@ symlink: fsysServer.o
ifsock: ifsockServer.o
crash: crashServer.o crash_replyUser.o msgServer.o
password: passwordServer.o
+streamio: device_replyServer.o
-crash password: ../libthreads/libthreads.a ../libports/libports.a ../libtrivfs/libtrivfs.a ../libthreads/libthreads.a ../libfshelp/libfshelp.a
+crash password streamio: ../libthreads/libthreads.a ../libports/libports.a ../libtrivfs/libtrivfs.a ../libthreads/libthreads.a ../libfshelp/libfshelp.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 ../libthreads/libthreads.a ../libports/libports.a ../libihash/libihash.a