summaryrefslogtreecommitdiff
path: root/ecp/test/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'ecp/test/Makefile')
-rw-r--r--ecp/test/Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/ecp/test/Makefile b/ecp/test/Makefile
index 3e5effe..3fc85d1 100644
--- a/ecp/test/Makefile
+++ b/ecp/test/Makefile
@@ -3,9 +3,9 @@ include $(src_dir)/ecp/common.mk
CFLAGS += -I../util
dep = ../build-posix/*.a ../util/libecputil.a
-target = basic client server
+target = basic client server dir
ifeq ($(with_htable),yes)
-target += vc_inb vc_outb vcs vc_server vc_client
+target += vcs vc_server vc_client vc_inb vc_outb
endif
@@ -23,6 +23,9 @@ client: client.o init.o $(dep)
server: server.o init.o $(dep)
$(CC) -o $@ $< init.o $(dep) $(LDFLAGS)
+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)