From 6d50a8bff1938a8d7f398275a886aca37d6f6a7c Mon Sep 17 00:00:00 2001 From: Uros Majstorovic Date: Tue, 14 May 2024 23:09:36 +0200 Subject: tests improved logging; add dir client test --- ecp/test/Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'ecp/test/Makefile') 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) -- cgit v1.2.3