]> git.meshlink.io Git - meshlink/commitdiff
Force -Wall.
authorGuus Sliepen <guus@meshlink.io>
Mon, 14 Aug 2017 20:31:04 +0000 (22:31 +0200)
committerGuus Sliepen <guus@meshlink.io>
Mon, 14 Aug 2017 20:31:04 +0000 (22:31 +0200)
AM_INIT_AUTOMAKE should ensure -Wall is set, but for some reason it doesn't.
Force it by adding it to AM_CPPFLAGS.

examples/Makefile.am
src/Makefile.am
test/Makefile.am

index f51b801c330702e78baf24cc904cdbedb4fe5fff..09cd3a370c54b51937b25671371ad090a08e0f35 100644 (file)
@@ -1,6 +1,6 @@
 noinst_PROGRAMS = meshlinkapp chat chatpp manynodes channels
 
-AM_CPPFLAGS = -I../src
+AM_CPPFLAGS = -I../src -Wall
 
 meshlinkapp_SOURCES = meshlinkapp.c
 meshlinkapp_LDADD = ../src/libmeshlink.la ../catta/src/libcatta.la
index 6340a1a2a22b8da0054a195305042f951b70ed03..21e45f7d8dc11ef3ab525bc52d63a8c045056a13 100644 (file)
@@ -1,6 +1,6 @@
 ## Produce this file with automake to get Makefile.in
 
-DEFAULT_INCLUDES =
+AM_CPPFLAGS = -Wall
 
 ed25519_SOURCES = \
        ed25519/add_scalar.c \
index fac85e0305d1b6f5cce8f7e7882145c35736cd43..596c422381de9d19a1583957c19b22f184891864 100644 (file)
@@ -11,7 +11,7 @@ TESTS = \
 
 dist_check_SCRIPTS = $(TESTS)
 
-AM_CPPFLAGS = -I../src
+AM_CPPFLAGS = -I../src -Wall
 
 check_PROGRAMS = \
        basic \