]> andersk Git - libyaml.git/commitdiff
Add -Wall to list of compile flags
authorIan Cordasco <graffatcolmingov@gmail.com>
Tue, 27 Dec 2016 12:58:03 +0000 (06:58 -0600)
committerIngy döt Net <ingy@ingy.net>
Thu, 29 Dec 2016 21:55:41 +0000 (15:55 -0600)
Let's start warning on everything and we'll clean the warnings up as we
go along.

src/Makefile.am
tests/Makefile.am

index 724a1b2db82e942f4c1ad301c16c1e3f2cea8fc5..7cc40e7539510994bbbffdc12791d18251836e29 100644 (file)
@@ -1,4 +1,4 @@
-AM_CPPFLAGS = -I$(top_srcdir)/include
+AM_CPPFLAGS = -I$(top_srcdir)/include -Wall
 lib_LTLIBRARIES = libyaml.la
 libyaml_la_SOURCES = yaml_private.h api.c reader.c scanner.c parser.c loader.c writer.c emitter.c dumper.c
 libyaml_la_LDFLAGS = -release $(YAML_LT_RELEASE) -version-info $(YAML_LT_CURRENT):$(YAML_LT_REVISION):$(YAML_LT_AGE)
index 72e84d2a22173bab30cda2eb20519a862064774f..81decb40044af68c67750fddfc4ef03b9fe2a486 100644 (file)
@@ -1,4 +1,4 @@
-AM_CPPFLAGS = -I$(top_srcdir)/include
+AM_CPPFLAGS = -I$(top_srcdir)/include -Wall
 #AM_CFLAGS = -Wno-pointer-sign
 LDADD = $(top_builddir)/src/libyaml.la
 TESTS = test-version test-reader
This page took 0.03269 seconds and 5 git commands to generate.