From 1cad97031b2243de6c848868cc3b777810acbf29 Mon Sep 17 00:00:00 2001 From: jcli Date: Wed, 22 Feb 2017 17:54:25 -0800 Subject: [PATCH] added dial client debug --- client/makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/client/makefile b/client/makefile index f019419..923e5e1 100644 --- a/client/makefile +++ b/client/makefile @@ -10,5 +10,8 @@ OBJS := main.cpp DialServer.cpp DialDiscovery.cpp DialConformance.cpp DialClient dialclient: $(OBJS) ${includes} $(CC) -Wall -Werror -g $(OBJS) $(INCLUDES) $(LDFLAGS) -ldl -lpthread -lcurl -lz -lcrypto -lssl -lcares -o dialclient +dialclient_debug: $(OBJS) ${includes} + $(CC) -DDEBUG -Wall -Werror -g $(OBJS) $(INCLUDES) $(LDFLAGS) -ldl -lpthread -lcurl -lz -lcrypto -lssl -lcares -o dialclient + clean: rm -f *.o dialclient