From 0df4f6f98101bb3be192ce892aa1452f2c6de1a4 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Wed, 17 Nov 2021 00:16:39 +0100 Subject: Use inttypes.h macros to print uint64_t variables (this requires -std=c99). Added a couple of TODOs --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 1e4d1c6..cb7b898 100644 --- a/Makefile +++ b/Makefile @@ -6,8 +6,8 @@ PREFIX = /usr/local MANPREFIX = ${PREFIX}/share/man CPPFLAGS = -DVERSION=\"${VERSION}\" -CFLAGS = -pedantic -Wall -Wextra -Wno-unused-parameter -O3 ${CPPFLAGS} -DBGFLAGS = -pedantic -Wall -Wextra -Wno-unused-parameter -g ${CPPFLAGS} +CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wno-unused-parameter -O3 ${CPPFLAGS} +DBGFLAGS = -std=c99 -pedantic -Wall -Wextra -Wno-unused-parameter -g ${CPPFLAGS} CC = cc -- cgit v1.3