summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2016-06-04 03:34:00 -0400
committerJesse Luehrs <doy@tozt.net>2016-06-04 03:34:00 -0400
commit30dbb5458b1825dae7c54561522ad2574069fb97 (patch)
tree66951a2339ca9f65f2de2253234d188fc77bc92e
parent14d9a8f9c5ec67dc0b5dd7ec03b69487feeb16d1 (diff)
downloadlibvt100-30dbb5458b1825dae7c54561522ad2574069fb97.tar.gz
libvt100-30dbb5458b1825dae7c54561522ad2574069fb97.zip
enable pedantic
-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)