summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorSergey V. Udaltsov <svu@gnome.org>2010-10-15 21:26:56 +0100
committerSergey V. Udaltsov <svu@gnome.org>2010-10-15 21:26:56 +0100
commit87ef8078375af886b08cd94fbd641ab6ab0c5239 (patch)
treec68f1c088aef2d362982f838c67342031b195cd1 /test
parentad4af03e114502c4672a86c125626ea117b94d88 (diff)
downloadlibgnomekbd-87ef8078375af886b08cd94fbd641ab6ab0c5239.tar.gz
Change the common flags names
In order to eliminate warnings by autotools, do not conflict with "standard" names
Diffstat (limited to 'test')
-rw-r--r--test/Makefile.am16
1 files changed, 8 insertions, 8 deletions
diff --git a/test/Makefile.am b/test/Makefile.am
index 81ccbb5..5e256f4 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -2,24 +2,24 @@ noinst_PROGRAMS = gkbd-indicator-test \
gkbd-keyboard-drawing-test \
gkbd-status-test
-common_CFLAGS = $(WARN_CFLAGS) -I$(top_srcdir) -Wall \
+CFLAGS_common = $(WARN_CFLAGS) -I$(top_srcdir) -Wall \
$(GTK_CFLAGS) \
$(LIBXKLAVIER_CFLAGS) \
-DGNOMELOCALEDIR="\"$(datadir)/locale\""
-common_LDFLAGS = $(GTK_LIBS) \
+LDFLAGS_common = $(GTK_LIBS) \
$(LIBXKLAVIER_LIBS) \
$(top_builddir)/libgnomekbd/libgnomekbd.la \
$(top_builddir)/libgnomekbd/libgnomekbdui.la
-gkbd_indicator_test_CFLAGS=$(common_CFLAGS)
+gkbd_indicator_test_CFLAGS=$(CFLAGS_common)
-gkbd_indicator_test_LDFLAGS=$(common_LDFLAGS)
+gkbd_indicator_test_LDFLAGS=$(LDFLAGS_common)
-gkbd_keyboard_drawing_test_CFLAGS=$(common_CFLAGS)
+gkbd_keyboard_drawing_test_CFLAGS=$(CFLAGS_common)
-gkbd_keyboard_drawing_test_LDFLAGS=$(common_LDFLAGS)
+gkbd_keyboard_drawing_test_LDFLAGS=$(LDFLAGS_common)
-gkbd_status_test_CFLAGS=$(common_CFLAGS)
+gkbd_status_test_CFLAGS=$(CFLAGS_common)
-gkbd_status_test_LDFLAGS=$(common_LDFLAGS)
+gkbd_status_test_LDFLAGS=$(LDFLAGS_common)