diff options
author | Uros Majstorovic <majstor@majstor.org> | 2024-05-11 13:11:19 +0200 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2024-05-11 13:11:19 +0200 |
commit | b3c62e6acc5761171822f522dc9d784558f9afbe (patch) | |
tree | c32a939d059c0a5e76a2fa88084511945fc78070 /ecp/test/Makefile | |
parent | 320d6a8f68d4f32081006cda86f2a2bbd79c3f71 (diff) |
fixed tests for no hashtable
Diffstat (limited to 'ecp/test/Makefile')
-rw-r--r-- | ecp/test/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ecp/test/Makefile b/ecp/test/Makefile index 56cc879..3e5effe 100644 --- a/ecp/test/Makefile +++ b/ecp/test/Makefile @@ -3,7 +3,10 @@ include $(src_dir)/ecp/common.mk CFLAGS += -I../util dep = ../build-posix/*.a ../util/libecputil.a -target = basic client server vc_inb vc_outb vcs vc_server vc_client +target = basic client server +ifeq ($(with_htable),yes) +target += vc_inb vc_outb vcs vc_server vc_client +endif %.o: %.c |