summaryrefslogtreecommitdiff
path: root/ecp/test/Makefile
diff options
context:
space:
mode:
authorUros Majstorovic <majstor@majstor.org>2024-05-14 23:09:36 +0200
committerUros Majstorovic <majstor@majstor.org>2024-05-14 23:09:36 +0200
commit6d50a8bff1938a8d7f398275a886aca37d6f6a7c (patch)
tree9a292e5c35b509bd0f4eda52d995ab37edf90590 /ecp/test/Makefile
parent5769607dabd338973110d0ecd51b3d61f5f305ff (diff)
tests improved logging; add dir client test
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)