diff options
author | flu0r1ne <flu0r1ne@flu0r1ne.net> | 2023-11-20 16:29:36 -0600 |
---|---|---|
committer | flu0r1ne <flu0r1ne@flu0r1ne.net> | 2023-11-20 16:29:36 -0600 |
commit | de259f866554bf8ea815b028af564155a2eee2b5 (patch) | |
tree | 7b0992d63b3bcb5794382a341b4cf09e2ef24bc5 /makefile | |
parent | d028778c1c132cf6691837ef5076f4dd5b5c5c82 (diff) | |
download | wg2nd-de259f866554bf8ea815b028af564155a2eee2b5.tar.xz wg2nd-de259f866554bf8ea815b028af564155a2eee2b5.zip |
Drop capabilities by default and retain required capabilities upfront
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -12,6 +12,7 @@ CC = gcc CFLAGS = -Wall -Wextra -Werror -Wno-unused-function CFLAGS += -Isrc +CFLAGS += -DHAVE_LIBCAP # Compiler flags CXXFLAGS = $(CFLAGS) @@ -25,7 +26,7 @@ RELEASE_LDFLAGS = -lrt DEBUGFLAGS = -ggdb -O0 -fsanitize=address -fno-omit-frame-pointer # Linking flags -LDFLAGS = +LDFLAGS = -lcap C_OBJECTS := src/crypto/encoding.o C_OBJECTS += src/crypto/curve25519.o |