diff options
| author | johannes <johannes.herman@gmail.com> | 2024-05-03 13:52:31 +0200 |
|---|---|---|
| committer | johannes <johannes.herman@gmail.com> | 2024-05-03 13:52:31 +0200 |
| commit | 65d4b8e7d2c2889728563934b832d49620eb00e3 (patch) | |
| tree | ead9235f3de1807a5f705f6f6666a0999742968f /makefile | |
| parent | 671771cfc54b47f7393caa7c3fab83eb09884d27 (diff) | |
enforce c99
Diffstat (limited to 'makefile')
| -rw-r--r-- | makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |
