From 9436d21eef11fe83cb3b1e7a996f3d8fbb101636 Mon Sep 17 00:00:00 2001 From: jcli Date: Wed, 22 Feb 2017 17:58:27 -0800 Subject: [PATCH] compile the debug target --- client/makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/makefile b/client/makefile index 923e5e1..29e9131 100644 --- a/client/makefile +++ b/client/makefile @@ -11,7 +11,7 @@ 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 + $(CC) -DDEBUG -Wall -Werror -g $(OBJS) $(INCLUDES) $(LDFLAGS) -ldl -lpthread -lcurl -lz -lcrypto -lssl -lcares -o dialclient_debug clean: rm -f *.o dialclient