Skip to content

Commit

Permalink
Don't use deprecated 'INCLUDES' variable in Makefile.am files.
Browse files Browse the repository at this point in the history
  • Loading branch information
Linus Nordberg committed Dec 20, 2013
1 parent a0acdbb commit 5871418
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ ACLOCAL_AMFLAGS = -I m4
SUBDIRS = radius radsecproxy include . examples
DIST_SUBDIRS = $(SUBDIRS) tests

INCLUDES = -I$(srcdir)/include
AM_CPPFLAGS = -I$(srcdir)/include
AM_CFLAGS = -Wall -Werror -g

lib_LTLIBRARIES = libradsec.la
Expand Down
2 changes: 1 addition & 1 deletion lib/examples/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AUTOMAKE_OPTIONS = foreign
INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)
AM_CFLAGS = -Wall -Werror -g

noinst_PROGRAMS = client
Expand Down
2 changes: 1 addition & 1 deletion lib/radius/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
AUTOMAKE_OPTIONS = foreign
ACLOCAL_AMFLAGS = -I m4

INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)
AM_CFLAGS = -Wall -g

noinst_LTLIBRARIES = libradsec-radius.la
Expand Down
2 changes: 1 addition & 1 deletion lib/radsecproxy/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
AUTOMAKE_OPTIONS = foreign
ACLOCAL_AMFLAGS = -I m4

INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)
AM_CFLAGS = -Wall -Werror -g

noinst_LTLIBRARIES = libradsec-radsecproxy.la
Expand Down
2 changes: 1 addition & 1 deletion lib/tests/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AUTOMAKE_OPTIONS = foreign
INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)
AM_CFLAGS = -Wall -Werror -g

TESTS = test-udp
Expand Down

0 comments on commit 5871418

Please sign in to comment.