Navigation Menu

Skip to content

Commit

Permalink
Use AM_CPP_FLAGS instead of INCLUDES
Browse files Browse the repository at this point in the history
Because INCLUDES is deprecated (maybe) since automake 1.13.
  • Loading branch information
kou committed Jun 11, 2013
1 parent 91fa69d commit 31cd5fc
Show file tree
Hide file tree
Showing 17 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion plugins/query_expanders/Makefile.am
@@ -1,7 +1,7 @@
EXTRA_DIST = \
CMakeLists.txt

INCLUDES = \
AM_CPPFLAGS = \
-I$(top_builddir) \
-I$(top_srcdir)/include \
-I$(top_srcdir)/lib
Expand Down
2 changes: 1 addition & 1 deletion plugins/suggest/Makefile.am
Expand Up @@ -5,7 +5,7 @@ AM_CFLAGS = \
$(MESSAGE_PACK_CFLAGS) \
$(MRUBY_CFLAGS)

INCLUDES = \
AM_CPPFLAGS = \
-I$(top_builddir) \
-I$(top_srcdir)/include \
-I$(top_srcdir)/lib
Expand Down
2 changes: 1 addition & 1 deletion plugins/table/Makefile.am
Expand Up @@ -5,7 +5,7 @@ AM_CFLAGS = \
$(MESSAGE_PACK_CFLAGS) \
$(MRUBY_CFLAGS)

INCLUDES = \
AM_CPPFLAGS = \
-I$(top_builddir) \
-I$(top_srcdir)/include \
-I$(top_srcdir)/lib
Expand Down
2 changes: 1 addition & 1 deletion plugins/tokenizers/Makefile.am
@@ -1,7 +1,7 @@
EXTRA_DIST = \
CMakeLists.txt

INCLUDES = \
AM_CPPFLAGS = \
-I$(top_builddir) \
-I$(top_srcdir)/include \
-I$(top_srcdir)/lib
Expand Down
2 changes: 1 addition & 1 deletion test/benchmark/Makefile.am
Expand Up @@ -11,7 +11,7 @@ noinst_PROGRAMS = \
bench-geo-select
endif

INCLUDES = \
AM_CPPFLAGS = \
-I$(srcdir) \
-I$(srcdir)/lib \
-I$(top_srcdir)/include \
Expand Down
2 changes: 1 addition & 1 deletion test/benchmark/lib/Makefile.am
Expand Up @@ -3,7 +3,7 @@ noinst_LTLIBRARIES = \
libbenchmark.la
endif

INCLUDES = \
AM_CPPFLAGS = \
-I$(srcdir)

AM_CFLAGS = \
Expand Down
2 changes: 1 addition & 1 deletion test/unit/Makefile.am
Expand Up @@ -35,7 +35,7 @@ EXTRA_DIST = \
run-test.rb \
Gemfile

INCLUDES = \
AM_CPPFLAGS = \
-I$(srcdir) \
-I$(top_srcdir)/include \
-I$(top_srcdir)/lib \
Expand Down
2 changes: 1 addition & 1 deletion test/unit/core/Makefile.am
Expand Up @@ -66,7 +66,7 @@ noinst_LTLIBRARIES = \
test-tokenizer.la
endif

INCLUDES = \
AM_CPPFLAGS = \
-I$(top_srcdir)/include \
-I$(top_srcdir)/lib \
$(GROONGA_INCLUDEDIR)
Expand Down
2 changes: 1 addition & 1 deletion test/unit/core/dat/Makefile.am
Expand Up @@ -22,7 +22,7 @@ noinst_LTLIBRARIES = \
test-vector.la
endif

INCLUDES = \
AM_CPPFLAGS = \
-I$(top_srcdir)/include \
-I$(top_srcdir)/lib \
-I$(top_srcdir)/test/unit/lib \
Expand Down
2 changes: 1 addition & 1 deletion test/unit/fixtures/Makefile.am
Expand Up @@ -11,7 +11,7 @@ noinst_LTLIBRARIES = \
suite-groonga-test-fixtures.la
endif

INCLUDES = \
AM_CPPFLAGS = \
-I$(srcdir) \
-I$(srcdir)/../lib \
-I$(top_srcdir)/include \
Expand Down
2 changes: 1 addition & 1 deletion test/unit/fixtures/performance/Makefile.am
Expand Up @@ -3,7 +3,7 @@ noinst_LTLIBRARIES = \
test-read-write.la
endif

INCLUDES = \
AM_CPPFLAGS = \
-I$(srcdir) \
-I$(top_srcdir)/test/unit/lib \
-I$(top_srcdir)/include \
Expand Down
2 changes: 1 addition & 1 deletion test/unit/fixtures/plugins/Makefile.am
@@ -1,4 +1,4 @@
INCLUDES = \
AM_CPPFLAGS = \
-I$(top_builddir) \
-I$(top_srcdir)/include \
-I$(top_srcdir)/lib
Expand Down
2 changes: 1 addition & 1 deletion test/unit/fixtures/stress/Makefile.am
Expand Up @@ -4,7 +4,7 @@ noinst_LTLIBRARIES = \
test-stress-patricia-trie.la
endif

INCLUDES = \
AM_CPPFLAGS = \
-I$(srcdir) \
-I$(top_srcdir)/test/unit/lib \
-I$(top_srcdir)/include \
Expand Down
2 changes: 1 addition & 1 deletion test/unit/lib/Makefile.am
Expand Up @@ -12,7 +12,7 @@ noinst_LTLIBRARIES += \
endif
endif

INCLUDES = \
AM_CPPFLAGS = \
-I$(srcdir) \
-I$(top_srcdir)/include \
-I$(top_srcdir)/lib \
Expand Down
2 changes: 1 addition & 1 deletion test/unit/memcached/Makefile.am
Expand Up @@ -5,7 +5,7 @@ noinst_LTLIBRARIES = \
endif
endif

INCLUDES = \
AM_CPPFLAGS = \
-I$(top_srcdir)/include \
-I$(top_srcdir)/lib \
$(GROONGA_INCLUDEDIR)
Expand Down
2 changes: 1 addition & 1 deletion test/unit/story/Makefile.am
Expand Up @@ -3,7 +3,7 @@ noinst_LTLIBRARIES = \
test-taiyaki.la
endif

INCLUDES = \
AM_CPPFLAGS = \
-I$(top_srcdir)/include \
-I$(top_srcdir)/lib \
$(GROONGA_INCLUDEDIR)
Expand Down
2 changes: 1 addition & 1 deletion test/unit/util/Makefile.am
Expand Up @@ -4,7 +4,7 @@ noinst_LTLIBRARIES = \
test-string.la
endif

INCLUDES = \
AM_CPPFLAGS = \
-I$(top_srcdir)/include \
-I$(top_srcdir)/lib \
$(GROONGA_INCLUDEDIR)
Expand Down

0 comments on commit 31cd5fc

Please sign in to comment.