From f05103d871ae7c374a1179131d61f4cbb17d7ede Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Tue, 16 Apr 2024 20:38:34 +0900 Subject: [PATCH] Fix to Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a740dd7..00dfa38 100644 --- a/Makefile +++ b/Makefile @@ -21,7 +21,7 @@ OBJECTS = $(addprefix ${OBJDIR}/,$(patsubst %.cpp,%.cpp.o,${SOURCES})) all: KoreanNumbers KoreanNumbers: ${OBJECTS} - $(CXX) $(CXXFLAGS) -o KoreanNumbers $^ + $(CXX) $(CXXFLAGS) -fPIE -pie -o KoreanNumbers $^ ${OBJDIR}/%.cpp.o: %.cpp @mkdir -p $(dir $@)