From 0b7aa02704f6ece97d17fbb118519c5cc62caaba Mon Sep 17 00:00:00 2001 From: Joel Grunbaum <joelgrun@gmail.com> Date: Wed, 19 Jan 2022 07:45:21 +0000 Subject: [PATCH] Bot prints exchange feed --- Makefile | 8 +++----- 1 files changed, 3 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 3089278..2945672 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ OS=$(shell uname) CXX=g++ -CXXFLAGS=-std=c++20 +CXXFLAGS=-std=c++20 -DNOSSL DEV=1 TEST=1 @@ -12,9 +12,6 @@ ifneq ($(OS),Darwin) CXXFLAGS += -static -else -CXXFLAGS += -I/usr/local/opt/curl/include -LDFLAGS += -L/usr/local/opt/curl/lib endif ifeq ($(TEST),1) @@ -22,7 +19,8 @@ endif ws=easywsclient/easywsclient.o -main=${ws} json.o bom.o protocol.o book.o +xml=ftplibpp/ftplib.o +main=${ws} ${xml} json.o bom.o protocol.o book.o default: test click bot -- Gitblit v1.9.3