aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2020-10-26 09:39:35 +0100
committerToni Uhlig <matzeton@googlemail.com>2020-10-26 09:39:35 +0100
commitb85fe6e68f7e46dbea7fedff47da06d05966ebfb (patch)
tree6023533c5a37d27a00b63f02567fc11a6026470f /Makefile
parent4ba484be6ef6e1f759fdb6dbde056592143cbd14 (diff)
Finished timestamp refactoring.
- adjusted -W* CFLAGS - replaced suseconds_t with uint32_t for nanoseconds extraction - fixed (now) invalid format specifiers - added WARN_UNUSED_RESULT macro usable to warn if a fn return value is unused Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 002600a..da9bb53 100644
--- a/Makefile
+++ b/Makefile
@@ -19,9 +19,7 @@ DEBUG_CFLAGS =
EXTRA_CFLAGS = -Werror -Os
endif
-CFLAGS += -Wall -Wextra -Wsign-conversion -Wstrict-prototypes -std=gnu11 $(EXTRA_CFLAGS) -D_GNU_SOURCE $(DEBUG_CFLAGS) $(SANITIZER_CFLAGS) -fstrict-aliasing \
- $(shell $(PKG_CONFIG_BIN) --cflags libsodium) \
- $(shell $(PKG_CONFIG_BIN) --cflags libevent)
+CFLAGS += -Wall -Wextra -Wsign-conversion -Wstrict-prototypes -std=gnu11 $(EXTRA_CFLAGS) -D_GNU_SOURCE $(DEBUG_CFLAGS) $(SANITIZER_CFLAGS) -fstrict-aliasing
HEADER_TARGETS = utils.h common-event2.h common-sodium.h logging.h protocol.h
BUILD_TARGETS = utils.o common-event2.o common-sodium.o logging.o protocol.o