From bad5ce8ac7eaeaf1161d2577d8a7b92d166e6764 Mon Sep 17 00:00:00 2001 From: Justus Winter <4winter@informatik.uni-hamburg.de> Date: Sun, 4 Aug 2013 18:09:31 +0200 Subject: Add pong server and client --- Makefile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'Makefile') 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 -- cgit v1.2.3