commit dd8c66cc99e31e71ae1cc9fc706f60fbb33c6d65
parent 2bf0398d29787be51799bf25dee5b2de8424b32b
Author: Mattias Andrée <m@maandree.se>
Date: Sun, 22 Feb 2026 15:09:39 +0100
makefile: add ".POSIX:" line and use `c99` rather than `cc -std=c99`
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat:
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile
@@ -1,3 +1,5 @@
+.POSIX:
+
CONFIG = config.mk
include $(CONFIG)
diff --git a/config.mk b/config.mk
@@ -7,9 +7,9 @@ EXECPREFIX = $(PREFIX)
MANPREFIX = $(PREFIX)/share/man
DOCPREFIX = $(PREFIX)/share/doc
-CC = cc
+CC = c99
AR = ar
CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700 -DGOOD_RAND
-CFLAGS = -std=c99 -O3 -flto -Wall -pedantic
+CFLAGS = -O3 -flto -Wall -pedantic
LDFLAGS = -s