diff options
author | Timo Dritschler <timo.dritschler@kit.edu> | 2014-04-25 19:32:51 +0200 |
---|---|---|
committer | Timo Dritschler <timo.dritschler@kit.edu> | 2014-04-25 19:37:54 +0200 |
commit | 3405180e97cd6b4d4bef6fed2a7e666eb8126906 (patch) | |
tree | 0424d46f5a14c57686fecc8b46ad133f3e7ec5b8 /Makefile | |
parent | 2b5ad5dfa5baa9a243051022510600fd8a82fd20 (diff) | |
download | kiro-3405180e97cd6b4d4bef6fed2a7e666eb8126906.tar.gz kiro-3405180e97cd6b4d4bef6fed2a7e666eb8126906.tar.bz2 kiro-3405180e97cd6b4d4bef6fed2a7e666eb8126906.tar.xz kiro-3405180e97cd6b4d4bef6fed2a7e666eb8126906.zip |
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
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 |