From 768d3027a07cec8fab71bc8a083fed566b2fda8e Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Tue, 29 Nov 2016 15:37:49 +0100 Subject: [PATCH] Makefile: appending existing flags instead of overwriting them --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index ea1b2e6..48d848a 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ -CFLAGS := -g -O2 -fPIE -fstack-protector-strong -Wall -Wextra -Wconversion -CPPFLAGS := -D_FORTIFY_SOURCE=2 -LDFLAGS := -fPIE -pie -Wl,-z,relro -Wl,-z,now +CFLAGS := -g -O2 -fPIE -fstack-protector-strong -Wall -Wextra -Wconversion $(CFLAGS) +CPPFLAGS := -D_FORTIFY_SOURCE=2 $(CPPFLAGS) +LDFLAGS := -fPIE -pie -Wl,-z,relro -Wl,-z,now $(LDFLAGS) ptyas: ptyas.c -- 2.43.2