From a421098092ba600fb1686a7df8fc58cd67429f59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9gory=20Soutad=C3=A9?= Date: Tue, 10 Jan 2023 20:16:27 +0100 Subject: [PATCH] Update CXXFLAGS in Makefile (to append our own flags) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7633c0c..2573647 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ AR ?= $(CROSS)ar CXX ?= $(CROSS)g++ -CXXFLAGS=-Wall -fPIC -I./include +CXXFLAGS += -Wall -fPIC -I./include LDFLAGS= BUILD_STATIC ?= 0