summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorSuren A. Chilingaryan <csa@dside.dyndns.org>2013-11-16 01:23:30 +0100
committerSuren A. Chilingaryan <csa@dside.dyndns.org>2013-11-16 01:23:30 +0100
commit2edd7468b1faeb9137c50da0a62f84b8fffa612c (patch)
treec8b0c6170a2fb15d2d3f073825a80b37a3420833 /examples
parent0ed316642c46aa88be865e61a4d17b2df67b955a (diff)
downloadlibrcc-2edd7468b1faeb9137c50da0a62f84b8fffa612c.tar.gz
librcc-2edd7468b1faeb9137c50da0a62f84b8fffa612c.tar.bz2
librcc-2edd7468b1faeb9137c50da0a62f84b8fffa612c.tar.xz
librcc-2edd7468b1faeb9137c50da0a62f84b8fffa612c.zip
Add local include directories using top_srcdir instead of ..
Diffstat (limited to 'examples')
-rw-r--r--examples/Makefile.am6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/Makefile.am b/examples/Makefile.am
index 8b8a8c3..b57ee9c 100644
--- a/examples/Makefile.am
+++ b/examples/Makefile.am
@@ -9,21 +9,21 @@ if HAVE_GTK
bin_PROGRAMS+= rcc-gtk-config
rcc_gtk_config_SOURCES = rcc-gtk-config.c
rcc_gtk_config_LDADD= ../src/librcc.la ../ui/librccgtk.la @GTK1_LIBS@
-rcc_gtk_config_CPPFLAGS = @GTK1_INCLUDES@ -I../src -I../ui
+rcc_gtk_config_CPPFLAGS = @GTK1_INCLUDES@ -I${top_srcdir}/src -I${top_srcdir}/ui
endif
if HAVE_GTK2
bin_PROGRAMS+= rcc-gtk2-config
rcc_gtk2_config_SOURCES = rcc-gtk-config.c
rcc_gtk2_config_LDADD= ../src/librcc.la ../ui/librccgtk2.la @GTK2_LIBS@
-rcc_gtk2_config_CPPFLAGS = @GTK2_CFLAGS@ -I../src -I../ui
+rcc_gtk2_config_CPPFLAGS = @GTK2_CFLAGS@ -I${top_srcdir}/src -I${top_srcdir}/ui
endif
if HAVE_GTK3
bin_PROGRAMS+= rcc-gtk3-config
rcc_gtk3_config_SOURCES = rcc-gtk-config.c
rcc_gtk3_config_LDADD=../ui/librccgtk3.la @GTK3_LIBS@
-rcc_gtk3_config_CPPFLAGS = @GTK3_CFLAGS@ -I../src -I../ui
+rcc_gtk3_config_CPPFLAGS = @GTK3_CFLAGS@ -I${top_srcdir}/src -I${top_srcdir}/ui
endif