X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=tests%2FMakefile.am;h=d2bb2fd7b849a31c6100a1e3ffc33c4dd219c8f7;hb=e309cf84af1675ce0df7e970b4db28bef2d03394;hp=e87b07eac98d1f21cb91f03463d56f5ddec2af41;hpb=8a88c42f4e5c6324bf3cc61766ec091e00fd1744;p=platform%2Fupstream%2Fatk.git diff --git a/tests/Makefile.am b/tests/Makefile.am index e87b07e..d2bb2fd 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -1,28 +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) DEPS = \ $(libatk) -moduledir = $(libdir)/gtk-2.0/modules +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 -libteststateset_la_SOURCES = teststateset.c -libteststateset_la_LDFLAGS = \ - -rpath $(moduledir) \ - -avoid-version \ - -module -libteststateset_la_LIBADD = $(libatk) $(DEP_LIBS) +EXTRA_DIST = testatk_vc.mak -libtestrelation_la_SOURCES = testrelation.c -libtestrelation_la_LDFLAGS = \ - -rpath $(moduledir) \ - -avoid-version \ - -module -libtestrelation_la_LIBADD = $(libatk) $(DEP_LIBS) +DISTCLEANFILES = testatk_vc.mak