summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 7 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 17578a1..be93aa3 100644
--- a/Makefile
+++ b/Makefile
@@ -22,7 +22,7 @@
dir := reincarnation
makemode := servers
-SRCS = reincarnation.c persistent-hello.c lib.c stubs.c
+SRCS = reincarnation.c stubs.c lib.c persistent-hello.c pong.c ping.c
OBJS = $(SRCS:.c=.o) \
notifyServer.o \
reincarnationServer.o \
@@ -30,8 +30,10 @@ OBJS = $(SRCS:.c=.o) \
fsysServer.o \
fsys_proxy.o \
fsys_requestUser.o \
+ pongServer.o \
+ pongUser.o \
-targets = reincarnation persistent-hello
+targets = reincarnation persistent-hello pong ping
HURDLIBS = fshelp trivfs ihash shouldbeinlibc
include ../Makeconf
@@ -42,4 +44,7 @@ reincarnation: stubs.o notifyServer.o reincarnationServer.o \
../libfshelp/libfshelp.a
persistent-hello: reincarnationUser.o ../libtrivfs/libtrivfs.a ../libfshelp/libfshelp.a ../libports/libports.a ../libihash/libihash.a
+pong: reincarnationUser.o fsysServer.o pongServer.o
+ping: reincarnationUser.o pongUser.o
+
$(targets): %: %.o lib.o