diff options
author | Linus Nordberg <linus@nordu.net> | 2011-02-04 13:59:58 +0100 |
---|---|---|
committer | Linus Nordberg <linus@nordu.net> | 2011-02-04 13:59:58 +0100 |
commit | c82ad411651a82cdf284c57d144335391f684e6c (patch) | |
tree | f96a29a360c50210a6aee22b20d6d1f0be1a8122 | |
parent | c1364efc8477b6e1045aee66d58f5fdf47a4d6f2 (diff) |
Do build examples with -Wall -g.
-rw-r--r-- | lib/examples/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/examples/Makefile.am b/lib/examples/Makefile.am index c869070..63c530e 100644 --- a/lib/examples/Makefile.am +++ b/lib/examples/Makefile.am @@ -1,8 +1,8 @@ AUTOMAKE_OPTIONS = foreign - INCLUDES = -I$(top_srcdir)/include +AM_CFLAGS = -Wall -g bin_PROGRAMS = client client_SOURCES = client-blocking.c client_LDADD = ../libradsec.la -client_CFLAGS = $(CFLAGS) -DUSE_CONFIG_FILE +client_CFLAGS = $(CFLAGS) $(AM_CFLAGS) -DUSE_CONFIG_FILE |