From: Sam Spilsbury Date: Fri, 13 Sep 2013 02:01:19 +0000 (+0800) Subject: Remove AM_LDFLAGS usage X-Git-Tag: 1.2.91~33 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=db0eda4abb0a10641a2cb6092e7e8eee9966d6cc;p=platform%2Fupstream%2Fweston.git Remove AM_LDFLAGS usage We are not building everything here as a module, only the test modules. --- diff --git a/tests/Makefile.am b/tests/Makefile.am index 398a275..3a36619 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -7,6 +7,8 @@ module_tests = \ surface-test.la \ surface-global-test.la +weston_test = weston-test.la + weston_tests = \ keyboard.weston \ event.weston \ @@ -45,7 +47,7 @@ AM_CPPFLAGS = \ -I$(top_builddir)/src \ -DUNIT_TEST \ $(COMPOSITOR_CFLAGS) -AM_LDFLAGS = -module -avoid-version -rpath $(libdir) + config_parser_test_LDADD = \ ../shared/libshared.la \ @@ -54,11 +56,13 @@ config_parser_test_SOURCES = \ config-parser-test.c surface_global_test_la_SOURCES = surface-global-test.c +surface_global_test_la_LDFLAGS = -module -avoid-version -rpath $(libdir) surface_test_la_SOURCES = surface-test.c +surface_test_la_LDFLAGS = -module -avoid-version -rpath $(libdir) -weston_test = weston-test.la weston_test_la_LIBADD = $(COMPOSITOR_LIBS) \ ../shared/libshared.la +weston_test_la_LDFLAGS = -module -avoid-version -rpath $(libdir) weston_test_la_CFLAGS = $(GCC_CFLAGS) $(COMPOSITOR_CFLAGS) weston_test_la_SOURCES = \ weston-test.c \