gegl r2966 - in trunk: . tests



Author: neo
Date: Tue Mar 17 20:11:03 2009
New Revision: 2966
URL: http://svn.gnome.org/viewvc/gegl?rev=2966&view=rev

Log:
2009-03-17  Sven Neumann  <sven gimp org>

	* tests/Makefile.am: some cleanups. Always build the tests; this
	helps to catch compile problems early.



Modified:
   trunk/ChangeLog
   trunk/tests/Makefile.am

Modified: trunk/tests/Makefile.am
==============================================================================
--- trunk/tests/Makefile.am	(original)
+++ trunk/tests/Makefile.am	Tue Mar 17 20:11:03 2009
@@ -1,29 +1,28 @@
 # The tests
-TESTS =   \
+TESTS = \
 	test-proxynop-processing$(EXEEXT)   \
 	test-gegl-rectangle$(EXEEXT)
-EXTRA_PROGRAMS =   \
-	$(TESTS)
+
+noinst_PROGRAMS = $(TESTS)
 
 # Common CPPFLAGS
-AM_CPPFLAGS =   \
-	-I$(top_srcdir)   \
-	-I$(top_srcdir)/gegl/   \
-	-I$(top_srcdir)/gegl/buffer   \
-	-I$(top_srcdir)/gegl/property-types   \
-	-I$(top_srcdir)/gegl/operation   \
+AM_CPPFLAGS = \
+	-I$(top_srcdir)				\
+	-I$(top_srcdir)/gegl			\
+	-I$(top_srcdir)/gegl/buffer		\
+	-I$(top_srcdir)/gegl/property-types	\
+	-I$(top_srcdir)/gegl/operation		\
 	@DEP_CFLAGS@ @BABL_CFLAGS@
 
-# Proxynop Processing
-test_proxynop_processing_SOURCES = \
-	test-proxynop-processing.c
-test_proxynop_processing_LDADD = \
+# Common libs
+testlibs = \
 	$(top_builddir)/gegl/libgegl- GEGL_API_VERSION@.la \
 	@DEP_LIBS@ @BABL_LIBS@
 
+# Proxynop Processing
+test_proxynop_processing_SOURCES = test-proxynop-processing.c
+test_proxynop_processing_LDADD = $(testlibs)
+
 # GeglRectangle
-test_gegl_rectangle_SOURCES =   \
-	test-gegl-rectangle.c
-test_gegl_rectangle_LDADD =   \
-	$(top_builddir)/gegl/libgegl- GEGL_API_VERSION@.la   \
-	@DEP_LIBS@ @BABL_LIBS@
+test_gegl_rectangle_SOURCES = test-gegl-rectangle.c
+test_gegl_rectangle_LDADD = $(testlibs)



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]