From 3405180e97cd6b4d4bef6fed2a7e666eb8126906 Mon Sep 17 00:00:00 2001 From: Timo Dritschler Date: Fri, 25 Apr 2014 19:32:51 +0200 Subject: KIRO Server and Client now automatically exchange MRI on connect Added 'kiro_client_sync' that RDMA-READs the KIRO-TRB from the server Updated Makefile Updated test-client --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 4e39036..f0f272b 100644 --- a/Makefile +++ b/Makefile @@ -24,11 +24,11 @@ test: test-trb client server test-trb: kiro-trb.o test.c $(CC) $(CFLAGS) $(LDFLAGS) test.c kiro-trb.o -o test-trb -client: kiro-client.o test-client.c - $(CC) $(CFLAGS) $(LDFLAGS) test-client.c kiro-client.o -o client +client: kiro-client.o kiro-trb.o test-client.c + $(CC) $(CFLAGS) $(LDFLAGS) test-client.c kiro-client.o kiro-trb.o -o client -server: kiro-server.o test-server.c - $(CC) $(CFLAGS) $(LDFLAGS) test-server.c kiro-server.o -o server +server: kiro-server.o kiro-trb.o test-server.c + $(CC) $(CFLAGS) $(LDFLAGS) test-server.c kiro-server.o kiro-trb.o -o server .PHONY : clean -- cgit v1.2.3