summaryrefslogtreecommitdiff
path: root/trans/Makefile
diff options
context:
space:
mode:
authorThomas Bushnell <thomas@gnu.org>1999-04-26 01:40:32 +0000
committerThomas Bushnell <thomas@gnu.org>1999-04-26 01:40:32 +0000
commitba43ec407a7377814ae923c6c3d3c358edbd1f35 (patch)
tree7d401a3ebc13032af111c2918df6700b2627d657 /trans/Makefile
parent6ac4feb602d86010c815100e2b02a8ec60d01929 (diff)
1999-02-20 Mark Kettenis <kettenis@gnu.org>
* password.c: New file. * Makefile (targets): Add password. (SRCS): Add password.c. (OBJS): Add passwordServer.o. (password-LDLIBS): New variable. Use dependencies identical to those for crash.
Diffstat (limited to 'trans/Makefile')
-rw-r--r--trans/Makefile10
1 files changed, 6 insertions, 4 deletions
diff --git a/trans/Makefile b/trans/Makefile
index e383a29d..e698f7ae 100644
--- a/trans/Makefile
+++ b/trans/Makefile
@@ -18,19 +18,21 @@
dir := trans
makemode := servers
-targets = symlink firmlink ifsock magic null fifo new-fifo fwd crash
+targets = symlink firmlink ifsock magic null fifo new-fifo fwd crash password
SRCS = ifsock.c symlink.c magic.c null.c fifo.c new-fifo.c fwd.c \
- crash.c firmlink.c
-OBJS = $(SRCS:.c=.o) fsysServer.o ifsockServer.o
+ crash.c firmlink.c password.c
+OBJS = $(SRCS:.c=.o) fsysServer.o ifsockServer.o passwordServer.o
HURDLIBS=ports trivfs threads fshelp pipe ihash shouldbeinlibc
+password-LDLIBS = $(LIBCRYPT)
include ../Makeconf
symlink magic: fsysServer.o
ifsock: ifsockServer.o
crash: crashServer.o crash_replyUser.o msgServer.o
+password: passwordServer.o
-crash: ../libports/libports.a ../libtrivfs/libtrivfs.a ../libthreads/libthreads.a ../libfshelp/libfshelp.a
+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
null ifsock fifo new-fifo firmlink: ../libtrivfs/libtrivfs.a ../libfshelp/libfshelp.a ../libports/libports.a ../libihash/libihash.a