From 22095f23f61d8002007ba7f0329855d5a8294036 Mon Sep 17 00:00:00 2001 From: Willem Toorop Date: Fri, 17 Jun 2016 16:37:41 +0200 Subject: [PATCH] Bugfix: cannot override targets in Makefile --- src/test/Makefile.in | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/test/Makefile.in b/src/test/Makefile.in index 36f1c11f..45889a03 100644 --- a/src/test/Makefile.in +++ b/src/test/Makefile.in @@ -66,13 +66,14 @@ CHECK_CFLAGS=@CHECK_CFLAGS@ CHECK_OBJS=check_getdns_common.lo check_getdns_context_set_timeout.lo \ check_getdns.lo check_getdns_transport.lo -DECOMPOSED_OBJS=getdns_str2dict.lo jsmn.lo getdns_context_config.lo +DECOMPOSED_OBJS_WITHOUT_JSMN=getdns_str2dict.lo getdns_context_config.lo +DECOMPOSED_OBJS=$(DECOMPOSED_OBJS_WITHOUT_JSMN) jsmn.lo ALL_OBJS=$(CHECK_OBJS) check_getdns_libevent.lo check_getdns_libev.lo \ check_getdns_selectloop.lo getdns_query.lo scratchpad.lo \ testmessages.lo tests_dict.lo tests_list.lo tests_namespaces.lo \ tests_stub_async.lo tests_stub_sync.lo \ - $(DECOMPOSED_OBJS) + $(DECOMPOSED_OBJS_WITHOUT_JSMN) NON_C99_OBJS=check_getdns_libuv.lo