diff options
| author | Sebastiano Tronto <sebastiano.tronto@gmail.com> | 2021-11-17 00:16:39 +0100 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano.tronto@gmail.com> | 2021-11-17 00:16:39 +0100 |
| commit | 0df4f6f98101bb3be192ce892aa1452f2c6de1a4 (patch) | |
| tree | 8bd047e4e247812495b1fdb489e2e37c2cf14224 /Makefile | |
| parent | 20ac0e60d7174114965d4419af0bb3028db8e447 (diff) | |
| download | nissy-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 '')
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -6,8 +6,8 @@ PREFIX = /usr/local | |||
| 6 | MANPREFIX = ${PREFIX}/share/man | 6 | MANPREFIX = ${PREFIX}/share/man |
| 7 | 7 | ||
| 8 | CPPFLAGS = -DVERSION=\"${VERSION}\" | 8 | CPPFLAGS = -DVERSION=\"${VERSION}\" |
| 9 | CFLAGS = -pedantic -Wall -Wextra -Wno-unused-parameter -O3 ${CPPFLAGS} | 9 | CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wno-unused-parameter -O3 ${CPPFLAGS} |
| 10 | DBGFLAGS = -pedantic -Wall -Wextra -Wno-unused-parameter -g ${CPPFLAGS} | 10 | DBGFLAGS = -std=c99 -pedantic -Wall -Wextra -Wno-unused-parameter -g ${CPPFLAGS} |
| 11 | 11 | ||
| 12 | CC = cc | 12 | CC = cc |
| 13 | 13 | ||
