From 128c6d51ec8c70e230dc86b100cb887ba3f0378d Mon Sep 17 00:00:00 2001 From: Joel Grunbaum <joelgrun@gmail.com> Date: Thu, 20 Jan 2022 07:00:50 +0000 Subject: [PATCH] Secrets to macros and c string concat at compile time --- 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