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