summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 1a98ee9..9a06854 100644
--- a/Makefile
+++ b/Makefile
@@ -7,8 +7,8 @@ OBJ = $(BUILD)parser.o \
$(BUILD)unicode-extra.o
LIBS = glib-2.0
OPT ?= -g
-CFLAGS ?= $(OPT) -Wall -Wextra -Werror
-LDFLAGS ?= $(OPT) -Wall -Wextra -Werror
+CFLAGS ?= $(OPT) -Wall -Wextra -Werror -pedantic
+LDFLAGS ?= $(OPT) -Wall -Wextra -Werror -pedantic
ALLCFLAGS = $(shell pkg-config --cflags $(LIBS)) $(CFLAGS)
ALLLDFLAGS = $(shell pkg-config --libs $(LIBS)) $(LDFLAGS)