summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorjohannes <johannes.herman@gmail.com>2024-05-03 13:52:31 +0200
committerjohannes <johannes.herman@gmail.com>2024-05-03 13:52:31 +0200
commit65d4b8e7d2c2889728563934b832d49620eb00e3 (patch)
treeead9235f3de1807a5f705f6f6666a0999742968f /makefile
parent671771cfc54b47f7393caa7c3fab83eb09884d27 (diff)
enforce c99
Diffstat (limited to 'makefile')
-rw-r--r--makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/makefile b/makefile
index 63d2cb3..9569298 100644
--- a/makefile
+++ b/makefile
@@ -6,7 +6,7 @@ EXE := $(BIN_DIR)/dedit
SRC := $(wildcard $(SRC_DIR)/*.c)
OBJ := $(SRC:$(SRC_DIR)/%.c=$(OBJ_DIR)/%.o)
-CFLAGS := -Wall -Wextra
+CFLAGS := -Wall -Wextra -std=c99 -pedantic-errors
.PHONY: all clean run format