From a624030558ea48dbdcce9739d60389a144a18153 Mon Sep 17 00:00:00 2001 From: Camden Dixie O'Brien Date: Thu, 24 Nov 2022 18:17:09 +0000 Subject: [PATCH] Mark Makefile as POSIX --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 784ebc9..e22e48b 100644 --- a/Makefile +++ b/Makefile @@ -14,6 +14,8 @@ # License along with this program. If not, see # . +.POSIX: + CFLAGS += -std=c11 -pedantic -Wall -Wextra CFLAGS += -O3 -flto CFLAGS += -D_XOPEN_SOURCE=700