From b85fe6e68f7e46dbea7fedff47da06d05966ebfb Mon Sep 17 00:00:00 2001 From: Toni Uhlig Date: Mon, 26 Oct 2020 09:39:35 +0100 Subject: 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 --- Makefile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'Makefile') 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 -- cgit v1.2.3