From 71aedce8b2cf622704ef1186347146d6ad0e537b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20Gallou=C3=ABt?= Date: Mon, 1 Apr 2019 13:16:29 +0000 Subject: [PATCH] Ask for a non pedantic c11 compiler --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 85bc5ab..95ca414 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ DESTDIR ?= CC ?= gcc INSTALL ?= install prefix ?= /usr -CFLAGS ?= -O2 +CFLAGS ?= -std=c11 -O2 MYFLAGS := $(CFLAGS) $(LDFLAGS) $(CPPFLAGS) -DPACKAGE_NAME=\"$(NAME)\" -DPACKAGE_VERSION=\"$(VERSION)\" SRC := argz/argz.c mud/mud.c $(wildcard src/*.c)