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 | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/Makefile b/Makefile
index 94e9115..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
@@ -18,9 +18,9 @@
CXXFLAGS += -DTEST_EXCHANGE
endif
-json=json.o
ws=easywsclient/easywsclient.o
-main=${json} ${ws} 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.10.0