From 9519ce291fda690a94b9790710600be4ba727640 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Sat, 3 Mar 2018 22:50:32 +0100 Subject: [PATCH] Fix a Makefile cut&paste. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- fils/Makefile | 2 +- lecteursredacteurs/Makefile | 2 +- lockf/Makefile | 2 +- peterson/Makefile | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/fils/Makefile b/fils/Makefile index e54bb18..6e6c8c5 100644 --- a/fils/Makefile +++ b/fils/Makefile @@ -26,7 +26,7 @@ CC=gcc LD=gcc WARN_FLAGS = -Wall -Wextra -STD_FLAG = -std=gnu11 +STD_FLAG = -std=c11 ifeq ($(BUILD_TYPE),debug) BUILDDIR := .build/debug diff --git a/lecteursredacteurs/Makefile b/lecteursredacteurs/Makefile index 7b4c9d9..f9023ae 100644 --- a/lecteursredacteurs/Makefile +++ b/lecteursredacteurs/Makefile @@ -26,7 +26,7 @@ CC=gcc LD=gcc WARN_FLAGS = -Wall -Wextra -STD_FLAG = -std=gnu11 +STD_FLAG = -std=11 ifeq ($(BUILD_TYPE),debug) BUILDDIR := .build/debug diff --git a/lockf/Makefile b/lockf/Makefile index 4d06f1f..2fed7ff 100644 --- a/lockf/Makefile +++ b/lockf/Makefile @@ -26,7 +26,7 @@ CC=gcc LD=gcc WARN_FLAGS = -Wall -Wextra -STD_FLAG = -std=gnu11 +STD_FLAG = -std=c11 ifeq ($(BUILD_TYPE),debug) BUILDDIR := .build/debug diff --git a/peterson/Makefile b/peterson/Makefile index fcfd46c..ac55b37 100644 --- a/peterson/Makefile +++ b/peterson/Makefile @@ -26,7 +26,7 @@ CC=gcc LD=gcc WARN_FLAGS = -Wall -Wextra -STD_FLAG = -std=gnu11 +STD_FLAG = -std=c11 ifeq ($(BUILD_TYPE),debug) BUILDDIR := .build/debug -- 2.34.1