summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
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