summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLionel Landwerlin <llandwerlin@gmail.com>2014-02-12 09:55:54 +0000
committerLionel Landwerlin <llandwerlin@gmail.com>2014-02-12 09:55:54 +0000
commitd04726d4291d4d706a72e97b11187f4e9d0f8512 (patch)
treeae449724d105a7c09e6a72259ff59630c4614d60
parent3dee125e7590e331a1cd98eee3d8c698e8554718 (diff)
downloadclutter-gst-d04726d4291d4d706a72e97b11187f4e9d0f8512.tar.gz
fix automake warnings
-rw-r--r--examples/Makefile.am6
-rw-r--r--tests/Makefile.am6
2 files changed, 6 insertions, 6 deletions
diff --git a/examples/Makefile.am b/examples/Makefile.am
index 8d513ec..9f553f2 100644
--- a/examples/Makefile.am
+++ b/examples/Makefile.am
@@ -2,9 +2,9 @@ NULL = #
noinst_PROGRAMS = video-player video-sink video-sink-navigation
-INCLUDES = -I$(top_srcdir) \
- $(MAINTAINER_CFLAGS) \
- $(NULL)
+AM_CPPFLAGS = -I$(top_srcdir) \
+ $(MAINTAINER_CFLAGS) \
+ $(NULL)
video_player_SOURCES = video-player.c
video_player_CFLAGS = $(CLUTTER_GST_CFLAGS) $(GST_CFLAGS)
diff --git a/tests/Makefile.am b/tests/Makefile.am
index aa779ed..7d00c92 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -8,9 +8,9 @@ noinst_PROGRAMS = \
test-video-texture-new-unref-loop \
$(NULL)
-INCLUDES = -I$(top_srcdir) \
- $(MAINTAINER_CFLAGS) \
- $(NULL)
+AM_CPPFLAGS = -I$(top_srcdir) \
+ $(MAINTAINER_CFLAGS) \
+ $(NULL)
test_alpha_SOURCES = test-alpha.c
test_alpha_CFLAGS = $(CLUTTER_GST_CFLAGS) $(GST_CFLAGS)