aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSebastiano Tronto <sebastiano.tronto@gmail.com>2021-11-17 00:16:39 +0100
committerSebastiano Tronto <sebastiano.tronto@gmail.com>2021-11-17 00:16:39 +0100
commit0df4f6f98101bb3be192ce892aa1452f2c6de1a4 (patch)
tree8bd047e4e247812495b1fdb489e2e37c2cf14224 /Makefile
parent20ac0e60d7174114965d4419af0bb3028db8e447 (diff)
downloadnissy-0df4f6f98101bb3be192ce892aa1452f2c6de1a4.tar.gz
nissy-0df4f6f98101bb3be192ce892aa1452f2c6de1a4.zip
Use inttypes.h macros to print uint64_t variables (this requires -std=c99). Added a couple of TODOs
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 1e4d1c6..cb7b898 100644
--- a/Makefile
+++ b/Makefile
@@ -6,8 +6,8 @@ PREFIX = /usr/local
6MANPREFIX = ${PREFIX}/share/man 6MANPREFIX = ${PREFIX}/share/man
7 7
8CPPFLAGS = -DVERSION=\"${VERSION}\" 8CPPFLAGS = -DVERSION=\"${VERSION}\"
9CFLAGS = -pedantic -Wall -Wextra -Wno-unused-parameter -O3 ${CPPFLAGS} 9CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wno-unused-parameter -O3 ${CPPFLAGS}
10DBGFLAGS = -pedantic -Wall -Wextra -Wno-unused-parameter -g ${CPPFLAGS} 10DBGFLAGS = -std=c99 -pedantic -Wall -Wextra -Wno-unused-parameter -g ${CPPFLAGS}
11 11
12CC = cc 12CC = cc
13 13

Generated with cgit - Back to sebastiano.tronto.net