diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2020-10-26 09:39:35 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2020-10-26 09:39:35 +0100 |
commit | b85fe6e68f7e46dbea7fedff47da06d05966ebfb (patch) | |
tree | 6023533c5a37d27a00b63f02567fc11a6026470f /Makefile | |
parent | 4ba484be6ef6e1f759fdb6dbde056592143cbd14 (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-- | Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -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 |