From 109f39e09630409a30a9f4e8183f539c499f07ba Mon Sep 17 00:00:00 2001 From: Uros Majstorovic Date: Mon, 3 Jun 2024 04:06:21 +0200 Subject: improved (v)conn init / open / init vlink / open vlink API; implemented randezvous hashing --- ecp/test/Makefile | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'ecp/test/Makefile') diff --git a/ecp/test/Makefile b/ecp/test/Makefile index 3fc85d1..44ac16a 100644 --- a/ecp/test/Makefile +++ b/ecp/test/Makefile @@ -4,8 +4,10 @@ CFLAGS += -I../util dep = ../build-posix/*.a ../util/libecputil.a target = basic client server dir +ifeq ($(with_vconn),yes) ifeq ($(with_htable),yes) -target += vcs vc_server vc_client vc_inb vc_outb +target += vcs vc_server vc_client vconn_inb vconn_outb +endif endif @@ -26,11 +28,11 @@ server: server.o init.o $(dep) dir: dir.o $(dep) $(CC) -o $@ $< init.o $(dep) $(LDFLAGS) -vc_inb: vc_inb.o vc_common.o init_vconn.o $(dep) - $(CC) -o $@ $< vc_common.o init_vconn.o $(dep) $(LDFLAGS) +vconn_inb: vconn_inb.o init_vconn.o $(dep) + $(CC) -o $@ $< init_vconn.o $(dep) $(LDFLAGS) -vc_outb: vc_outb.o vc_common.o init_vconn.o $(dep) - $(CC) -o $@ $< vc_common.o init_vconn.o $(dep) $(LDFLAGS) +vconn_outb: vconn_outb.o init_vconn.o $(dep) + $(CC) -o $@ $< init_vconn.o $(dep) $(LDFLAGS) vcs: vcs.o init_vconn.o $(dep) $(CC) -o $@ $< init_vconn.o $(dep) $(LDFLAGS) -- cgit v1.2.3