X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=tests%2FMakefile.am;h=d2bb2fd7b849a31c6100a1e3ffc33c4dd219c8f7;hb=f9aea220c974f5ef2b1f5149ca3089125a6be300;hp=b4e804c466d64be8ba765c95c084e3ede18eb8bd;hpb=c30fb2a44a00e7c63f9ff36d5428d47c0449e59a;p=platform%2Fupstream%2Fatk.git diff --git a/tests/Makefile.am b/tests/Makefile.am index b4e804c..d2bb2fd 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -1,20 +1,31 @@ - -noinst_LTLIBRARIES = \ - libteststateset.la \ - libtestrelation.la +if PLATFORM_WIN32 +no_undefined = -no-undefined +else +no_undefined = +endif libatk = $(top_builddir)/atk/libatk-$(ATK_API_VERSION).la -INCLUDES = -I$(top_srcdir) \ +AM_CPPFLAGS = -I$(top_srcdir) \ -DG_DISABLE_DEPRECATED \ - @DEP_CFLAGS@ + $(DEP_CFLAGS) DEPS = \ $(libatk) -libteststateset_la_SOURCES = teststateset.c -libteststateset_la_LDFLAGS = -avoid-version \ - -module +noinst_PROGRAMS = testdocument \ + testrole \ + testrelation \ + teststateset \ + testvalue + +LDADD = $(libatk) $(DEP_LIBS) + +testdocument_SOURCES = testdocument.c +testrole_SOURCES = testrole.c +testrelation_SOURCES = testrelation.c +teststateset_SOURCES = teststateset.c +testvalue_SOURCES = testvalue.c + +EXTRA_DIST = testatk_vc.mak -libtestrelation_la_SOURCES = testrelation.c -libtestrelation_la_LDFLAGS = -avoid-version \ - -module +DISTCLEANFILES = testatk_vc.mak