miniupnpd/Makefile.linux_nft: update CFLAGS / LDFLAGS

This commit is contained in:
Thomas Bernard 2020-05-10 20:00:50 +02:00
parent e166f541e8
commit a04d6d405d
1 changed files with 4 additions and 1 deletions

View File

@ -18,14 +18,17 @@
#
#
CONFIG_OPTIONS += --firewall=nftables
CFLAGS = -O -g #-DDEBUG
#CFLAGS = -O -g #-DDEBUG
CFLAGS ?= -Os
CFLAGS += -fno-strict-aliasing
CFLAGS += -fno-common
CFLAGS += -fstack-protector -fPIE
CFLAGS += -D_FORTIFY_SOURCE=2
CPPFLAGS += -D_GNU_SOURCE
CFLAGS += -Wall
CFLAGS += -Wextra -Wstrict-prototypes -Wdeclaration-after-statement
#CFLAGS += -Wno-missing-field-initializers
LDFLAGS += -Wl,-z,now -Wl,-z,relro -pie
CC ?= gcc
RM = rm -f
INSTALL = install