=== Released 2.3.0 ===
[platform/upstream/glib.git] / tests / gobject / Makefile.am
index b668766..b1f212f 100644 (file)
@@ -16,7 +16,9 @@ noinst_LTLIBRARIES = libtestgobject.la
 libtestgobject_la_SOURCES =    \
        testcommon.h            \
        testmarshal.h           \
-       testmarshal.c
+       testmarshal.c           \
+       testmodule.c            \
+       testmodule.h
 
 if CROSS_COMPILING
   glib_genmarshal=$(GLIB_GENMARSHAL)
@@ -37,6 +39,7 @@ testmarshal.c: @REBUILD@ testmarshal.list $(glib_genmarshal)
        && rm -f xgen-gmc xgen-gmc~
 
 BUILT_SOURCES = testmarshal.h testmarshal.c
+CLEANFILES = stamp-testmarshal.h
 
 ########################################################################
 
@@ -44,7 +47,11 @@ LDADD = $(libgobject) libtestgobject.la
 
 test_programs =                                        \
        accumulator                             \
+       defaultiface                            \
+       ifacecheck                              \
        ifaceinit                               \
+       ifaceinherit                            \
+       ifaceproperties                         \
        override
 
 check_PROGRAMS = $(test_programs)
@@ -55,17 +62,20 @@ TESTS_ENVIRONMENT = srcdir=$(srcdir) \
 
 ########################################################################
 
+EXTRA_DIST =             \
+       testmarshal.list
+
 BUILT_EXTRA_DIST =                             \
        testmarshal.h                           \
        testmarshal.c
 
-dist-hook: $(BUILT_EXTRA_DIST)                                 \
+dist-hook: $(BUILT_EXTRA_DIST)
        files='$(BUILT_EXTRA_DIST)';                            \
        for f in $$files; do                                    \
          if test -f $$f; then d=.; else d=$(srcdir); fi;       \
          cp $$d/$$f $(distdir) || exit 1; done
 
-distclean-local:                               \
+distclean-local:
        if test $(srcdir) = .; then :; else     \
            rm -f $(BUILT_EXTRA_DIST);          \
        fi