From e3a83d6433e47f886a19a0725a495ced93b9ff78 Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Sun, 30 Jul 2023 21:46:07 +0900 Subject: [PATCH] Fix Makefile (native build) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b00473d..609375a 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,7 @@ OBJECTS = $(addprefix ${OBJDIR}/,$(subst .cc,.cc.o,${SOURCES})) all: | format demo_0 demo_0: ${OBJECTS} - ${CXX} -o demo_0 ${LINKER_FLAGS} $^ + ${CXX} ${CXX_FLAGS} ${LINKER_FLAGS} -o $@ $^ .PHONY: clean format