Olena-patches
Threads by month
- ----- 2025 -----
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2005 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2004 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- 9625 discussions
* mln/make/edge_image.hh: Fix Doxygen comments.
(make::edge_image(const Graph<G>&, const fun::i2v::array<V>&))
(make::edge_image(const Graph<G>&, const Function_v2v<FP>&,
const Function_v2v<FV>&))):
Properly build the required p_edges site sets.
(make::edge_image(const vertex_image<P,V,G>&, const Function_v2b<F>&)):
Actually use the predicate passed as second argument.
Remove debug code.
---
milena/ChangeLog | 13 +++++++++++++
milena/mln/make/edge_image.hh | 27 +++++++++++++--------------
2 files changed, 26 insertions(+), 14 deletions(-)
diff --git a/milena/ChangeLog b/milena/ChangeLog
index 39cc7f3..050fb7c 100644
--- a/milena/ChangeLog
+++ b/milena/ChangeLog
@@ -1,3 +1,16 @@
+2010-05-11 Roland Levillain <roland(a)lrde.epita.fr>
+
+ Fix make::edge_image.
+
+ * mln/make/edge_image.hh: Fix Doxygen comments.
+ (make::edge_image(const Graph<G>&, const fun::i2v::array<V>&))
+ (make::edge_image(const Graph<G>&, const Function_v2v<FP>&,
+ const Function_v2v<FV>&))):
+ Properly build the required p_edges site sets.
+ (make::edge_image(const vertex_image<P,V,G>&, const Function_v2b<F>&)):
+ Actually use the predicate passed as second argument.
+ Remove debug code.
+
2010-04-27 Roland Levillain <roland(a)lrde.epita.fr>
Help g++ 3.3 compile Milena code.
diff --git a/milena/mln/make/edge_image.hh b/milena/mln/make/edge_image.hh
index 2a429cb..e964aab 100644
--- a/milena/mln/make/edge_image.hh
+++ b/milena/mln/make/edge_image.hh
@@ -46,7 +46,7 @@ namespace mln
/// Construct an edge image.
///
- /// \param[in] g A graph
+ /// \param[in] g A graph.
/// \param[in] fv A function mapping edge ids to values.
///
/// \return an edge image.
@@ -57,7 +57,7 @@ namespace mln
/// Construct an edge image.
///
- /// \param[in] g A graph
+ /// \param[in] g A graph.
/// \param[in] fv A function mapping edge ids to values.
///
/// \return an edge image.
@@ -69,7 +69,7 @@ namespace mln
/// Construct an edge image.
///
- /// \param[in] g_ A graph
+ /// \param[in] g_ A graph.
/// \param[in] fp A function mapping edge ids to sites.
/// \param[in] fv A function mapping edge ids to values.
///
@@ -86,7 +86,7 @@ namespace mln
/// Construct an edge image.
///
/// \param[in] v_ima_ A vertex image.
- /// \param[in] pe A p_edges mapping graph element to sites .
+ /// \param[in] pe A p_edges mapping graph elements to sites.
/// \param[in] fv_ A function mapping two vertex ids to a value.
/// The result is associated to the corresponding edge.
///
@@ -103,7 +103,7 @@ namespace mln
/// Construct an edge image.
///
/// \param[in] v_ima_ A vertex image.
- /// \param[in] fv_ A function mapping two vertices ids to a value.
+ /// \param[in] fv_ A function mapping two vertices' values to a value.
/// The result is associated to the corresponding edge.
///
/// \return an edge image without localization information mapped to
@@ -118,8 +118,9 @@ namespace mln
/// Construct an edge image.
///
/// \param[in] v_ima_ A vertex image.
- /// \param[in] fv_ A function mapping a vertex ids to a value.
- /// The result is associated to the corresponding edge.
+ /// \param[in] fv_ A predicate on a vertex's value.
+ /// The (Boolean) result is associated to the
+ /// edges adjacent to the vertex.
///
/// \return an edge image without localization information mapped to
/// graph elements.
@@ -142,8 +143,8 @@ namespace mln
trace::entering("make::edge_image");
mln_precondition(exact(g).is_valid());
- p_vertices<G> pv(g);
- mln::edge_image<void,V,G> ima(pv, fv);
+ p_edges<G> pe(g);
+ mln::edge_image<void,V,G> ima(pe, fv);
trace::exiting("make::edge_image");
return ima;
@@ -183,8 +184,8 @@ namespace mln
const G& g = exact(g_);
mln_precondition(g.is_valid());
- p_vertices<G,FP> pv(g,fp);
- mln::edge_image<mln_result(FP),mln_result(FV),G> ima(pv, fv);
+ p_edges<G,FP> pe(g,fp);
+ mln::edge_image<mln_result(FP),mln_result(FV),G> ima(pe, fv);
trace::exiting("make::edge_image");
return ima;
@@ -256,7 +257,6 @@ namespace mln
const v_ima_t& v_ima = exact(v_ima_);
mln_precondition(v_ima.is_valid());
-
p_edges<G> pe(v_ima.domain().graph());
typedef mln::edge_image<void,bool,G> edge_ima_t;
edge_ima_t ima_e(pe);
@@ -269,8 +269,7 @@ namespace mln
typename v_ima_t::edge_win_t win;
mln_qiter(v_ima_t::edge_win_t) q(win, p);
for_all(q)
- std::cout << q << std::endl;
-// ima_e(q) = false;
+ ima_e(q) = false;
}
trace::exiting("make::edge_image");
--
1.5.6.5
1
0
last-svn-commit-154-g4c42b80 Upload only branches master and next, in their own directories.
by Roland Levillain 10 May '10
by Roland Levillain 10 May '10
10 May '10
* lrde-upload.sh: Here.
Inspired from Vaucanson's lrde-upload.sh.
---
ChangeLog | 7 +++++++
lrde-upload.sh | 36 +++++++++++++++++++++++++++++++++---
2 files changed, 40 insertions(+), 3 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 777b51f..953c68b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2010-05-10 Roland Levillain <roland(a)lrde.epita.fr>
+
+ Upload only branches master and next, in their own directories.
+
+ * lrde-upload.sh: Here.
+ Inspired from Vaucanson's lrde-upload.sh.
+
2010-04-29 Roland Levillain <roland(a)lrde.epita.fr>
Upload only the HTML version of the user reference manual.
diff --git a/lrde-upload.sh b/lrde-upload.sh
index a4441c5..8a30466 100755
--- a/lrde-upload.sh
+++ b/lrde-upload.sh
@@ -5,13 +5,43 @@
set -ex
-DEST=/lrde/dload/olena/snapshots
+# Layout of /lrde/dload/olena/snapshots:
+#
+# /lrde/dload/olena/snapshots
+# |-- master
+# | |-- doc
+# | | `-- milena
+# | | `-- ...
+# | |-- olena-$VERSION-snapshot-master-$date.tar.bz2
+# | `-- olena-$VERSION-snapshot-master-$date.tar.gz
+# `-- next
+# |-- doc
+# | `-- milena
+# | `-- ...
+# |-- olena-$VERSION-snapshot-next-$date.tar.bz2
+# `-- olena-$VERSION-snapshot-next-$date.tar.gz
+
+# Buildbot will tell us the name of the branch being compiled using $1.
+branch=$1
+
+case "$branch" in
+ # Consider these branches only.
+ master|next) ;;
+ # Don't upload other branches.
+ *) exit ;;
+esac
+
+subdir=$branch
+suffix=snapshot-$branch
+
+DEST=/lrde/dload/olena/snapshots/$subdir
DEST_DOC=$DEST/doc/milena
# Retrieve the package version
VERSION=`autoconf --trace='AC_INIT:$2'`
-CURRENT_DATE=`date +'%d_%m_%y'`
-REV=$VERSION-snapshot-$CURRENT_DATE
+
+date=`date +'%Y-%m-%d'`
+REV=$VERSION-$suffix-$date
# Always do "cp then mv" when uploading the file, so that nobody
# can start a download while the destination file is incomplete.
--
1.5.6.5
1
0
* configure.ac (AM_INIT_AUTOMAKE): Add option `dist-xz'.
---
ChangeLog | 6 ++++++
configure.ac | 2 +-
2 files changed, 7 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 93027f0..8ae9847 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2010-04-22 Roland Levillain <roland(a)lrde.epita.fr>
+
+ Distribute xz archives.
+
+ * configure.ac (AM_INIT_AUTOMAKE): Add option `dist-xz'.
+
2010-04-26 Roland Levillain <roland(a)lrde.epita.fr>
Enable parallel tests.
diff --git a/configure.ac b/configure.ac
index 617d39c..42b67ee 100644
--- a/configure.ac
+++ b/configure.ac
@@ -20,7 +20,7 @@ AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_FILES([build-aux/Makefile])
# Automake.
-AM_INIT_AUTOMAKE([1.11 subdir-objects check-news dist-bzip2
+AM_INIT_AUTOMAKE([1.11 subdir-objects check-news dist-bzip2 dist-xz
nostdinc parallel-tests -Wall])
# Package metadata.
--
1.5.6.5
1
0
* scribo.mk, tests/tests.mk (AM_CPPFLAGS): Move...
* common.mk: ...here.
---
scribo/ChangeLog | 7 +++++++
scribo/common.mk | 4 ++++
scribo/scribo.mk | 3 ---
scribo/tests/tests.mk | 2 --
4 files changed, 11 insertions(+), 5 deletions(-)
diff --git a/scribo/ChangeLog b/scribo/ChangeLog
index 5cb33cb..ff69b44 100644
--- a/scribo/ChangeLog
+++ b/scribo/ChangeLog
@@ -1,5 +1,12 @@
2010-04-22 Roland Levillain <roland(a)lrde.epita.fr>
+ Factor Makefiles' helpers.
+
+ * scribo.mk, tests/tests.mk (AM_CPPFLAGS): Move...
+ * common.mk: ...here.
+
+2010-04-22 Roland Levillain <roland(a)lrde.epita.fr>
+
Use AM_DEFAULT_SOURCE_EXT to simplify Scribo's Makefiles.
* common.mk: New.
diff --git a/scribo/common.mk b/scribo/common.mk
index 3623290..ef59d88 100644
--- a/scribo/common.mk
+++ b/scribo/common.mk
@@ -20,3 +20,7 @@
# C++ sources.
AM_DEFAULT_SOURCE_EXT = .cc
+
+# Add paths to Scribo's headers.
+AM_CPPFLAGS = -I$(top_srcdir)/ -I$(top_builddir)/ \
+ -I$(top_srcdir)/milena -I$(top_builddir)/milena
diff --git a/scribo/scribo.mk b/scribo/scribo.mk
index fde171a..87eac3e 100644
--- a/scribo/scribo.mk
+++ b/scribo/scribo.mk
@@ -16,7 +16,4 @@
include $(top_srcdir)/scribo/common.mk
-# Add path to Scribo's headers
-AM_CPPFLAGS = -I$(top_srcdir)/ -I$(top_builddir)/ -I$(top_srcdir)/milena -I$(top_builddir)/milena
-
AM_CXXFLAGS = -DNDEBUG -O2
diff --git a/scribo/tests/tests.mk b/scribo/tests/tests.mk
index 1cf0ffe..44557f0 100644
--- a/scribo/tests/tests.mk
+++ b/scribo/tests/tests.mk
@@ -16,6 +16,4 @@
include $(top_srcdir)/scribo/common.mk
-AM_CPPFLAGS = -I$(top_srcdir)/ -I$(top_builddir)/ -I$(top_srcdir)/milena -I$(top_builddir)/milena
-
AM_CXXFLAGS = -g -O0
--
1.5.6.5
1
0
last-svn-commit-158-g74142ad Use AM_DEFAULT_SOURCE_EXT to simplify Scribo's Makefiles.
by Roland Levillain 07 May '10
by Roland Levillain 07 May '10
07 May '10
* common.mk: New.
Include it...
* scribo.mk,
* tests/tests.mk:
...here.
* src/Makefile.am,
* src/binarization/Makefile.am,
* src/debug/Makefile.am,
* src/filter/Makefile.am,
* src/misc/Makefile.am,
* src/multi_scale/Makefile.am,
* src/preprocessing/Makefile.am,
* src/primitive/extract/Makefile.am,
* src/primitive/find/Makefile.am,
* src/primitive/group/Makefile.am,
* src/table/Makefile.am,
* src/text/Makefile.am,
* tests/filter/Makefile.am,
* tests/preprocessing/Makefile.am,
* tests/table/Makefile.am:
Remove (now useless) `*_SOURCES' variables using
sed -ri '/^(\s|#)*\S+_SOURCES\s*=\s*\S+.cc\s*$/d'.
* tests/unit_test/build_unit_test.sh: No longer output `*_SOURCES'
variables.
* tests/unit_test/unit-tests.mk: Regen.
---
scribo/ChangeLog | 30 ++++++
{milena => scribo}/common.mk | 0
scribo/scribo.mk | 5 +-
scribo/src/Makefile.am | 7 +--
scribo/src/binarization/Makefile.am | 6 +-
scribo/src/debug/Makefile.am | 20 +----
scribo/src/filter/Makefile.am | 6 +-
scribo/src/misc/Makefile.am | 7 +--
scribo/src/multi_scale/Makefile.am | 3 +-
scribo/src/preprocessing/Makefile.am | 5 +-
scribo/src/primitive/extract/Makefile.am | 8 +--
scribo/src/primitive/find/Makefile.am | 7 +--
scribo/src/primitive/group/Makefile.am | 10 +--
scribo/src/table/Makefile.am | 6 +-
scribo/src/text/Makefile.am | 4 +-
scribo/tests/filter/Makefile.am | 3 +-
scribo/tests/preprocessing/Makefile.am | 3 +-
scribo/tests/table/Makefile.am | 4 +-
scribo/tests/tests.mk | 4 +-
scribo/tests/unit_test/build_unit_test.sh | 9 +--
scribo/tests/unit_test/unit-tests.mk | 139 -----------------------------
21 files changed, 52 insertions(+), 234 deletions(-)
copy {milena => scribo}/common.mk (100%)
diff --git a/scribo/ChangeLog b/scribo/ChangeLog
index ef877c8..5cb33cb 100644
--- a/scribo/ChangeLog
+++ b/scribo/ChangeLog
@@ -1,3 +1,33 @@
+2010-04-22 Roland Levillain <roland(a)lrde.epita.fr>
+
+ Use AM_DEFAULT_SOURCE_EXT to simplify Scribo's Makefiles.
+
+ * common.mk: New.
+ Include it...
+ * scribo.mk,
+ * tests/tests.mk:
+ ...here.
+ * src/Makefile.am,
+ * src/binarization/Makefile.am,
+ * src/debug/Makefile.am,
+ * src/filter/Makefile.am,
+ * src/misc/Makefile.am,
+ * src/multi_scale/Makefile.am,
+ * src/preprocessing/Makefile.am,
+ * src/primitive/extract/Makefile.am,
+ * src/primitive/find/Makefile.am,
+ * src/primitive/group/Makefile.am,
+ * src/table/Makefile.am,
+ * src/text/Makefile.am,
+ * tests/filter/Makefile.am,
+ * tests/preprocessing/Makefile.am,
+ * tests/table/Makefile.am:
+ Remove (now useless) `*_SOURCES' variables using
+ sed -ri '/^(\s|#)*\S+_SOURCES\s*=\s*\S+.cc\s*$/d'.
+ * tests/unit_test/build_unit_test.sh: No longer output `*_SOURCES'
+ variables.
+ * tests/unit_test/unit-tests.mk: Regen.
+
2010-04-27 Roland Levillain <roland(a)lrde.epita.fr>
Help g++ 3.3 compile Scribo code.
diff --git a/milena/common.mk b/scribo/common.mk
similarity index 100%
copy from milena/common.mk
copy to scribo/common.mk
diff --git a/scribo/scribo.mk b/scribo/scribo.mk
index 62ffcad..fde171a 100644
--- a/scribo/scribo.mk
+++ b/scribo/scribo.mk
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -14,8 +14,9 @@
# You should have received a copy of the GNU General Public License
# along with Olena. If not, see <http://www.gnu.org/licenses/>.
+include $(top_srcdir)/scribo/common.mk
# Add path to Scribo's headers
AM_CPPFLAGS = -I$(top_srcdir)/ -I$(top_builddir)/ -I$(top_srcdir)/milena -I$(top_builddir)/milena
-AM_CXXFLAGS = -DNDEBUG -O2
\ No newline at end of file
+AM_CXXFLAGS = -DNDEBUG -O2
diff --git a/scribo/src/Makefile.am b/scribo/src/Makefile.am
index 6cc4229..faf86e4 100644
--- a/scribo/src/Makefile.am
+++ b/scribo/src/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -36,9 +36,6 @@ bin_PROGRAMS = \
text_in_photo_invert
-text_in_photo_SOURCES = text_in_photo.cc
-text_in_photo_ppm_SOURCES = text_in_photo_ppm.cc
-text_in_photo_invert_SOURCES = text_in_photo_invert.cc
@@ -46,7 +43,6 @@ if HAVE_TESSERACT
if HAVE_TIFF
bin_PROGRAMS += text_in_doc
- text_in_doc_SOURCES = text_in_doc.cc
text_in_doc_CPPFLAGS = $(AM_CPPFLAGS) \
$(TESSERACT_CPPFLAGS) \
$(TIFF_CPPFLAGS)
@@ -56,7 +52,6 @@ if HAVE_TIFF
-lpthread -lhpdf
bin_PROGRAMS += text_in_doc_ppm
- text_in_doc_ppm_SOURCES = text_in_doc_ppm.cc
text_in_doc_ppm_CPPFLAGS = $(AM_CPPFLAGS) \
$(TESSERACT_CPPFLAGS) \
$(TIFF_CPPFLAGS)
diff --git a/scribo/src/binarization/Makefile.am b/scribo/src/binarization/Makefile.am
index 531d4cf..0143e20 100644
--- a/scribo/src/binarization/Makefile.am
+++ b/scribo/src/binarization/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -25,8 +25,4 @@ bin_PROGRAMS = \
sauvola_pgm \
simple
-sauvola_SOURCES = sauvola.cc
-sauvola_ms_SOURCES = sauvola_ms.cc
-sauvola_pgm_SOURCES = sauvola_pgm.cc
-simple_SOURCES = simple.cc
diff --git a/scribo/src/debug/Makefile.am b/scribo/src/debug/Makefile.am
index 36bbfcb..9be6161 100644
--- a/scribo/src/debug/Makefile.am
+++ b/scribo/src/debug/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -38,24 +38,6 @@ bin_PROGRAMS = \
show_objects_thick \
show_objects_thin
-show_left_right_links_validation_SOURCES = show_left_right_links_validation.cc
-show_links_bbox_h_ratio_SOURCES = show_links_bbox_h_ratio.cc
-show_links_bbox_overlap_SOURCES = show_links_bbox_overlap.cc
-show_links_bottom_aligned_SOURCES = show_links_bottom_aligned.cc
-show_links_center_aligned_SOURCES = show_links_center_aligned.cc
-show_links_non_h_aligned_SOURCES = show_links_non_h_aligned.cc
-show_links_several_right_SOURCES = show_links_several_right.cc
-show_links_single_left_SOURCES = show_links_single_left.cc
-show_links_single_left_dmax_ratio_SOURCES = show_links_single_left_dmax_ratio.cc
-show_links_single_right_SOURCES = show_links_single_right.cc
-show_links_single_right_dmax_ratio_SOURCES = show_links_single_right_dmax_ratio.cc
-show_links_top_aligned_SOURCES = show_links_top_aligned.cc
-show_objects_large_SOURCES = show_objects_large.cc
-show_objects_large_small_SOURCES = show_objects_large_small.cc
-show_objects_small_SOURCES = show_objects_small.cc
-show_objects_thick_SOURCES = show_objects_thick.cc
-show_objects_thin_SOURCES = show_objects_thin.cc
## FIXME: Does not compile.
## bin_PROGRAMS += show_links_several_right_overlap
-## show_links_several_right_overlap_SOURCES = show_links_several_right_overlap.cc
diff --git a/scribo/src/filter/Makefile.am b/scribo/src/filter/Makefile.am
index e8a2b9c..342d3af 100644
--- a/scribo/src/filter/Makefile.am
+++ b/scribo/src/filter/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -25,7 +25,3 @@ bin_PROGRAMS = \
objects_thick \
objects_thin
-objects_large_SOURCES = objects_large.cc
-objects_small_SOURCES = objects_small.cc
-objects_thick_SOURCES = objects_thick.cc
-objects_thin_SOURCES = objects_thin.cc
diff --git a/scribo/src/misc/Makefile.am b/scribo/src/misc/Makefile.am
index dc64bb9..b804867 100644
--- a/scribo/src/misc/Makefile.am
+++ b/scribo/src/misc/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -26,9 +26,4 @@ bin_PROGRAMS = \
rectangularity \
superpose
-dmap_SOURCES = dmap.cc
-morpho_SOURCES = morpho.cc
-negate_SOURCES = negate.cc
-rectangularity_SOURCES = rectangularity.cc
-superpose_SOURCES = superpose.cc
diff --git a/scribo/src/multi_scale/Makefile.am b/scribo/src/multi_scale/Makefile.am
index f3dfb42..a9425fc 100644
--- a/scribo/src/multi_scale/Makefile.am
+++ b/scribo/src/multi_scale/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -22,5 +22,4 @@ include $(top_srcdir)/scribo/scribo.mk
bin_PROGRAMS = \
find_lines
-find_lines_SOURCES = find_lines.cc
diff --git a/scribo/src/preprocessing/Makefile.am b/scribo/src/preprocessing/Makefile.am
index 8c1cd80..e070fc7 100644
--- a/scribo/src/preprocessing/Makefile.am
+++ b/scribo/src/preprocessing/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -24,6 +24,3 @@ bin_PROGRAMS = \
split_bg_fg \
unskew
-preprocess_SOURCES = preprocess.cc
-split_bg_fg_SOURCES = split_bg_fg.cc
-unskew_SOURCES = unskew.cc
diff --git a/scribo/src/primitive/extract/Makefile.am b/scribo/src/primitive/extract/Makefile.am
index 7e1ea78..77b72d9 100644
--- a/scribo/src/primitive/extract/Makefile.am
+++ b/scribo/src/primitive/extract/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -28,10 +28,4 @@ bin_PROGRAMS = \
extract_thick_hlines \
lines_pattern
-extract_discontinued_lines_SOURCES = extract_discontinued_lines.cc
-extract_discontinued_vlines_SOURCES = extract_discontinued_vlines.cc
-extract_discontinued_hlines_SOURCES = extract_discontinued_hlines.cc
-extract_thick_vlines_SOURCES = extract_thick_vlines.cc
-extract_thick_hlines_SOURCES = extract_thick_hlines.cc
-lines_pattern_SOURCES = lines_pattern.cc
diff --git a/scribo/src/primitive/find/Makefile.am b/scribo/src/primitive/find/Makefile.am
index 93a3920..a36d1c7 100644
--- a/scribo/src/primitive/find/Makefile.am
+++ b/scribo/src/primitive/find/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -27,10 +27,5 @@ bin_PROGRAMS = \
find_thick_lines \
find_thick_and_single_lines
-find_discontinued_lines_SOURCES = find_discontinued_lines.cc
-find_pattern_lines_SOURCES = find_pattern_lines.cc
-find_single_lines_SOURCES = find_single_lines.cc
-find_thick_lines_SOURCES = find_thick_lines.cc
-find_thick_and_single_lines_SOURCES = find_thick_and_single_lines.cc
diff --git a/scribo/src/primitive/group/Makefile.am b/scribo/src/primitive/group/Makefile.am
index e52e373..d2ee615 100644
--- a/scribo/src/primitive/group/Makefile.am
+++ b/scribo/src/primitive/group/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -28,14 +28,6 @@ bin_PROGRAMS = \
group_from_several_left_links \
group_from_single_link
-group_from_double_link_SOURCES = group_from_double_link.cc
-group_from_double_link_filter_non_aligned_SOURCES = group_from_double_link_filter_non_aligned.cc
-group_from_double_several_links_SOURCES = group_from_double_several_links.cc
-group_from_graph_SOURCES = group_from_graph.cc
-group_from_several_graph_SOURCES = group_from_several_graph.cc
-group_from_several_left_links_SOURCES = group_from_several_left_links.cc
-group_from_single_link_SOURCES = group_from_single_link.cc
## FIXME: Does not compile.
## bin_PROGRAMS += group_from_rag
-## group_from_rag_SOURCES = group_from_rag.cc
diff --git a/scribo/src/table/Makefile.am b/scribo/src/table/Makefile.am
index 334d5f9..bb3c9c3 100644
--- a/scribo/src/table/Makefile.am
+++ b/scribo/src/table/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -26,7 +26,3 @@ bin_PROGRAMS = \
rebuild_rank
-erase_SOURCES = erase.cc
-extract_SOURCES = extract.cc
-rebuild_opening_SOURCES = rebuild_opening.cc
-rebuild_rank_SOURCES = rebuild_rank.cc
diff --git a/scribo/src/text/Makefile.am b/scribo/src/text/Makefile.am
index b84e0dd..ab21f8a 100644
--- a/scribo/src/text/Makefile.am
+++ b/scribo/src/text/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -23,14 +23,12 @@ bin_PROGRAMS = \
cleantxt
-cleantxt_SOURCES = cleantxt.cc
if HAVE_TESSERACT
if HAVE_TIFF
bin_PROGRAMS += recognition
- recognition_SOURCES = recognition.cc
recognition_CPPFLAGS = $(AM_CPPFLAGS) \
$(TESSERACT_CPPFLAGS) \
$(TIFF_CPPFLAGS)
diff --git a/scribo/tests/filter/Makefile.am b/scribo/tests/filter/Makefile.am
index fd3299e..20a9999 100644
--- a/scribo/tests/filter/Makefile.am
+++ b/scribo/tests/filter/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -22,6 +22,5 @@ include $(top_srcdir)/scribo/tests/tests.mk
check_PROGRAMS = \
small_and_large_bboxes
-small_and_large_bboxes_SOURCES = small_and_large_bboxes.cc
TESTS = $(check_PROGRAMS)
diff --git a/scribo/tests/preprocessing/Makefile.am b/scribo/tests/preprocessing/Makefile.am
index 5182bc0..6ff18c0 100644
--- a/scribo/tests/preprocessing/Makefile.am
+++ b/scribo/tests/preprocessing/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -22,7 +22,6 @@ include $(top_srcdir)/scribo/tests/tests.mk
check_PROGRAMS = \
unskew
-unskew_SOURCES = unskew.cc
TESTS = $(check_PROGRAMS)
diff --git a/scribo/tests/table/Makefile.am b/scribo/tests/table/Makefile.am
index 0c15a63..1818cf6 100644
--- a/scribo/tests/table/Makefile.am
+++ b/scribo/tests/table/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -23,7 +23,5 @@ check_PROGRAMS = \
extract_lines_with_rank \
repair_lines
-extract_lines_with_rank_SOURCES = extract_lines_with_rank.cc
-repair_lines_SOURCES = repair_lines.cc
TESTS = $(check_PROGRAMS)
diff --git a/scribo/tests/tests.mk b/scribo/tests/tests.mk
index bc9b2d9..1cf0ffe 100644
--- a/scribo/tests/tests.mk
+++ b/scribo/tests/tests.mk
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -14,6 +14,8 @@
# You should have received a copy of the GNU General Public License
# along with Olena. If not, see <http://www.gnu.org/licenses/>.
+include $(top_srcdir)/scribo/common.mk
+
AM_CPPFLAGS = -I$(top_srcdir)/ -I$(top_builddir)/ -I$(top_srcdir)/milena -I$(top_builddir)/milena
AM_CXXFLAGS = -g -O0
diff --git a/scribo/tests/unit_test/build_unit_test.sh b/scribo/tests/unit_test/build_unit_test.sh
index 415ff95..6f8d19e 100755
--- a/scribo/tests/unit_test/build_unit_test.sh
+++ b/scribo/tests/unit_test/build_unit_test.sh
@@ -75,11 +75,4 @@ EOF
$ECHO_N "${TARGET}" >>"$output"
done
-# Build "$output".
-echo "" >>"$output"
-echo "" >>"$output"
-for i in $HEADERS; do
- FILE_CC=`echo $i | sed 's/[/.]/_/g' | sed 's/_hh/\.cc/g'`
- NAME=`echo $FILE_CC | sed 's/\.cc//g'`
- echo "${NAME}_SOURCES = $FILE_CC" >>"$output"
-done
+echo >>"$output"
diff --git a/scribo/tests/unit_test/unit-tests.mk b/scribo/tests/unit_test/unit-tests.mk
index 055b90e..640d76a 100644
--- a/scribo/tests/unit_test/unit-tests.mk
+++ b/scribo/tests/unit_test/unit-tests.mk
@@ -139,142 +139,3 @@ scribo_text_clean \
scribo_text_extract_lines \
scribo_util_all \
scribo_util_text
-
-scribo_all_SOURCES = scribo_all.cc
-scribo_binarization_binarize_SOURCES = scribo_binarization_binarize.cc
-scribo_binarization_sauvola_SOURCES = scribo_binarization_sauvola.cc
-scribo_binarization_sauvola_threshold_SOURCES = scribo_binarization_sauvola_threshold.cc
-scribo_binarization_simple_SOURCES = scribo_binarization_simple.cc
-scribo_core_all_SOURCES = scribo_core_all.cc
-scribo_core_central_sites_SOURCES = scribo_core_central_sites.cc
-scribo_core_concept_link_functor_SOURCES = scribo_core_concept_link_functor.cc
-scribo_core_erase_objects_SOURCES = scribo_core_erase_objects.cc
-scribo_core_internal_link_functor_base_SOURCES = scribo_core_internal_link_functor_base.cc
-scribo_core_macros_SOURCES = scribo_core_macros.cc
-scribo_core_object_groups_SOURCES = scribo_core_object_groups.cc
-scribo_core_object_image_SOURCES = scribo_core_object_image.cc
-scribo_core_object_links_SOURCES = scribo_core_object_links.cc
-scribo_debug_alignment_decision_image_SOURCES = scribo_debug_alignment_decision_image.cc
-scribo_debug_all_SOURCES = scribo_debug_all.cc
-scribo_debug_decision_image_SOURCES = scribo_debug_decision_image.cc
-scribo_debug_links_decision_image_SOURCES = scribo_debug_links_decision_image.cc
-scribo_debug_save_bboxes_image_SOURCES = scribo_debug_save_bboxes_image.cc
-scribo_debug_save_label_image_SOURCES = scribo_debug_save_label_image.cc
-scribo_debug_save_linked_bboxes_image_SOURCES = scribo_debug_save_linked_bboxes_image.cc
-scribo_debug_save_object_diff_SOURCES = scribo_debug_save_object_diff.cc
-scribo_debug_save_table_image_SOURCES = scribo_debug_save_table_image.cc
-scribo_debug_several_links_decision_image_SOURCES = scribo_debug_several_links_decision_image.cc
-scribo_debug_usage_SOURCES = scribo_debug_usage.cc
-scribo_draw_all_SOURCES = scribo_draw_all.cc
-scribo_draw_bounding_box_links_SOURCES = scribo_draw_bounding_box_links.cc
-scribo_draw_bounding_boxes_SOURCES = scribo_draw_bounding_boxes.cc
-scribo_estim_object_groups_v_thickness_SOURCES = scribo_estim_object_groups_v_thickness.cc
-scribo_filter_all_SOURCES = scribo_filter_all.cc
-scribo_filter_common_objects_photo_SOURCES = scribo_filter_common_objects_photo.cc
-scribo_filter_internal_compute_SOURCES = scribo_filter_internal_compute.cc
-scribo_filter_object_groups_size_ratio_SOURCES = scribo_filter_object_groups_size_ratio.cc
-scribo_filter_object_groups_small_SOURCES = scribo_filter_object_groups_small.cc
-scribo_filter_object_groups_v_thickness_SOURCES = scribo_filter_object_groups_v_thickness.cc
-scribo_filter_object_links_bbox_h_ratio_SOURCES = scribo_filter_object_links_bbox_h_ratio.cc
-scribo_filter_object_links_bbox_overlap_SOURCES = scribo_filter_object_links_bbox_overlap.cc
-scribo_filter_object_links_bbox_ratio_SOURCES = scribo_filter_object_links_bbox_ratio.cc
-scribo_filter_object_links_bbox_w_ratio_SOURCES = scribo_filter_object_links_bbox_w_ratio.cc
-scribo_filter_object_links_bottom_aligned_SOURCES = scribo_filter_object_links_bottom_aligned.cc
-scribo_filter_object_links_center_aligned_SOURCES = scribo_filter_object_links_center_aligned.cc
-scribo_filter_object_links_non_aligned_SOURCES = scribo_filter_object_links_non_aligned.cc
-scribo_filter_object_links_non_aligned_simple_SOURCES = scribo_filter_object_links_non_aligned_simple.cc
-scribo_filter_object_links_non_h_aligned_SOURCES = scribo_filter_object_links_non_h_aligned.cc
-scribo_filter_object_links_non_v_aligned_SOURCES = scribo_filter_object_links_non_v_aligned.cc
-scribo_filter_object_links_top_aligned_SOURCES = scribo_filter_object_links_top_aligned.cc
-scribo_filter_objects_h_thick_SOURCES = scribo_filter_objects_h_thick.cc
-scribo_filter_objects_h_thin_SOURCES = scribo_filter_objects_h_thin.cc
-scribo_filter_objects_large_SOURCES = scribo_filter_objects_large.cc
-scribo_filter_objects_size_ratio_SOURCES = scribo_filter_objects_size_ratio.cc
-scribo_filter_objects_small_SOURCES = scribo_filter_objects_small.cc
-scribo_filter_objects_thick_SOURCES = scribo_filter_objects_thick.cc
-scribo_filter_objects_thin_SOURCES = scribo_filter_objects_thin.cc
-scribo_filter_objects_v_thick_SOURCES = scribo_filter_objects_v_thick.cc
-scribo_filter_objects_v_thin_SOURCES = scribo_filter_objects_v_thin.cc
-scribo_fun_v2b_objects_small_filter_SOURCES = scribo_fun_v2b_objects_small_filter.cc
-scribo_make_all_SOURCES = scribo_make_all.cc
-scribo_make_debug_filename_SOURCES = scribo_make_debug_filename.cc
-scribo_make_influence_zone_graph_SOURCES = scribo_make_influence_zone_graph.cc
-scribo_make_text_SOURCES = scribo_make_text.cc
-scribo_preprocessing_all_SOURCES = scribo_preprocessing_all.cc
-scribo_preprocessing_split_bg_fg_SOURCES = scribo_preprocessing_split_bg_fg.cc
-scribo_preprocessing_unskew_SOURCES = scribo_preprocessing_unskew.cc
-scribo_primitive_all_SOURCES = scribo_primitive_all.cc
-scribo_primitive_extract_all_SOURCES = scribo_primitive_extract_all.cc
-scribo_primitive_extract_canvas_SOURCES = scribo_primitive_extract_canvas.cc
-scribo_primitive_extract_cells_SOURCES = scribo_primitive_extract_cells.cc
-scribo_primitive_extract_lines_discontinued_SOURCES = scribo_primitive_extract_lines_discontinued.cc
-scribo_primitive_extract_lines_h_discontinued_SOURCES = scribo_primitive_extract_lines_h_discontinued.cc
-scribo_primitive_extract_lines_h_pattern_SOURCES = scribo_primitive_extract_lines_h_pattern.cc
-scribo_primitive_extract_lines_h_single_SOURCES = scribo_primitive_extract_lines_h_single.cc
-scribo_primitive_extract_lines_h_thick_SOURCES = scribo_primitive_extract_lines_h_thick.cc
-scribo_primitive_extract_lines_h_thick_and_single_SOURCES = scribo_primitive_extract_lines_h_thick_and_single.cc
-scribo_primitive_extract_lines_pattern_SOURCES = scribo_primitive_extract_lines_pattern.cc
-scribo_primitive_extract_lines_thick_SOURCES = scribo_primitive_extract_lines_thick.cc
-scribo_primitive_extract_lines_v_discontinued_SOURCES = scribo_primitive_extract_lines_v_discontinued.cc
-scribo_primitive_extract_lines_v_pattern_SOURCES = scribo_primitive_extract_lines_v_pattern.cc
-scribo_primitive_extract_lines_v_single_SOURCES = scribo_primitive_extract_lines_v_single.cc
-scribo_primitive_extract_lines_v_thick_SOURCES = scribo_primitive_extract_lines_v_thick.cc
-scribo_primitive_extract_lines_v_thick_and_single_SOURCES = scribo_primitive_extract_lines_v_thick_and_single.cc
-scribo_primitive_extract_objects_SOURCES = scribo_primitive_extract_objects.cc
-scribo_primitive_group_all_SOURCES = scribo_primitive_group_all.cc
-scribo_primitive_group_apply_SOURCES = scribo_primitive_group_apply.cc
-scribo_primitive_group_from_double_link_SOURCES = scribo_primitive_group_from_double_link.cc
-scribo_primitive_group_from_graph_SOURCES = scribo_primitive_group_from_graph.cc
-scribo_primitive_group_from_single_link_SOURCES = scribo_primitive_group_from_single_link.cc
-scribo_primitive_internal_all_SOURCES = scribo_primitive_internal_all.cc
-scribo_primitive_internal_find_graph_link_SOURCES = scribo_primitive_internal_find_graph_link.cc
-scribo_primitive_internal_find_left_link_SOURCES = scribo_primitive_internal_find_left_link.cc
-scribo_primitive_internal_find_right_link_SOURCES = scribo_primitive_internal_find_right_link.cc
-scribo_primitive_internal_find_root_SOURCES = scribo_primitive_internal_find_root.cc
-scribo_primitive_internal_have_link_valid_SOURCES = scribo_primitive_internal_have_link_valid.cc
-scribo_primitive_internal_init_link_array_SOURCES = scribo_primitive_internal_init_link_array.cc
-scribo_primitive_internal_is_invalid_link_SOURCES = scribo_primitive_internal_is_invalid_link.cc
-scribo_primitive_internal_is_link_valid_SOURCES = scribo_primitive_internal_is_link_valid.cc
-scribo_primitive_internal_update_graph_link_SOURCES = scribo_primitive_internal_update_graph_link.cc
-scribo_primitive_internal_update_link_array_SOURCES = scribo_primitive_internal_update_link_array.cc
-scribo_primitive_link_all_SOURCES = scribo_primitive_link_all.cc
-scribo_primitive_link_compute_SOURCES = scribo_primitive_link_compute.cc
-scribo_primitive_link_internal_anchors_3_SOURCES = scribo_primitive_link_internal_anchors_3.cc
-scribo_primitive_link_internal_find_link_SOURCES = scribo_primitive_link_internal_find_link.cc
-scribo_primitive_link_internal_link_center_dmax_base_SOURCES = scribo_primitive_link_internal_link_center_dmax_base.cc
-scribo_primitive_link_internal_link_center_dmax_ratio_base_SOURCES = scribo_primitive_link_internal_link_center_dmax_ratio_base.cc
-scribo_primitive_link_internal_link_functor_base_SOURCES = scribo_primitive_link_internal_link_functor_base.cc
-scribo_primitive_link_internal_link_ms_dmax_base_SOURCES = scribo_primitive_link_internal_link_ms_dmax_base.cc
-scribo_primitive_link_internal_link_ms_dmax_ratio_base_SOURCES = scribo_primitive_link_internal_link_ms_dmax_ratio_base.cc
-scribo_primitive_link_merge_double_link_SOURCES = scribo_primitive_link_merge_double_link.cc
-scribo_primitive_link_with_graph_SOURCES = scribo_primitive_link_with_graph.cc
-scribo_primitive_link_with_rag_SOURCES = scribo_primitive_link_with_rag.cc
-scribo_primitive_link_with_several_graphes_SOURCES = scribo_primitive_link_with_several_graphes.cc
-scribo_primitive_link_with_several_left_links_SOURCES = scribo_primitive_link_with_several_left_links.cc
-scribo_primitive_link_with_several_right_closest_links_SOURCES = scribo_primitive_link_with_several_right_closest_links.cc
-scribo_primitive_link_with_several_right_links_SOURCES = scribo_primitive_link_with_several_right_links.cc
-scribo_primitive_link_with_single_left_link_SOURCES = scribo_primitive_link_with_single_left_link.cc
-scribo_primitive_link_with_single_left_link_dmax_ratio_SOURCES = scribo_primitive_link_with_single_left_link_dmax_ratio.cc
-scribo_primitive_link_with_single_right_link_SOURCES = scribo_primitive_link_with_single_right_link.cc
-scribo_primitive_link_with_single_right_link_bottom_SOURCES = scribo_primitive_link_with_single_right_link_bottom.cc
-scribo_primitive_link_with_single_right_link_dmax_ratio_SOURCES = scribo_primitive_link_with_single_right_link_dmax_ratio.cc
-scribo_primitive_link_with_single_right_link_top_SOURCES = scribo_primitive_link_with_single_right_link_top.cc
-scribo_table_align_lines_horizontaly_SOURCES = scribo_table_align_lines_horizontaly.cc
-scribo_table_align_lines_verticaly_SOURCES = scribo_table_align_lines_verticaly.cc
-scribo_table_all_SOURCES = scribo_table_all.cc
-scribo_table_connect_horizontal_lines_SOURCES = scribo_table_connect_horizontal_lines.cc
-scribo_table_connect_vertical_lines_SOURCES = scribo_table_connect_vertical_lines.cc
-scribo_table_erase_SOURCES = scribo_table_erase.cc
-scribo_table_extract_SOURCES = scribo_table_extract.cc
-scribo_table_internal_align_lines_SOURCES = scribo_table_internal_align_lines.cc
-scribo_table_internal_all_SOURCES = scribo_table_internal_all.cc
-scribo_table_internal_connect_lines_SOURCES = scribo_table_internal_connect_lines.cc
-scribo_table_internal_repair_lines_SOURCES = scribo_table_internal_repair_lines.cc
-scribo_table_rebuild_SOURCES = scribo_table_rebuild.cc
-scribo_table_repair_horizontal_lines_SOURCES = scribo_table_repair_horizontal_lines.cc
-scribo_table_repair_vertical_lines_SOURCES = scribo_table_repair_vertical_lines.cc
-scribo_text_all_SOURCES = scribo_text_all.cc
-scribo_text_clean_SOURCES = scribo_text_clean.cc
-scribo_text_extract_lines_SOURCES = scribo_text_extract_lines.cc
-scribo_util_all_SOURCES = scribo_util_all.cc
-scribo_util_text_SOURCES = scribo_util_text.cc
--
1.5.6.5
1
0
last-svn-commit-156-gea5d265 Simplify build_unit_test.sh thanks to AM_DEFAULT_SOURCE_EXT.
by Roland Levillain 07 May '10
by Roland Levillain 07 May '10
07 May '10
* build-aux/build_unit_test.sh: No longer output `*_SOURCES'
variables.
---
ChangeLog | 7 +++++++
build-aux/build_unit_test.sh | 9 +--------
2 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 108b5af..03d747e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2010-04-22 Roland Levillain <roland(a)lrde.epita.fr>
+
+ Simplify build_unit_test.sh thanks to AM_DEFAULT_SOURCE_EXT.
+
+ * build-aux/build_unit_test.sh: No longer output `*_SOURCES'
+ variables.
+
2010-02-17 Roland Levillain <roland(a)lrde.epita.fr>
Require Automake 1.11.
diff --git a/build-aux/build_unit_test.sh b/build-aux/build_unit_test.sh
index 8080ef2..6436b27 100755
--- a/build-aux/build_unit_test.sh
+++ b/build-aux/build_unit_test.sh
@@ -82,11 +82,4 @@ EOF
$ECHO_N "${TARGET}" >>"$output"
done
-# Build "$output".
-echo "" >>"$output"
-echo "" >>"$output"
-for i in $HEADERS; do
- FILE_CC=`echo $i | sed 's/[/.]/_/g' | sed 's/_hh/\.cc/g'`
- NAME=`echo $FILE_CC | sed 's/\.cc//g'`
- echo "${NAME}_SOURCES = $FILE_CC" >>"$output"
-done
+echo >>"$output"
--
1.5.6.5
1
0
07 May '10
---
milena/ChangeLog | 4 +
milena/tests/unit_test/unit-tests.mk | 1298 ----------------------------------
2 files changed, 4 insertions(+), 1298 deletions(-)
diff --git a/milena/ChangeLog b/milena/ChangeLog
index 0fc13f8..f30028e 100644
--- a/milena/ChangeLog
+++ b/milena/ChangeLog
@@ -1,5 +1,9 @@
2010-04-22 Roland Levillain <roland(a)lrde.epita.fr>
+ * tests/unit_test/unit-tests.mk: Regen.
+
+2010-04-22 Roland Levillain <roland(a)lrde.epita.fr>
+
Use AM_DEFAULT_SOURCE_EXT to simplify Milena's Makefiles.
* common.mk: New.
diff --git a/milena/tests/unit_test/unit-tests.mk b/milena/tests/unit_test/unit-tests.mk
index 6a9d5d5..2a8b17b 100644
--- a/milena/tests/unit_test/unit-tests.mk
+++ b/milena/tests/unit_test/unit-tests.mk
@@ -1298,1301 +1298,3 @@ mln_world_inter_pixel_is_pixel \
mln_world_inter_pixel_is_separator \
mln_world_inter_pixel_neighb2d \
mln_world_inter_pixel_separator_to_pixels
-
-mln_accu_all_SOURCES = mln_accu_all.cc
-mln_accu_center_SOURCES = mln_accu_center.cc
-mln_accu_compute_SOURCES = mln_accu_compute.cc
-mln_accu_convolve_SOURCES = mln_accu_convolve.cc
-mln_accu_count_adjacent_vertices_SOURCES = mln_accu_count_adjacent_vertices.cc
-mln_accu_count_labels_SOURCES = mln_accu_count_labels.cc
-mln_accu_count_value_SOURCES = mln_accu_count_value.cc
-mln_accu_essential_SOURCES = mln_accu_essential.cc
-mln_accu_histo_SOURCES = mln_accu_histo.cc
-mln_accu_image_all_SOURCES = mln_accu_image_all.cc
-mln_accu_image_essential_SOURCES = mln_accu_image_essential.cc
-mln_accu_image_init_SOURCES = mln_accu_image_init.cc
-mln_accu_image_set_value_SOURCES = mln_accu_image_set_value.cc
-mln_accu_image_take_SOURCES = mln_accu_image_take.cc
-mln_accu_image_take_as_init_SOURCES = mln_accu_image_take_as_init.cc
-mln_accu_image_take_n_times_SOURCES = mln_accu_image_take_n_times.cc
-mln_accu_image_to_result_SOURCES = mln_accu_image_to_result.cc
-mln_accu_image_untake_SOURCES = mln_accu_image_untake.cc
-mln_accu_internal_base_SOURCES = mln_accu_internal_base.cc
-mln_accu_internal_couple_SOURCES = mln_accu_internal_couple.cc
-mln_accu_label_used_SOURCES = mln_accu_label_used.cc
-mln_accu_line_SOURCES = mln_accu_line.cc
-mln_accu_logic_all_SOURCES = mln_accu_logic_all.cc
-mln_accu_logic_land_SOURCES = mln_accu_logic_land.cc
-mln_accu_logic_land_basic_SOURCES = mln_accu_logic_land_basic.cc
-mln_accu_logic_lor_SOURCES = mln_accu_logic_lor.cc
-mln_accu_logic_lor_basic_SOURCES = mln_accu_logic_lor_basic.cc
-mln_accu_maj_h_SOURCES = mln_accu_maj_h.cc
-mln_accu_math_all_SOURCES = mln_accu_math_all.cc
-mln_accu_math_count_SOURCES = mln_accu_math_count.cc
-mln_accu_math_essential_SOURCES = mln_accu_math_essential.cc
-mln_accu_math_inf_SOURCES = mln_accu_math_inf.cc
-mln_accu_math_sum_SOURCES = mln_accu_math_sum.cc
-mln_accu_math_sup_SOURCES = mln_accu_math_sup.cc
-mln_accu_max_site_SOURCES = mln_accu_max_site.cc
-mln_accu_nil_SOURCES = mln_accu_nil.cc
-mln_accu_p_SOURCES = mln_accu_p.cc
-mln_accu_pair_SOURCES = mln_accu_pair.cc
-mln_accu_rms_SOURCES = mln_accu_rms.cc
-mln_accu_shape_all_SOURCES = mln_accu_shape_all.cc
-mln_accu_shape_bbox_SOURCES = mln_accu_shape_bbox.cc
-mln_accu_shape_essential_SOURCES = mln_accu_shape_essential.cc
-mln_accu_shape_height_SOURCES = mln_accu_shape_height.cc
-mln_accu_shape_volume_SOURCES = mln_accu_shape_volume.cc
-mln_accu_site_set_all_SOURCES = mln_accu_site_set_all.cc
-mln_accu_site_set_essential_SOURCES = mln_accu_site_set_essential.cc
-mln_accu_site_set_rectangularity_SOURCES = mln_accu_site_set_rectangularity.cc
-mln_accu_stat_all_SOURCES = mln_accu_stat_all.cc
-mln_accu_stat_deviation_SOURCES = mln_accu_stat_deviation.cc
-mln_accu_stat_essential_SOURCES = mln_accu_stat_essential.cc
-mln_accu_stat_max_SOURCES = mln_accu_stat_max.cc
-mln_accu_stat_max_h_SOURCES = mln_accu_stat_max_h.cc
-mln_accu_stat_mean_SOURCES = mln_accu_stat_mean.cc
-mln_accu_stat_median_alt_SOURCES = mln_accu_stat_median_alt.cc
-mln_accu_stat_median_h_SOURCES = mln_accu_stat_median_h.cc
-mln_accu_stat_min_SOURCES = mln_accu_stat_min.cc
-mln_accu_stat_min_h_SOURCES = mln_accu_stat_min_h.cc
-mln_accu_stat_min_max_SOURCES = mln_accu_stat_min_max.cc
-mln_accu_stat_rank_SOURCES = mln_accu_stat_rank.cc
-mln_accu_stat_rank_bool_SOURCES = mln_accu_stat_rank_bool.cc
-mln_accu_stat_rank_high_quant_SOURCES = mln_accu_stat_rank_high_quant.cc
-mln_accu_stat_var_SOURCES = mln_accu_stat_var.cc
-mln_accu_stat_variance_SOURCES = mln_accu_stat_variance.cc
-mln_accu_take_SOURCES = mln_accu_take.cc
-mln_accu_transform_SOURCES = mln_accu_transform.cc
-mln_accu_transform_diagonal_SOURCES = mln_accu_transform_diagonal.cc
-mln_accu_transform_directional_SOURCES = mln_accu_transform_directional.cc
-mln_accu_transform_line_SOURCES = mln_accu_transform_line.cc
-mln_accu_transform_snake_SOURCES = mln_accu_transform_snake.cc
-mln_accu_transform_stop_SOURCES = mln_accu_transform_stop.cc
-mln_accu_tuple_SOURCES = mln_accu_tuple.cc
-mln_accu_v_SOURCES = mln_accu_v.cc
-mln_algebra_all_SOURCES = mln_algebra_all.cc
-mln_algebra_essential_SOURCES = mln_algebra_essential.cc
-mln_algebra_h_mat_SOURCES = mln_algebra_h_mat.cc
-mln_algebra_h_vec_SOURCES = mln_algebra_h_vec.cc
-mln_algebra_mat_SOURCES = mln_algebra_mat.cc
-mln_algebra_quat_SOURCES = mln_algebra_quat.cc
-mln_algebra_vec_SOURCES = mln_algebra_vec.cc
-mln_all_SOURCES = mln_all.cc
-mln_arith_all_SOURCES = mln_arith_all.cc
-mln_arith_diff_abs_SOURCES = mln_arith_diff_abs.cc
-mln_arith_div_SOURCES = mln_arith_div.cc
-mln_arith_essential_SOURCES = mln_arith_essential.cc
-mln_arith_includes_SOURCES = mln_arith_includes.cc
-mln_arith_min_SOURCES = mln_arith_min.cc
-mln_arith_minus_SOURCES = mln_arith_minus.cc
-mln_arith_plus_SOURCES = mln_arith_plus.cc
-mln_arith_revert_SOURCES = mln_arith_revert.cc
-mln_arith_times_SOURCES = mln_arith_times.cc
-mln_binarization_all_SOURCES = mln_binarization_all.cc
-mln_binarization_binarization_SOURCES = mln_binarization_binarization.cc
-mln_binarization_essential_SOURCES = mln_binarization_essential.cc
-mln_binarization_includes_SOURCES = mln_binarization_includes.cc
-mln_binarization_threshold_SOURCES = mln_binarization_threshold.cc
-mln_border_adjust_SOURCES = mln_border_adjust.cc
-mln_border_all_SOURCES = mln_border_all.cc
-mln_border_duplicate_SOURCES = mln_border_duplicate.cc
-mln_border_equalize_SOURCES = mln_border_equalize.cc
-mln_border_essential_SOURCES = mln_border_essential.cc
-mln_border_fill_SOURCES = mln_border_fill.cc
-mln_border_find_SOURCES = mln_border_find.cc
-mln_border_get_SOURCES = mln_border_get.cc
-mln_border_mirror_SOURCES = mln_border_mirror.cc
-mln_border_resize_SOURCES = mln_border_resize.cc
-mln_border_resize_equal_SOURCES = mln_border_resize_equal.cc
-mln_border_thickness_SOURCES = mln_border_thickness.cc
-mln_canvas_all_SOURCES = mln_canvas_all.cc
-mln_canvas_browsing_all_SOURCES = mln_canvas_browsing_all.cc
-mln_canvas_browsing_backdiagonal2d_SOURCES = mln_canvas_browsing_backdiagonal2d.cc
-mln_canvas_browsing_breadth_first_search_SOURCES = mln_canvas_browsing_breadth_first_search.cc
-mln_canvas_browsing_depth_first_search_SOURCES = mln_canvas_browsing_depth_first_search.cc
-mln_canvas_browsing_diagonal2d_SOURCES = mln_canvas_browsing_diagonal2d.cc
-mln_canvas_browsing_dir_struct_elt_incr_update_SOURCES = mln_canvas_browsing_dir_struct_elt_incr_update.cc
-mln_canvas_browsing_directional_SOURCES = mln_canvas_browsing_directional.cc
-mln_canvas_browsing_essential_SOURCES = mln_canvas_browsing_essential.cc
-mln_canvas_browsing_fwd_SOURCES = mln_canvas_browsing_fwd.cc
-mln_canvas_browsing_hyper_directional_SOURCES = mln_canvas_browsing_hyper_directional.cc
-mln_canvas_browsing_internal_graph_first_search_SOURCES = mln_canvas_browsing_internal_graph_first_search.cc
-mln_canvas_browsing_snake_fwd_SOURCES = mln_canvas_browsing_snake_fwd.cc
-mln_canvas_browsing_snake_generic_SOURCES = mln_canvas_browsing_snake_generic.cc
-mln_canvas_browsing_snake_vert_SOURCES = mln_canvas_browsing_snake_vert.cc
-mln_canvas_chamfer_SOURCES = mln_canvas_chamfer.cc
-mln_canvas_distance_front_SOURCES = mln_canvas_distance_front.cc
-mln_canvas_distance_geodesic_SOURCES = mln_canvas_distance_geodesic.cc
-mln_canvas_essential_SOURCES = mln_canvas_essential.cc
-mln_canvas_labeling_all_SOURCES = mln_canvas_labeling_all.cc
-mln_canvas_labeling_blobs_SOURCES = mln_canvas_labeling_blobs.cc
-mln_canvas_labeling_essential_SOURCES = mln_canvas_labeling_essential.cc
-mln_canvas_labeling_generic_SOURCES = mln_canvas_labeling_generic.cc
-mln_canvas_labeling_internal_find_root_fastest_SOURCES = mln_canvas_labeling_internal_find_root_fastest.cc
-mln_canvas_labeling_internal_tests_SOURCES = mln_canvas_labeling_internal_tests.cc
-mln_canvas_labeling_sorted_SOURCES = mln_canvas_labeling_sorted.cc
-mln_canvas_labeling_video_SOURCES = mln_canvas_labeling_video.cc
-mln_canvas_morpho_all_SOURCES = mln_canvas_morpho_all.cc
-mln_canvas_morpho_attribute_filter_SOURCES = mln_canvas_morpho_attribute_filter.cc
-mln_canvas_morpho_essential_SOURCES = mln_canvas_morpho_essential.cc
-mln_canvas_morpho_internal_find_root_SOURCES = mln_canvas_morpho_internal_find_root.cc
-mln_convert_all_SOURCES = mln_convert_all.cc
-mln_convert_essential_SOURCES = mln_convert_essential.cc
-mln_convert_from_to_SOURCES = mln_convert_from_to.cc
-mln_convert_impl_all_SOURCES = mln_convert_impl_all.cc
-mln_convert_impl_from_double_to_value_SOURCES = mln_convert_impl_from_double_to_value.cc
-mln_convert_impl_from_float_to_value_SOURCES = mln_convert_impl_from_float_to_value.cc
-mln_convert_impl_from_image_to_site_set_SOURCES = mln_convert_impl_from_image_to_site_set.cc
-mln_convert_impl_from_int_to_value_SOURCES = mln_convert_impl_from_int_to_value.cc
-mln_convert_impl_from_site_set_to_image_SOURCES = mln_convert_impl_from_site_set_to_image.cc
-mln_convert_impl_from_unsigned_to_value_SOURCES = mln_convert_impl_from_unsigned_to_value.cc
-mln_convert_impl_from_value_to_value_SOURCES = mln_convert_impl_from_value_to_value.cc
-mln_convert_to_SOURCES = mln_convert_to.cc
-mln_convert_to_dpoint_SOURCES = mln_convert_to_dpoint.cc
-mln_convert_to_fun_SOURCES = mln_convert_to_fun.cc
-mln_convert_to_image_SOURCES = mln_convert_to_image.cc
-mln_convert_to_p_array_SOURCES = mln_convert_to_p_array.cc
-mln_convert_to_p_set_SOURCES = mln_convert_to_p_set.cc
-mln_convert_to_upper_window_SOURCES = mln_convert_to_upper_window.cc
-mln_convert_to_window_SOURCES = mln_convert_to_window.cc
-mln_core_a_point_of_SOURCES = mln_core_a_point_of.cc
-mln_core_alias_all_SOURCES = mln_core_alias_all.cc
-mln_core_alias_box1d_SOURCES = mln_core_alias_box1d.cc
-mln_core_alias_box2d_SOURCES = mln_core_alias_box2d.cc
-mln_core_alias_box2d_h_SOURCES = mln_core_alias_box2d_h.cc
-mln_core_alias_box3d_SOURCES = mln_core_alias_box3d.cc
-mln_core_alias_complex_geometry_SOURCES = mln_core_alias_complex_geometry.cc
-mln_core_alias_complex_image_SOURCES = mln_core_alias_complex_image.cc
-mln_core_alias_dpoint1d_SOURCES = mln_core_alias_dpoint1d.cc
-mln_core_alias_dpoint2d_SOURCES = mln_core_alias_dpoint2d.cc
-mln_core_alias_dpoint2d_h_SOURCES = mln_core_alias_dpoint2d_h.cc
-mln_core_alias_dpoint3d_SOURCES = mln_core_alias_dpoint3d.cc
-mln_core_alias_neighb1d_SOURCES = mln_core_alias_neighb1d.cc
-mln_core_alias_neighb2d_SOURCES = mln_core_alias_neighb2d.cc
-mln_core_alias_neighb3d_SOURCES = mln_core_alias_neighb3d.cc
-mln_core_alias_p_run2d_SOURCES = mln_core_alias_p_run2d.cc
-mln_core_alias_p_runs2d_SOURCES = mln_core_alias_p_runs2d.cc
-mln_core_alias_point1d_SOURCES = mln_core_alias_point1d.cc
-mln_core_alias_point2d_SOURCES = mln_core_alias_point2d.cc
-mln_core_alias_point2d_h_SOURCES = mln_core_alias_point2d_h.cc
-mln_core_alias_point3d_SOURCES = mln_core_alias_point3d.cc
-mln_core_alias_vec2d_SOURCES = mln_core_alias_vec2d.cc
-mln_core_alias_vec3d_SOURCES = mln_core_alias_vec3d.cc
-mln_core_alias_w_window1d_float_SOURCES = mln_core_alias_w_window1d_float.cc
-mln_core_alias_w_window1d_int_SOURCES = mln_core_alias_w_window1d_int.cc
-mln_core_alias_w_window2d_float_SOURCES = mln_core_alias_w_window2d_float.cc
-mln_core_alias_w_window2d_int_SOURCES = mln_core_alias_w_window2d_int.cc
-mln_core_alias_w_window3d_float_SOURCES = mln_core_alias_w_window3d_float.cc
-mln_core_alias_w_window3d_int_SOURCES = mln_core_alias_w_window3d_int.cc
-mln_core_alias_window1d_SOURCES = mln_core_alias_window1d.cc
-mln_core_alias_window2d_SOURCES = mln_core_alias_window2d.cc
-mln_core_alias_window3d_SOURCES = mln_core_alias_window3d.cc
-mln_core_all_SOURCES = mln_core_all.cc
-mln_core_box_runend_piter_SOURCES = mln_core_box_runend_piter.cc
-mln_core_box_runstart_piter_SOURCES = mln_core_box_runstart_piter.cc
-mln_core_category_SOURCES = mln_core_category.cc
-mln_core_concept_accumulator_SOURCES = mln_core_concept_accumulator.cc
-mln_core_concept_all_SOURCES = mln_core_concept_all.cc
-mln_core_concept_box_SOURCES = mln_core_concept_box.cc
-mln_core_concept_browsing_SOURCES = mln_core_concept_browsing.cc
-mln_core_concept_delta_point_site_SOURCES = mln_core_concept_delta_point_site.cc
-mln_core_concept_dpoint_SOURCES = mln_core_concept_dpoint.cc
-mln_core_concept_function_SOURCES = mln_core_concept_function.cc
-mln_core_concept_gdpoint_SOURCES = mln_core_concept_gdpoint.cc
-mln_core_concept_generalized_pixel_SOURCES = mln_core_concept_generalized_pixel.cc
-mln_core_concept_gpoint_SOURCES = mln_core_concept_gpoint.cc
-mln_core_concept_graph_SOURCES = mln_core_concept_graph.cc
-mln_core_concept_image_SOURCES = mln_core_concept_image.cc
-mln_core_concept_iterator_SOURCES = mln_core_concept_iterator.cc
-mln_core_concept_literal_SOURCES = mln_core_concept_literal.cc
-mln_core_concept_mesh_SOURCES = mln_core_concept_mesh.cc
-mln_core_concept_meta_accumulator_SOURCES = mln_core_concept_meta_accumulator.cc
-mln_core_concept_meta_function_SOURCES = mln_core_concept_meta_function.cc
-mln_core_concept_neighborhood_SOURCES = mln_core_concept_neighborhood.cc
-mln_core_concept_object_SOURCES = mln_core_concept_object.cc
-mln_core_concept_pixel_iterator_SOURCES = mln_core_concept_pixel_iterator.cc
-mln_core_concept_point_SOURCES = mln_core_concept_point.cc
-mln_core_concept_point_site_SOURCES = mln_core_concept_point_site.cc
-mln_core_concept_proxy_SOURCES = mln_core_concept_proxy.cc
-mln_core_concept_pseudo_site_SOURCES = mln_core_concept_pseudo_site.cc
-mln_core_concept_regular_grid_SOURCES = mln_core_concept_regular_grid.cc
-mln_core_concept_site_SOURCES = mln_core_concept_site.cc
-mln_core_concept_site_iterator_SOURCES = mln_core_concept_site_iterator.cc
-mln_core_concept_site_proxy_SOURCES = mln_core_concept_site_proxy.cc
-mln_core_concept_site_set_SOURCES = mln_core_concept_site_set.cc
-mln_core_concept_value_SOURCES = mln_core_concept_value.cc
-mln_core_concept_value_iterator_SOURCES = mln_core_concept_value_iterator.cc
-mln_core_concept_value_set_SOURCES = mln_core_concept_value_set.cc
-mln_core_concept_weighted_window_SOURCES = mln_core_concept_weighted_window.cc
-mln_core_concept_window_SOURCES = mln_core_concept_window.cc
-mln_core_contract_SOURCES = mln_core_contract.cc
-mln_core_def_all_SOURCES = mln_core_def_all.cc
-mln_core_def_coord_SOURCES = mln_core_def_coord.cc
-mln_core_def_coordf_SOURCES = mln_core_def_coordf.cc
-mln_core_def_essential_SOURCES = mln_core_def_essential.cc
-mln_core_def_low_quant_nbits_SOURCES = mln_core_def_low_quant_nbits.cc
-mln_core_dpoint_SOURCES = mln_core_dpoint.cc
-mln_core_dpoints_pixter_SOURCES = mln_core_dpoints_pixter.cc
-mln_core_dpsites_piter_SOURCES = mln_core_dpsites_piter.cc
-mln_core_essential_SOURCES = mln_core_essential.cc
-mln_core_faces_psite_SOURCES = mln_core_faces_psite.cc
-mln_core_grids_SOURCES = mln_core_grids.cc
-mln_core_image_all_SOURCES = mln_core_image_all.cc
-mln_core_image_ch_piter_SOURCES = mln_core_image_ch_piter.cc
-mln_core_image_complex_image_SOURCES = mln_core_image_complex_image.cc
-mln_core_image_complex_neighborhood_piter_SOURCES = mln_core_image_complex_neighborhood_piter.cc
-mln_core_image_complex_neighborhoods_SOURCES = mln_core_image_complex_neighborhoods.cc
-mln_core_image_complex_window_piter_SOURCES = mln_core_image_complex_window_piter.cc
-mln_core_image_complex_windows_SOURCES = mln_core_image_complex_windows.cc
-mln_core_image_dmorph_all_SOURCES = mln_core_image_dmorph_all.cc
-mln_core_image_dmorph_extended_SOURCES = mln_core_image_dmorph_extended.cc
-mln_core_image_dmorph_extension_fun_SOURCES = mln_core_image_dmorph_extension_fun.cc
-mln_core_image_dmorph_extension_ima_SOURCES = mln_core_image_dmorph_extension_ima.cc
-mln_core_image_dmorph_extension_val_SOURCES = mln_core_image_dmorph_extension_val.cc
-mln_core_image_dmorph_hexa_SOURCES = mln_core_image_dmorph_hexa.cc
-mln_core_image_dmorph_hexa_piter_SOURCES = mln_core_image_dmorph_hexa_piter.cc
-mln_core_image_dmorph_image2d_h_SOURCES = mln_core_image_dmorph_image2d_h.cc
-mln_core_image_dmorph_image_if_SOURCES = mln_core_image_dmorph_image_if.cc
-mln_core_image_dmorph_p2p_image_SOURCES = mln_core_image_dmorph_p2p_image.cc
-mln_core_image_dmorph_slice_image_SOURCES = mln_core_image_dmorph_slice_image.cc
-mln_core_image_dmorph_sub_image_SOURCES = mln_core_image_dmorph_sub_image.cc
-mln_core_image_dmorph_sub_image_if_SOURCES = mln_core_image_dmorph_sub_image_if.cc
-mln_core_image_dmorph_transformed_image_SOURCES = mln_core_image_dmorph_transformed_image.cc
-mln_core_image_dmorph_unproject_image_SOURCES = mln_core_image_dmorph_unproject_image.cc
-mln_core_image_edge_image_SOURCES = mln_core_image_edge_image.cc
-mln_core_image_essential_SOURCES = mln_core_image_essential.cc
-mln_core_image_flat_image_SOURCES = mln_core_image_flat_image.cc
-mln_core_image_graph_elt_mixed_neighborhood_SOURCES = mln_core_image_graph_elt_mixed_neighborhood.cc
-mln_core_image_graph_elt_mixed_window_SOURCES = mln_core_image_graph_elt_mixed_window.cc
-mln_core_image_graph_elt_neighborhood_SOURCES = mln_core_image_graph_elt_neighborhood.cc
-mln_core_image_graph_elt_neighborhood_if_SOURCES = mln_core_image_graph_elt_neighborhood_if.cc
-mln_core_image_graph_elt_window_SOURCES = mln_core_image_graph_elt_window.cc
-mln_core_image_graph_elt_window_if_SOURCES = mln_core_image_graph_elt_window_if.cc
-mln_core_image_graph_window_if_piter_SOURCES = mln_core_image_graph_window_if_piter.cc
-mln_core_image_graph_window_piter_SOURCES = mln_core_image_graph_window_piter.cc
-mln_core_image_image1d_SOURCES = mln_core_image_image1d.cc
-mln_core_image_image2d_SOURCES = mln_core_image_image2d.cc
-mln_core_image_image3d_SOURCES = mln_core_image_image3d.cc
-mln_core_image_imorph_all_SOURCES = mln_core_image_imorph_all.cc
-mln_core_image_imorph_decorated_image_SOURCES = mln_core_image_imorph_decorated_image.cc
-mln_core_image_imorph_interpolated_SOURCES = mln_core_image_imorph_interpolated.cc
-mln_core_image_imorph_labeled_image_SOURCES = mln_core_image_imorph_labeled_image.cc
-mln_core_image_imorph_lazy_image_SOURCES = mln_core_image_imorph_lazy_image.cc
-mln_core_image_imorph_plain_SOURCES = mln_core_image_imorph_plain.cc
-mln_core_image_imorph_safe_SOURCES = mln_core_image_imorph_safe.cc
-mln_core_image_imorph_tr_image_SOURCES = mln_core_image_imorph_tr_image.cc
-mln_core_image_vertex_image_SOURCES = mln_core_image_vertex_image.cc
-mln_core_image_vmorph_all_SOURCES = mln_core_image_vmorph_all.cc
-mln_core_image_vmorph_cast_image_SOURCES = mln_core_image_vmorph_cast_image.cc
-mln_core_image_vmorph_fun_image_SOURCES = mln_core_image_vmorph_fun_image.cc
-mln_core_image_vmorph_thru_image_SOURCES = mln_core_image_vmorph_thru_image.cc
-mln_core_image_vmorph_thrubin_image_SOURCES = mln_core_image_vmorph_thrubin_image.cc
-mln_core_image_vmorph_violent_cast_image_SOURCES = mln_core_image_vmorph_violent_cast_image.cc
-mln_core_internal_box_impl_SOURCES = mln_core_internal_box_impl.cc
-mln_core_internal_check_image_all_SOURCES = mln_core_internal_check_image_all.cc
-mln_core_internal_check_image_fastest_SOURCES = mln_core_internal_check_image_fastest.cc
-mln_core_internal_classical_window_base_SOURCES = mln_core_internal_classical_window_base.cc
-mln_core_internal_complex_neighborhood_base_SOURCES = mln_core_internal_complex_neighborhood_base.cc
-mln_core_internal_complex_window_base_SOURCES = mln_core_internal_complex_window_base.cc
-mln_core_internal_complex_window_p_base_SOURCES = mln_core_internal_complex_window_p_base.cc
-mln_core_internal_coord_impl_SOURCES = mln_core_internal_coord_impl.cc
-mln_core_internal_data_SOURCES = mln_core_internal_data.cc
-mln_core_internal_exact_SOURCES = mln_core_internal_exact.cc
-mln_core_internal_exact_gcc_2_95_SOURCES = mln_core_internal_exact_gcc_2_95.cc
-mln_core_internal_fixme_SOURCES = mln_core_internal_fixme.cc
-mln_core_internal_force_exact_SOURCES = mln_core_internal_force_exact.cc
-mln_core_internal_geom_bbox_SOURCES = mln_core_internal_geom_bbox.cc
-mln_core_internal_graph_psite_base_SOURCES = mln_core_internal_graph_psite_base.cc
-mln_core_internal_graph_window_base_SOURCES = mln_core_internal_graph_window_base.cc
-mln_core_internal_image_base_SOURCES = mln_core_internal_image_base.cc
-mln_core_internal_image_domain_morpher_SOURCES = mln_core_internal_image_domain_morpher.cc
-mln_core_internal_image_identity_SOURCES = mln_core_internal_image_identity.cc
-mln_core_internal_image_morpher_SOURCES = mln_core_internal_image_morpher.cc
-mln_core_internal_image_primary_SOURCES = mln_core_internal_image_primary.cc
-mln_core_internal_image_value_morpher_SOURCES = mln_core_internal_image_value_morpher.cc
-mln_core_internal_is_masked_impl_selector_SOURCES = mln_core_internal_is_masked_impl_selector.cc
-mln_core_internal_labeled_image_base_SOURCES = mln_core_internal_labeled_image_base.cc
-mln_core_internal_morpher_lvalue_SOURCES = mln_core_internal_morpher_lvalue.cc
-mln_core_internal_neighb_base_SOURCES = mln_core_internal_neighb_base.cc
-mln_core_internal_neighb_niter_base_SOURCES = mln_core_internal_neighb_niter_base.cc
-mln_core_internal_neighb_niter_impl_SOURCES = mln_core_internal_neighb_niter_impl.cc
-mln_core_internal_neighborhood_base_SOURCES = mln_core_internal_neighborhood_base.cc
-mln_core_internal_p_complex_piter_base_SOURCES = mln_core_internal_p_complex_piter_base.cc
-mln_core_internal_piter_adaptor_SOURCES = mln_core_internal_piter_adaptor.cc
-mln_core_internal_piter_identity_SOURCES = mln_core_internal_piter_identity.cc
-mln_core_internal_pixel_impl_SOURCES = mln_core_internal_pixel_impl.cc
-mln_core_internal_pixel_iterator_base_SOURCES = mln_core_internal_pixel_iterator_base.cc
-mln_core_internal_pseudo_site_base_SOURCES = mln_core_internal_pseudo_site_base.cc
-mln_core_internal_run_image_SOURCES = mln_core_internal_run_image.cc
-mln_core_internal_set_of_SOURCES = mln_core_internal_set_of.cc
-mln_core_internal_site_iterator_base_SOURCES = mln_core_internal_site_iterator_base.cc
-mln_core_internal_site_relative_iterator_base_SOURCES = mln_core_internal_site_relative_iterator_base.cc
-mln_core_internal_site_set_base_SOURCES = mln_core_internal_site_set_base.cc
-mln_core_internal_site_set_impl_SOURCES = mln_core_internal_site_set_impl.cc
-mln_core_internal_site_set_iterator_base_SOURCES = mln_core_internal_site_set_iterator_base.cc
-mln_core_internal_weighted_window_base_SOURCES = mln_core_internal_weighted_window_base.cc
-mln_core_internal_window_base_SOURCES = mln_core_internal_window_base.cc
-mln_core_macros_SOURCES = mln_core_macros.cc
-mln_core_mixed_neighb_SOURCES = mln_core_mixed_neighb.cc
-mln_core_neighb_SOURCES = mln_core_neighb.cc
-mln_core_pixel_SOURCES = mln_core_pixel.cc
-mln_core_pixter1d_SOURCES = mln_core_pixter1d.cc
-mln_core_pixter2d_SOURCES = mln_core_pixter2d.cc
-mln_core_pixter3d_SOURCES = mln_core_pixter3d.cc
-mln_core_point_SOURCES = mln_core_point.cc
-mln_core_routine_all_SOURCES = mln_core_routine_all.cc
-mln_core_routine_duplicate_SOURCES = mln_core_routine_duplicate.cc
-mln_core_routine_essential_SOURCES = mln_core_routine_essential.cc
-mln_core_routine_exact_SOURCES = mln_core_routine_exact.cc
-mln_core_routine_extend_SOURCES = mln_core_routine_extend.cc
-mln_core_routine_init_SOURCES = mln_core_routine_init.cc
-mln_core_routine_initialize_SOURCES = mln_core_routine_initialize.cc
-mln_core_routine_ops_SOURCES = mln_core_routine_ops.cc
-mln_core_routine_primary_SOURCES = mln_core_routine_primary.cc
-mln_core_site_set_all_SOURCES = mln_core_site_set_all.cc
-mln_core_site_set_attic_p_complex_faces_piter_SOURCES = mln_core_site_set_attic_p_complex_faces_piter.cc
-mln_core_site_set_attic_p_faces_piter_SOURCES = mln_core_site_set_attic_p_faces_piter.cc
-mln_core_site_set_box_SOURCES = mln_core_site_set_box.cc
-mln_core_site_set_box_piter_SOURCES = mln_core_site_set_box_piter.cc
-mln_core_site_set_complex_psite_SOURCES = mln_core_site_set_complex_psite.cc
-mln_core_site_set_essential_SOURCES = mln_core_site_set_essential.cc
-mln_core_site_set_operators_SOURCES = mln_core_site_set_operators.cc
-mln_core_site_set_p_array_SOURCES = mln_core_site_set_p_array.cc
-mln_core_site_set_p_centered_SOURCES = mln_core_site_set_p_centered.cc
-mln_core_site_set_p_complex_SOURCES = mln_core_site_set_p_complex.cc
-mln_core_site_set_p_complex_piter_SOURCES = mln_core_site_set_p_complex_piter.cc
-mln_core_site_set_p_double_SOURCES = mln_core_site_set_p_double.cc
-mln_core_site_set_p_edges_SOURCES = mln_core_site_set_p_edges.cc
-mln_core_site_set_p_edges_psite_SOURCES = mln_core_site_set_p_edges_psite.cc
-mln_core_site_set_p_faces_SOURCES = mln_core_site_set_p_faces.cc
-mln_core_site_set_p_graph_piter_SOURCES = mln_core_site_set_p_graph_piter.cc
-mln_core_site_set_p_if_SOURCES = mln_core_site_set_p_if.cc
-mln_core_site_set_p_if_piter_SOURCES = mln_core_site_set_p_if_piter.cc
-mln_core_site_set_p_image_SOURCES = mln_core_site_set_p_image.cc
-mln_core_site_set_p_key_SOURCES = mln_core_site_set_p_key.cc
-mln_core_site_set_p_line2d_SOURCES = mln_core_site_set_p_line2d.cc
-mln_core_site_set_p_mutable_array_of_SOURCES = mln_core_site_set_p_mutable_array_of.cc
-mln_core_site_set_p_n_faces_piter_SOURCES = mln_core_site_set_p_n_faces_piter.cc
-mln_core_site_set_p_priority_SOURCES = mln_core_site_set_p_priority.cc
-mln_core_site_set_p_queue_SOURCES = mln_core_site_set_p_queue.cc
-mln_core_site_set_p_queue_fast_SOURCES = mln_core_site_set_p_queue_fast.cc
-mln_core_site_set_p_run_SOURCES = mln_core_site_set_p_run.cc
-mln_core_site_set_p_run_piter_SOURCES = mln_core_site_set_p_run_piter.cc
-mln_core_site_set_p_set_SOURCES = mln_core_site_set_p_set.cc
-mln_core_site_set_p_set_of_SOURCES = mln_core_site_set_p_set_of.cc
-mln_core_site_set_p_transformed_SOURCES = mln_core_site_set_p_transformed.cc
-mln_core_site_set_p_transformed_piter_SOURCES = mln_core_site_set_p_transformed_piter.cc
-mln_core_site_set_p_vaccess_SOURCES = mln_core_site_set_p_vaccess.cc
-mln_core_site_set_p_vertices_SOURCES = mln_core_site_set_p_vertices.cc
-mln_core_site_set_p_vertices_psite_SOURCES = mln_core_site_set_p_vertices_psite.cc
-mln_core_tags_SOURCES = mln_core_tags.cc
-mln_core_trait_all_SOURCES = mln_core_trait_all.cc
-mln_core_trait_essential_SOURCES = mln_core_trait_essential.cc
-mln_core_trait_op_mult_SOURCES = mln_core_trait_op_mult.cc
-mln_core_trait_pixter_SOURCES = mln_core_trait_pixter.cc
-mln_core_trait_qlf_value_SOURCES = mln_core_trait_qlf_value.cc
-mln_core_var_SOURCES = mln_core_var.cc
-mln_core_w_window_SOURCES = mln_core_w_window.cc
-mln_core_window_SOURCES = mln_core_window.cc
-mln_data_abs_SOURCES = mln_data_abs.cc
-mln_data_all_SOURCES = mln_data_all.cc
-mln_data_apply_SOURCES = mln_data_apply.cc
-mln_data_approx_all_SOURCES = mln_data_approx_all.cc
-mln_data_approx_essential_SOURCES = mln_data_approx_essential.cc
-mln_data_approx_median_SOURCES = mln_data_approx_median.cc
-mln_data_compare_SOURCES = mln_data_compare.cc
-mln_data_compute_SOURCES = mln_data_compute.cc
-mln_data_convert_SOURCES = mln_data_convert.cc
-mln_data_essential_SOURCES = mln_data_essential.cc
-mln_data_fast_median_SOURCES = mln_data_fast_median.cc
-mln_data_fill_SOURCES = mln_data_fill.cc
-mln_data_fill_with_image_SOURCES = mln_data_fill_with_image.cc
-mln_data_fill_with_value_SOURCES = mln_data_fill_with_value.cc
-mln_data_median_SOURCES = mln_data_median.cc
-mln_data_memcpy__SOURCES = mln_data_memcpy_.cc
-mln_data_memset__SOURCES = mln_data_memset_.cc
-mln_data_naive_all_SOURCES = mln_data_naive_all.cc
-mln_data_naive_essential_SOURCES = mln_data_naive_essential.cc
-mln_data_naive_median_SOURCES = mln_data_naive_median.cc
-mln_data_paste_SOURCES = mln_data_paste.cc
-mln_data_paste_without_localization_SOURCES = mln_data_paste_without_localization.cc
-mln_data_replace_SOURCES = mln_data_replace.cc
-mln_data_saturate_SOURCES = mln_data_saturate.cc
-mln_data_sort_offsets_SOURCES = mln_data_sort_offsets.cc
-mln_data_sort_psites_SOURCES = mln_data_sort_psites.cc
-mln_data_stretch_SOURCES = mln_data_stretch.cc
-mln_data_to_enc_SOURCES = mln_data_to_enc.cc
-mln_data_transform_SOURCES = mln_data_transform.cc
-mln_data_transform_inplace_SOURCES = mln_data_transform_inplace.cc
-mln_data_update_SOURCES = mln_data_update.cc
-mln_data_was_median_SOURCES = mln_data_was_median.cc
-mln_data_wrap_SOURCES = mln_data_wrap.cc
-mln_debug_all_SOURCES = mln_debug_all.cc
-mln_debug_draw_graph_SOURCES = mln_debug_draw_graph.cc
-mln_debug_essential_SOURCES = mln_debug_essential.cc
-mln_debug_filename_SOURCES = mln_debug_filename.cc
-mln_debug_format_SOURCES = mln_debug_format.cc
-mln_debug_histo_SOURCES = mln_debug_histo.cc
-mln_debug_iota_SOURCES = mln_debug_iota.cc
-mln_debug_println_SOURCES = mln_debug_println.cc
-mln_debug_println_with_border_SOURCES = mln_debug_println_with_border.cc
-mln_debug_put_word_SOURCES = mln_debug_put_word.cc
-mln_debug_quiet_SOURCES = mln_debug_quiet.cc
-mln_debug_slices_2d_SOURCES = mln_debug_slices_2d.cc
-mln_debug_superpose_SOURCES = mln_debug_superpose.cc
-mln_display_all_SOURCES = mln_display_all.cc
-mln_display_essential_SOURCES = mln_display_essential.cc
-mln_draw_all_SOURCES = mln_draw_all.cc
-mln_draw_box_SOURCES = mln_draw_box.cc
-mln_draw_essential_SOURCES = mln_draw_essential.cc
-mln_draw_line_SOURCES = mln_draw_line.cc
-mln_draw_plot_SOURCES = mln_draw_plot.cc
-mln_essential_1d_SOURCES = mln_essential_1d.cc
-mln_essential_2d_SOURCES = mln_essential_2d.cc
-mln_essential_3d_SOURCES = mln_essential_3d.cc
-mln_essential_routine_SOURCES = mln_essential_routine.cc
-mln_estim_all_SOURCES = mln_estim_all.cc
-mln_estim_essential_SOURCES = mln_estim_essential.cc
-mln_estim_mean_SOURCES = mln_estim_mean.cc
-mln_estim_min_max_SOURCES = mln_estim_min_max.cc
-mln_estim_sum_SOURCES = mln_estim_sum.cc
-mln_extension_adjust_SOURCES = mln_extension_adjust.cc
-mln_extension_adjust_duplicate_SOURCES = mln_extension_adjust_duplicate.cc
-mln_extension_adjust_fill_SOURCES = mln_extension_adjust_fill.cc
-mln_extension_all_SOURCES = mln_extension_all.cc
-mln_extension_duplicate_SOURCES = mln_extension_duplicate.cc
-mln_extension_essential_SOURCES = mln_extension_essential.cc
-mln_extension_fill_SOURCES = mln_extension_fill.cc
-mln_extract_all_SOURCES = mln_extract_all.cc
-mln_extract_blue_SOURCES = mln_extract_blue.cc
-mln_extract_essential_SOURCES = mln_extract_essential.cc
-mln_extract_green_SOURCES = mln_extract_green.cc
-mln_extract_hue_SOURCES = mln_extract_hue.cc
-mln_extract_lum_SOURCES = mln_extract_lum.cc
-mln_extract_red_SOURCES = mln_extract_red.cc
-mln_extract_sat_SOURCES = mln_extract_sat.cc
-mln_fun_access_all_SOURCES = mln_fun_access_all.cc
-mln_fun_access_mean_SOURCES = mln_fun_access_mean.cc
-mln_fun_accu_result_SOURCES = mln_fun_accu_result.cc
-mln_fun_all_SOURCES = mln_fun_all.cc
-mln_fun_binary_SOURCES = mln_fun_binary.cc
-mln_fun_binary_param_SOURCES = mln_fun_binary_param.cc
-mln_fun_c_SOURCES = mln_fun_c.cc
-mln_fun_cast_SOURCES = mln_fun_cast.cc
-mln_fun_component_blue_SOURCES = mln_fun_component_blue.cc
-mln_fun_component_comp_SOURCES = mln_fun_component_comp.cc
-mln_fun_component_comp_count_SOURCES = mln_fun_component_comp_count.cc
-mln_fun_component_green_SOURCES = mln_fun_component_green.cc
-mln_fun_component_ithcomp_SOURCES = mln_fun_component_ithcomp.cc
-mln_fun_component_red_SOURCES = mln_fun_component_red.cc
-mln_fun_component_rgb_SOURCES = mln_fun_component_rgb.cc
-mln_fun_component_scomp_SOURCES = mln_fun_component_scomp.cc
-mln_fun_compose_SOURCES = mln_fun_compose.cc
-mln_fun_composition_SOURCES = mln_fun_composition.cc
-mln_fun_essential_SOURCES = mln_fun_essential.cc
-mln_fun_from_accu_SOURCES = mln_fun_from_accu.cc
-mln_fun_i2v_all_SOURCES = mln_fun_i2v_all.cc
-mln_fun_i2v_all_to_SOURCES = mln_fun_i2v_all_to.cc
-mln_fun_i2v_array_SOURCES = mln_fun_i2v_array.cc
-mln_fun_i2v_essential_SOURCES = mln_fun_i2v_essential.cc
-mln_fun_i2v_value_at_index_SOURCES = mln_fun_i2v_value_at_index.cc
-mln_fun_internal_ch_function_value_impl_SOURCES = mln_fun_internal_ch_function_value_impl.cc
-mln_fun_internal_resolve_SOURCES = mln_fun_internal_resolve.cc
-mln_fun_internal_selector_SOURCES = mln_fun_internal_selector.cc
-mln_fun_internal_x2x_linear_impl_SOURCES = mln_fun_internal_x2x_linear_impl.cc
-mln_fun_math_abs_SOURCES = mln_fun_math_abs.cc
-mln_fun_math_cos_SOURCES = mln_fun_math_cos.cc
-mln_fun_math_inf_SOURCES = mln_fun_math_inf.cc
-mln_fun_math_norm_SOURCES = mln_fun_math_norm.cc
-mln_fun_math_sup_SOURCES = mln_fun_math_sup.cc
-mln_fun_meta_all_SOURCES = mln_fun_meta_all.cc
-mln_fun_meta_blue_SOURCES = mln_fun_meta_blue.cc
-mln_fun_meta_essential_SOURCES = mln_fun_meta_essential.cc
-mln_fun_meta_first_SOURCES = mln_fun_meta_first.cc
-mln_fun_meta_green_SOURCES = mln_fun_meta_green.cc
-mln_fun_meta_hue_SOURCES = mln_fun_meta_hue.cc
-mln_fun_meta_impl_SOURCES = mln_fun_meta_impl.cc
-mln_fun_meta_inty_SOURCES = mln_fun_meta_inty.cc
-mln_fun_meta_lum_SOURCES = mln_fun_meta_lum.cc
-mln_fun_meta_red_SOURCES = mln_fun_meta_red.cc
-mln_fun_meta_sat_SOURCES = mln_fun_meta_sat.cc
-mln_fun_meta_second_SOURCES = mln_fun_meta_second.cc
-mln_fun_meta_to_enc_SOURCES = mln_fun_meta_to_enc.cc
-mln_fun_ops_SOURCES = mln_fun_ops.cc
-mln_fun_p2b_all_SOURCES = mln_fun_p2b_all.cc
-mln_fun_p2b_antilogy_SOURCES = mln_fun_p2b_antilogy.cc
-mln_fun_p2b_big_chess_SOURCES = mln_fun_p2b_big_chess.cc
-mln_fun_p2b_chess_SOURCES = mln_fun_p2b_chess.cc
-mln_fun_p2b_essential_SOURCES = mln_fun_p2b_essential.cc
-mln_fun_p2b_has_SOURCES = mln_fun_p2b_has.cc
-mln_fun_p2b_tautology_SOURCES = mln_fun_p2b_tautology.cc
-mln_fun_p2p_all_SOURCES = mln_fun_p2p_all.cc
-mln_fun_p2p_fold_SOURCES = mln_fun_p2p_fold.cc
-mln_fun_p2p_mirror_SOURCES = mln_fun_p2p_mirror.cc
-mln_fun_p2p_translation_SOURCES = mln_fun_p2p_translation.cc
-mln_fun_p2v_all_SOURCES = mln_fun_p2v_all.cc
-mln_fun_p2v_elifs_SOURCES = mln_fun_p2v_elifs.cc
-mln_fun_p2v_essential_SOURCES = mln_fun_p2v_essential.cc
-mln_fun_p2v_iota_SOURCES = mln_fun_p2v_iota.cc
-mln_fun_p2v_ternary_SOURCES = mln_fun_p2v_ternary.cc
-mln_fun_param_SOURCES = mln_fun_param.cc
-mln_fun_point_col_SOURCES = mln_fun_point_col.cc
-mln_fun_point_row_SOURCES = mln_fun_point_row.cc
-mln_fun_point_sli_SOURCES = mln_fun_point_sli.cc
-mln_fun_spe_binary_SOURCES = mln_fun_spe_binary.cc
-mln_fun_spe_unary_SOURCES = mln_fun_spe_unary.cc
-mln_fun_stat_all_SOURCES = mln_fun_stat_all.cc
-mln_fun_stat_mahalanobis_SOURCES = mln_fun_stat_mahalanobis.cc
-mln_fun_unary_SOURCES = mln_fun_unary.cc
-mln_fun_unary_param_SOURCES = mln_fun_unary_param.cc
-mln_fun_v2b_all_SOURCES = mln_fun_v2b_all.cc
-mln_fun_v2b_essential_SOURCES = mln_fun_v2b_essential.cc
-mln_fun_v2b_lnot_SOURCES = mln_fun_v2b_lnot.cc
-mln_fun_v2b_threshold_SOURCES = mln_fun_v2b_threshold.cc
-mln_fun_v2i_all_SOURCES = mln_fun_v2i_all.cc
-mln_fun_v2i_index_of_value_SOURCES = mln_fun_v2i_index_of_value.cc
-mln_fun_v2v_abs_SOURCES = mln_fun_v2v_abs.cc
-mln_fun_v2v_all_SOURCES = mln_fun_v2v_all.cc
-mln_fun_v2v_cast_SOURCES = mln_fun_v2v_cast.cc
-mln_fun_v2v_ch_function_value_SOURCES = mln_fun_v2v_ch_function_value.cc
-mln_fun_v2v_component_SOURCES = mln_fun_v2v_component.cc
-mln_fun_v2v_convert_SOURCES = mln_fun_v2v_convert.cc
-mln_fun_v2v_dec_SOURCES = mln_fun_v2v_dec.cc
-mln_fun_v2v_enc_SOURCES = mln_fun_v2v_enc.cc
-mln_fun_v2v_essential_SOURCES = mln_fun_v2v_essential.cc
-mln_fun_v2v_hsi_to_rgb_SOURCES = mln_fun_v2v_hsi_to_rgb.cc
-mln_fun_v2v_hsl_to_rgb_SOURCES = mln_fun_v2v_hsl_to_rgb.cc
-mln_fun_v2v_id_SOURCES = mln_fun_v2v_id.cc
-mln_fun_v2v_inc_SOURCES = mln_fun_v2v_inc.cc
-mln_fun_v2v_linear_SOURCES = mln_fun_v2v_linear.cc
-mln_fun_v2v_norm_SOURCES = mln_fun_v2v_norm.cc
-mln_fun_v2v_projection_SOURCES = mln_fun_v2v_projection.cc
-mln_fun_v2v_rgb_to_hsi_SOURCES = mln_fun_v2v_rgb_to_hsi.cc
-mln_fun_v2v_rgb_to_hsl_SOURCES = mln_fun_v2v_rgb_to_hsl.cc
-mln_fun_v2v_saturate_SOURCES = mln_fun_v2v_saturate.cc
-mln_fun_v2v_wrap_SOURCES = mln_fun_v2v_wrap.cc
-mln_fun_v2w2v_all_SOURCES = mln_fun_v2w2v_all.cc
-mln_fun_v2w2v_cos_SOURCES = mln_fun_v2w2v_cos.cc
-mln_fun_v2w_w2v_all_SOURCES = mln_fun_v2w_w2v_all.cc
-mln_fun_v2w_w2v_norm_SOURCES = mln_fun_v2w_w2v_norm.cc
-mln_fun_vv2b_all_SOURCES = mln_fun_vv2b_all.cc
-mln_fun_vv2b_eq_SOURCES = mln_fun_vv2b_eq.cc
-mln_fun_vv2b_ge_SOURCES = mln_fun_vv2b_ge.cc
-mln_fun_vv2b_gt_SOURCES = mln_fun_vv2b_gt.cc
-mln_fun_vv2b_implies_SOURCES = mln_fun_vv2b_implies.cc
-mln_fun_vv2b_le_SOURCES = mln_fun_vv2b_le.cc
-mln_fun_vv2b_lt_SOURCES = mln_fun_vv2b_lt.cc
-mln_fun_vv2v_all_SOURCES = mln_fun_vv2v_all.cc
-mln_fun_vv2v_diff_abs_SOURCES = mln_fun_vv2v_diff_abs.cc
-mln_fun_vv2v_essential_SOURCES = mln_fun_vv2v_essential.cc
-mln_fun_vv2v_land_SOURCES = mln_fun_vv2v_land.cc
-mln_fun_vv2v_land_not_SOURCES = mln_fun_vv2v_land_not.cc
-mln_fun_vv2v_lor_SOURCES = mln_fun_vv2v_lor.cc
-mln_fun_vv2v_lxor_SOURCES = mln_fun_vv2v_lxor.cc
-mln_fun_vv2v_macros_SOURCES = mln_fun_vv2v_macros.cc
-mln_fun_vv2v_max_SOURCES = mln_fun_vv2v_max.cc
-mln_fun_vv2v_min_SOURCES = mln_fun_vv2v_min.cc
-mln_fun_vv2v_vec_SOURCES = mln_fun_vv2v_vec.cc
-mln_fun_x2p_all_SOURCES = mln_fun_x2p_all.cc
-mln_fun_x2p_closest_point_SOURCES = mln_fun_x2p_closest_point.cc
-mln_fun_x2p_essential_SOURCES = mln_fun_x2p_essential.cc
-mln_fun_x2v_all_SOURCES = mln_fun_x2v_all.cc
-mln_fun_x2v_bilinear_SOURCES = mln_fun_x2v_bilinear.cc
-mln_fun_x2v_essential_SOURCES = mln_fun_x2v_essential.cc
-mln_fun_x2v_l1_norm_SOURCES = mln_fun_x2v_l1_norm.cc
-mln_fun_x2v_linear_SOURCES = mln_fun_x2v_linear.cc
-mln_fun_x2v_nneighbor_SOURCES = mln_fun_x2v_nneighbor.cc
-mln_fun_x2v_trilinear_SOURCES = mln_fun_x2v_trilinear.cc
-mln_fun_x2x_all_SOURCES = mln_fun_x2x_all.cc
-mln_fun_x2x_composed_SOURCES = mln_fun_x2x_composed.cc
-mln_fun_x2x_essential_SOURCES = mln_fun_x2x_essential.cc
-mln_fun_x2x_rotation_SOURCES = mln_fun_x2x_rotation.cc
-mln_fun_x2x_translation_SOURCES = mln_fun_x2x_translation.cc
-mln_geom_all_SOURCES = mln_geom_all.cc
-mln_geom_bbox_SOURCES = mln_geom_bbox.cc
-mln_geom_chamfer_SOURCES = mln_geom_chamfer.cc
-mln_geom_complex_geometry_SOURCES = mln_geom_complex_geometry.cc
-mln_geom_delta_SOURCES = mln_geom_delta.cc
-mln_geom_essential_SOURCES = mln_geom_essential.cc
-mln_geom_max_col_SOURCES = mln_geom_max_col.cc
-mln_geom_max_ind_SOURCES = mln_geom_max_ind.cc
-mln_geom_max_row_SOURCES = mln_geom_max_row.cc
-mln_geom_max_sli_SOURCES = mln_geom_max_sli.cc
-mln_geom_min_col_SOURCES = mln_geom_min_col.cc
-mln_geom_min_ind_SOURCES = mln_geom_min_ind.cc
-mln_geom_min_row_SOURCES = mln_geom_min_row.cc
-mln_geom_min_sli_SOURCES = mln_geom_min_sli.cc
-mln_geom_ncols_SOURCES = mln_geom_ncols.cc
-mln_geom_ninds_SOURCES = mln_geom_ninds.cc
-mln_geom_nrows_SOURCES = mln_geom_nrows.cc
-mln_geom_nsites_SOURCES = mln_geom_nsites.cc
-mln_geom_nslis_SOURCES = mln_geom_nslis.cc
-mln_geom_pmin_pmax_SOURCES = mln_geom_pmin_pmax.cc
-mln_geom_rotate_SOURCES = mln_geom_rotate.cc
-mln_geom_seeds2tiling_SOURCES = mln_geom_seeds2tiling.cc
-mln_geom_seeds2tiling_roundness_SOURCES = mln_geom_seeds2tiling_roundness.cc
-mln_geom_size1d_SOURCES = mln_geom_size1d.cc
-mln_geom_size2d_SOURCES = mln_geom_size2d.cc
-mln_geom_size3d_SOURCES = mln_geom_size3d.cc
-mln_geom_translate_SOURCES = mln_geom_translate.cc
-mln_graph_all_SOURCES = mln_graph_all.cc
-mln_graph_attribute_card_SOURCES = mln_graph_attribute_card.cc
-mln_graph_attribute_representative_SOURCES = mln_graph_attribute_representative.cc
-mln_graph_compute_SOURCES = mln_graph_compute.cc
-mln_graph_essential_SOURCES = mln_graph_essential.cc
-mln_graph_labeling_SOURCES = mln_graph_labeling.cc
-mln_graph_to_neighb_SOURCES = mln_graph_to_neighb.cc
-mln_graph_to_win_SOURCES = mln_graph_to_win.cc
-mln_histo_all_SOURCES = mln_histo_all.cc
-mln_histo_array_SOURCES = mln_histo_array.cc
-mln_histo_compute_SOURCES = mln_histo_compute.cc
-mln_histo_essential_SOURCES = mln_histo_essential.cc
-mln_histo_point_from_value_SOURCES = mln_histo_point_from_value.cc
-mln_io_abort_SOURCES = mln_io_abort.cc
-mln_io_all_SOURCES = mln_io_all.cc
-mln_io_cloud_all_SOURCES = mln_io_cloud_all.cc
-mln_io_cloud_load_SOURCES = mln_io_cloud_load.cc
-mln_io_cloud_save_SOURCES = mln_io_cloud_save.cc
-mln_io_dump_all_SOURCES = mln_io_dump_all.cc
-mln_io_dump_load_SOURCES = mln_io_dump_load.cc
-mln_io_dump_save_SOURCES = mln_io_dump_save.cc
-mln_io_essential_SOURCES = mln_io_essential.cc
-mln_io_fld_all_SOURCES = mln_io_fld_all.cc
-mln_io_fld_header_SOURCES = mln_io_fld_header.cc
-mln_io_fld_load_SOURCES = mln_io_fld_load.cc
-mln_io_fld_load_header_SOURCES = mln_io_fld_load_header.cc
-mln_io_fld_max_components_SOURCES = mln_io_fld_max_components.cc
-mln_io_fld_save_SOURCES = mln_io_fld_save.cc
-mln_io_fld_write_header_SOURCES = mln_io_fld_write_header.cc
-mln_io_off_all_SOURCES = mln_io_off_all.cc
-mln_io_off_load_SOURCES = mln_io_off_load.cc
-mln_io_off_save_SOURCES = mln_io_off_save.cc
-mln_io_pbm_all_SOURCES = mln_io_pbm_all.cc
-mln_io_pbm_load_SOURCES = mln_io_pbm_load.cc
-mln_io_pbm_save_SOURCES = mln_io_pbm_save.cc
-mln_io_pbms_all_SOURCES = mln_io_pbms_all.cc
-mln_io_pbms_load_SOURCES = mln_io_pbms_load.cc
-mln_io_pfm_all_SOURCES = mln_io_pfm_all.cc
-mln_io_pfm_load_SOURCES = mln_io_pfm_load.cc
-mln_io_pfm_save_SOURCES = mln_io_pfm_save.cc
-mln_io_pgm_all_SOURCES = mln_io_pgm_all.cc
-mln_io_pgm_load_SOURCES = mln_io_pgm_load.cc
-mln_io_pgm_save_SOURCES = mln_io_pgm_save.cc
-mln_io_pgms_all_SOURCES = mln_io_pgms_all.cc
-mln_io_pgms_load_SOURCES = mln_io_pgms_load.cc
-mln_io_plot_all_SOURCES = mln_io_plot_all.cc
-mln_io_plot_load_SOURCES = mln_io_plot_load.cc
-mln_io_plot_save_SOURCES = mln_io_plot_save.cc
-mln_io_pnm_all_SOURCES = mln_io_pnm_all.cc
-mln_io_pnm_load_SOURCES = mln_io_pnm_load.cc
-mln_io_pnm_load_header_SOURCES = mln_io_pnm_load_header.cc
-mln_io_pnm_macros_SOURCES = mln_io_pnm_macros.cc
-mln_io_pnm_max_component_SOURCES = mln_io_pnm_max_component.cc
-mln_io_pnm_save_SOURCES = mln_io_pnm_save.cc
-mln_io_pnm_save_header_SOURCES = mln_io_pnm_save_header.cc
-mln_io_pnms_all_SOURCES = mln_io_pnms_all.cc
-mln_io_pnms_load_SOURCES = mln_io_pnms_load.cc
-mln_io_ppm_all_SOURCES = mln_io_ppm_all.cc
-mln_io_ppm_load_SOURCES = mln_io_ppm_load.cc
-mln_io_ppm_save_SOURCES = mln_io_ppm_save.cc
-mln_io_ppms_all_SOURCES = mln_io_ppms_all.cc
-mln_io_ppms_load_SOURCES = mln_io_ppms_load.cc
-mln_io_txt_all_SOURCES = mln_io_txt_all.cc
-mln_io_txt_save_SOURCES = mln_io_txt_save.cc
-mln_labeling_all_SOURCES = mln_labeling_all.cc
-mln_labeling_background_SOURCES = mln_labeling_background.cc
-mln_labeling_blobs_SOURCES = mln_labeling_blobs.cc
-mln_labeling_blobs_and_compute_SOURCES = mln_labeling_blobs_and_compute.cc
-mln_labeling_colorize_SOURCES = mln_labeling_colorize.cc
-mln_labeling_compute_SOURCES = mln_labeling_compute.cc
-mln_labeling_compute_image_SOURCES = mln_labeling_compute_image.cc
-mln_labeling_essential_SOURCES = mln_labeling_essential.cc
-mln_labeling_fill_holes_SOURCES = mln_labeling_fill_holes.cc
-mln_labeling_flat_zones_SOURCES = mln_labeling_flat_zones.cc
-mln_labeling_foreground_SOURCES = mln_labeling_foreground.cc
-mln_labeling_mean_values_SOURCES = mln_labeling_mean_values.cc
-mln_labeling_n_max_SOURCES = mln_labeling_n_max.cc
-mln_labeling_pack_SOURCES = mln_labeling_pack.cc
-mln_labeling_regional_maxima_SOURCES = mln_labeling_regional_maxima.cc
-mln_labeling_regional_minima_SOURCES = mln_labeling_regional_minima.cc
-mln_labeling_relabel_SOURCES = mln_labeling_relabel.cc
-mln_labeling_superpose_SOURCES = mln_labeling_superpose.cc
-mln_labeling_value_SOURCES = mln_labeling_value.cc
-mln_labeling_wrap_SOURCES = mln_labeling_wrap.cc
-mln_linear_all_SOURCES = mln_linear_all.cc
-mln_linear_ch_convolve_SOURCES = mln_linear_ch_convolve.cc
-mln_linear_convolve_SOURCES = mln_linear_convolve.cc
-mln_linear_convolve_2x1d_SOURCES = mln_linear_convolve_2x1d.cc
-mln_linear_convolve_directional_SOURCES = mln_linear_convolve_directional.cc
-mln_linear_essential_SOURCES = mln_linear_essential.cc
-mln_linear_gaussian_SOURCES = mln_linear_gaussian.cc
-mln_linear_gaussian_filter_SOURCES = mln_linear_gaussian_filter.cc
-mln_linear_gaussian_impl_SOURCES = mln_linear_gaussian_impl.cc
-mln_linear_gaussian_internal_coefficients_SOURCES = mln_linear_gaussian_internal_coefficients.cc
-mln_linear_gaussian_1d_SOURCES = mln_linear_gaussian_1d.cc
-mln_linear_gaussian_directional_2d_SOURCES = mln_linear_gaussian_directional_2d.cc
-mln_linear_lap_SOURCES = mln_linear_lap.cc
-mln_linear_local_convolve_SOURCES = mln_linear_local_convolve.cc
-mln_linear_log_SOURCES = mln_linear_log.cc
-mln_linear_sobel_2d_SOURCES = mln_linear_sobel_2d.cc
-mln_literal_all_SOURCES = mln_literal_all.cc
-mln_literal_black_SOURCES = mln_literal_black.cc
-mln_literal_colors_SOURCES = mln_literal_colors.cc
-mln_literal_essential_SOURCES = mln_literal_essential.cc
-mln_literal_grays_SOURCES = mln_literal_grays.cc
-mln_literal_identity_SOURCES = mln_literal_identity.cc
-mln_literal_max_SOURCES = mln_literal_max.cc
-mln_literal_min_SOURCES = mln_literal_min.cc
-mln_literal_one_SOURCES = mln_literal_one.cc
-mln_literal_ops_SOURCES = mln_literal_ops.cc
-mln_literal_origin_SOURCES = mln_literal_origin.cc
-mln_literal_white_SOURCES = mln_literal_white.cc
-mln_literal_zero_SOURCES = mln_literal_zero.cc
-mln_logical_all_SOURCES = mln_logical_all.cc
-mln_logical_and_SOURCES = mln_logical_and.cc
-mln_logical_and_not_SOURCES = mln_logical_and_not.cc
-mln_logical_essential_SOURCES = mln_logical_essential.cc
-mln_logical_includes_SOURCES = mln_logical_includes.cc
-mln_logical_not_SOURCES = mln_logical_not.cc
-mln_logical_or_SOURCES = mln_logical_or.cc
-mln_logical_xor_SOURCES = mln_logical_xor.cc
-mln_make_all_SOURCES = mln_make_all.cc
-mln_make_attachment_SOURCES = mln_make_attachment.cc
-mln_make_box1d_SOURCES = mln_make_box1d.cc
-mln_make_box2d_SOURCES = mln_make_box2d.cc
-mln_make_box2d_h_SOURCES = mln_make_box2d_h.cc
-mln_make_box3d_SOURCES = mln_make_box3d.cc
-mln_make_cell_SOURCES = mln_make_cell.cc
-mln_make_detachment_SOURCES = mln_make_detachment.cc
-mln_make_double_neighb2d_SOURCES = mln_make_double_neighb2d.cc
-mln_make_dpoint2d_h_SOURCES = mln_make_dpoint2d_h.cc
-mln_make_dual_neighb_SOURCES = mln_make_dual_neighb.cc
-mln_make_dummy_p_edges_SOURCES = mln_make_dummy_p_edges.cc
-mln_make_dummy_p_vertices_SOURCES = mln_make_dummy_p_vertices.cc
-mln_make_edge_image_SOURCES = mln_make_edge_image.cc
-mln_make_essential_SOURCES = mln_make_essential.cc
-mln_make_h_mat_SOURCES = mln_make_h_mat.cc
-mln_make_image_SOURCES = mln_make_image.cc
-mln_make_image2d_SOURCES = mln_make_image2d.cc
-mln_make_image3d_SOURCES = mln_make_image3d.cc
-mln_make_influence_zone_adjacency_graph_SOURCES = mln_make_influence_zone_adjacency_graph.cc
-mln_make_mat_SOURCES = mln_make_mat.cc
-mln_make_neighb2d_SOURCES = mln_make_neighb2d.cc
-mln_make_p_edges_with_mass_centers_SOURCES = mln_make_p_edges_with_mass_centers.cc
-mln_make_p_vertices_with_mass_centers_SOURCES = mln_make_p_vertices_with_mass_centers.cc
-mln_make_pix_SOURCES = mln_make_pix.cc
-mln_make_pixel_SOURCES = mln_make_pixel.cc
-mln_make_point2d_h_SOURCES = mln_make_point2d_h.cc
-mln_make_rag_and_labeled_wsl_SOURCES = mln_make_rag_and_labeled_wsl.cc
-mln_make_region_adjacency_graph_SOURCES = mln_make_region_adjacency_graph.cc
-mln_make_relabelfun_SOURCES = mln_make_relabelfun.cc
-mln_make_vec_SOURCES = mln_make_vec.cc
-mln_make_vertex_image_SOURCES = mln_make_vertex_image.cc
-mln_make_voronoi_SOURCES = mln_make_voronoi.cc
-mln_make_w_window_SOURCES = mln_make_w_window.cc
-mln_make_w_window1d_SOURCES = mln_make_w_window1d.cc
-mln_make_w_window1d_int_SOURCES = mln_make_w_window1d_int.cc
-mln_make_w_window2d_SOURCES = mln_make_w_window2d.cc
-mln_make_w_window2d_int_SOURCES = mln_make_w_window2d_int.cc
-mln_make_w_window3d_SOURCES = mln_make_w_window3d.cc
-mln_make_w_window3d_int_SOURCES = mln_make_w_window3d_int.cc
-mln_make_w_window_directional_SOURCES = mln_make_w_window_directional.cc
-mln_make_win_chamfer_SOURCES = mln_make_win_chamfer.cc
-mln_math_abs_SOURCES = mln_math_abs.cc
-mln_math_acos_SOURCES = mln_math_acos.cc
-mln_math_all_SOURCES = mln_math_all.cc
-mln_math_cos_SOURCES = mln_math_cos.cc
-mln_math_diff_abs_SOURCES = mln_math_diff_abs.cc
-mln_math_essential_SOURCES = mln_math_essential.cc
-mln_math_jacobi_SOURCES = mln_math_jacobi.cc
-mln_math_max_SOURCES = mln_math_max.cc
-mln_math_min_SOURCES = mln_math_min.cc
-mln_math_pi_SOURCES = mln_math_pi.cc
-mln_math_round_SOURCES = mln_math_round.cc
-mln_math_round_sat_SOURCES = mln_math_round_sat.cc
-mln_math_sign_SOURCES = mln_math_sign.cc
-mln_math_sin_SOURCES = mln_math_sin.cc
-mln_math_sqr_SOURCES = mln_math_sqr.cc
-mln_math_sqrt_SOURCES = mln_math_sqrt.cc
-mln_metal_abort_SOURCES = mln_metal_abort.cc
-mln_metal_all_SOURCES = mln_metal_all.cc
-mln_metal_ands_SOURCES = mln_metal_ands.cc
-mln_metal_array_SOURCES = mln_metal_array.cc
-mln_metal_array1d_SOURCES = mln_metal_array1d.cc
-mln_metal_array2d_SOURCES = mln_metal_array2d.cc
-mln_metal_array3d_SOURCES = mln_metal_array3d.cc
-mln_metal_bexpr_SOURCES = mln_metal_bexpr.cc
-mln_metal_bool_SOURCES = mln_metal_bool.cc
-mln_metal_const_SOURCES = mln_metal_const.cc
-mln_metal_converts_to_SOURCES = mln_metal_converts_to.cc
-mln_metal_equal_SOURCES = mln_metal_equal.cc
-mln_metal_essential_SOURCES = mln_metal_essential.cc
-mln_metal_fix_return_SOURCES = mln_metal_fix_return.cc
-mln_metal_goes_to_SOURCES = mln_metal_goes_to.cc
-mln_metal_if_SOURCES = mln_metal_if.cc
-mln_metal_int_SOURCES = mln_metal_int.cc
-mln_metal_is_SOURCES = mln_metal_is.cc
-mln_metal_is_a_SOURCES = mln_metal_is_a.cc
-mln_metal_is_const_SOURCES = mln_metal_is_const.cc
-mln_metal_is_not_SOURCES = mln_metal_is_not.cc
-mln_metal_is_not_a_SOURCES = mln_metal_is_not_a.cc
-mln_metal_is_not_const_SOURCES = mln_metal_is_not_const.cc
-mln_metal_is_not_ref_SOURCES = mln_metal_is_not_ref.cc
-mln_metal_is_ref_SOURCES = mln_metal_is_ref.cc
-mln_metal_is_unqualif_SOURCES = mln_metal_is_unqualif.cc
-mln_metal_mat_SOURCES = mln_metal_mat.cc
-mln_metal_math_all_SOURCES = mln_metal_math_all.cc
-mln_metal_math_max_SOURCES = mln_metal_math_max.cc
-mln_metal_math_pow_SOURCES = mln_metal_math_pow.cc
-mln_metal_math_root_SOURCES = mln_metal_math_root.cc
-mln_metal_math_sqrt_SOURCES = mln_metal_math_sqrt.cc
-mln_metal_none_SOURCES = mln_metal_none.cc
-mln_metal_not_equal_SOURCES = mln_metal_not_equal.cc
-mln_metal_ref_SOURCES = mln_metal_ref.cc
-mln_metal_ret_SOURCES = mln_metal_ret.cc
-mln_metal_same_coord_SOURCES = mln_metal_same_coord.cc
-mln_metal_same_point_SOURCES = mln_metal_same_point.cc
-mln_metal_templated_by_SOURCES = mln_metal_templated_by.cc
-mln_metal_unconst_SOURCES = mln_metal_unconst.cc
-mln_metal_unptr_SOURCES = mln_metal_unptr.cc
-mln_metal_unqualif_SOURCES = mln_metal_unqualif.cc
-mln_metal_unref_SOURCES = mln_metal_unref.cc
-mln_metal_vec_SOURCES = mln_metal_vec.cc
-mln_morpho_Rd_SOURCES = mln_morpho_Rd.cc
-mln_morpho_algebraic_filter_SOURCES = mln_morpho_algebraic_filter.cc
-mln_morpho_all_SOURCES = mln_morpho_all.cc
-mln_morpho_approx_all_SOURCES = mln_morpho_approx_all.cc
-mln_morpho_approx_dilation_SOURCES = mln_morpho_approx_dilation.cc
-mln_morpho_approx_erosion_SOURCES = mln_morpho_approx_erosion.cc
-mln_morpho_attribute_all_SOURCES = mln_morpho_attribute_all.cc
-mln_morpho_attribute_card_SOURCES = mln_morpho_attribute_card.cc
-mln_morpho_attribute_count_adjacent_vertices_SOURCES = mln_morpho_attribute_count_adjacent_vertices.cc
-mln_morpho_attribute_height_SOURCES = mln_morpho_attribute_height.cc
-mln_morpho_attribute_sharpness_SOURCES = mln_morpho_attribute_sharpness.cc
-mln_morpho_attribute_sum_SOURCES = mln_morpho_attribute_sum.cc
-mln_morpho_attribute_volume_SOURCES = mln_morpho_attribute_volume.cc
-mln_morpho_closing_algebraic_SOURCES = mln_morpho_closing_algebraic.cc
-mln_morpho_closing_all_SOURCES = mln_morpho_closing_all.cc
-mln_morpho_closing_approx_all_SOURCES = mln_morpho_closing_approx_all.cc
-mln_morpho_closing_approx_structural_SOURCES = mln_morpho_closing_approx_structural.cc
-mln_morpho_closing_area_SOURCES = mln_morpho_closing_area.cc
-mln_morpho_closing_area_on_vertices_SOURCES = mln_morpho_closing_area_on_vertices.cc
-mln_morpho_closing_essential_SOURCES = mln_morpho_closing_essential.cc
-mln_morpho_closing_height_SOURCES = mln_morpho_closing_height.cc
-mln_morpho_closing_leveling_SOURCES = mln_morpho_closing_leveling.cc
-mln_morpho_closing_structural_SOURCES = mln_morpho_closing_structural.cc
-mln_morpho_closing_sum_SOURCES = mln_morpho_closing_sum.cc
-mln_morpho_closing_volume_SOURCES = mln_morpho_closing_volume.cc
-mln_morpho_complementation_SOURCES = mln_morpho_complementation.cc
-mln_morpho_contrast_SOURCES = mln_morpho_contrast.cc
-mln_morpho_dilation_SOURCES = mln_morpho_dilation.cc
-mln_morpho_elementary_all_SOURCES = mln_morpho_elementary_all.cc
-mln_morpho_elementary_closing_SOURCES = mln_morpho_elementary_closing.cc
-mln_morpho_elementary_dilation_SOURCES = mln_morpho_elementary_dilation.cc
-mln_morpho_elementary_erosion_SOURCES = mln_morpho_elementary_erosion.cc
-mln_morpho_elementary_essential_SOURCES = mln_morpho_elementary_essential.cc
-mln_morpho_elementary_gradient_SOURCES = mln_morpho_elementary_gradient.cc
-mln_morpho_elementary_gradient_external_SOURCES = mln_morpho_elementary_gradient_external.cc
-mln_morpho_elementary_gradient_internal_SOURCES = mln_morpho_elementary_gradient_internal.cc
-mln_morpho_elementary_laplacian_SOURCES = mln_morpho_elementary_laplacian.cc
-mln_morpho_elementary_like_ero_fun_SOURCES = mln_morpho_elementary_like_ero_fun.cc
-mln_morpho_elementary_like_ero_set_SOURCES = mln_morpho_elementary_like_ero_set.cc
-mln_morpho_elementary_opening_SOURCES = mln_morpho_elementary_opening.cc
-mln_morpho_elementary_top_hat_SOURCES = mln_morpho_elementary_top_hat.cc
-mln_morpho_erosion_SOURCES = mln_morpho_erosion.cc
-mln_morpho_essential_SOURCES = mln_morpho_essential.cc
-mln_morpho_general_SOURCES = mln_morpho_general.cc
-mln_morpho_gradient_SOURCES = mln_morpho_gradient.cc
-mln_morpho_hit_or_miss_SOURCES = mln_morpho_hit_or_miss.cc
-mln_morpho_includes_SOURCES = mln_morpho_includes.cc
-mln_morpho_internal_elementary_SOURCES = mln_morpho_internal_elementary.cc
-mln_morpho_laplacian_SOURCES = mln_morpho_laplacian.cc
-mln_morpho_leveling_filter_SOURCES = mln_morpho_leveling_filter.cc
-mln_morpho_line_gradient_SOURCES = mln_morpho_line_gradient.cc
-mln_morpho_meyer_wst_SOURCES = mln_morpho_meyer_wst.cc
-mln_morpho_min_SOURCES = mln_morpho_min.cc
-mln_morpho_minus_SOURCES = mln_morpho_minus.cc
-mln_morpho_opening_algebraic_SOURCES = mln_morpho_opening_algebraic.cc
-mln_morpho_opening_all_SOURCES = mln_morpho_opening_all.cc
-mln_morpho_opening_approx_all_SOURCES = mln_morpho_opening_approx_all.cc
-mln_morpho_opening_approx_structural_SOURCES = mln_morpho_opening_approx_structural.cc
-mln_morpho_opening_area_SOURCES = mln_morpho_opening_area.cc
-mln_morpho_opening_area_on_vertices_SOURCES = mln_morpho_opening_area_on_vertices.cc
-mln_morpho_opening_essential_SOURCES = mln_morpho_opening_essential.cc
-mln_morpho_opening_height_SOURCES = mln_morpho_opening_height.cc
-mln_morpho_opening_leveling_SOURCES = mln_morpho_opening_leveling.cc
-mln_morpho_opening_structural_SOURCES = mln_morpho_opening_structural.cc
-mln_morpho_opening_volume_SOURCES = mln_morpho_opening_volume.cc
-mln_morpho_plus_SOURCES = mln_morpho_plus.cc
-mln_morpho_rank_filter_SOURCES = mln_morpho_rank_filter.cc
-mln_morpho_reconstruction_all_SOURCES = mln_morpho_reconstruction_all.cc
-mln_morpho_reconstruction_by_dilation_all_SOURCES = mln_morpho_reconstruction_by_dilation_all.cc
-mln_morpho_reconstruction_by_dilation_union_find_SOURCES = mln_morpho_reconstruction_by_dilation_union_find.cc
-mln_morpho_reconstruction_by_erosion_all_SOURCES = mln_morpho_reconstruction_by_erosion_all.cc
-mln_morpho_reconstruction_by_erosion_union_find_SOURCES = mln_morpho_reconstruction_by_erosion_union_find.cc
-mln_morpho_skeleton_constrained_SOURCES = mln_morpho_skeleton_constrained.cc
-mln_morpho_thick_miss_SOURCES = mln_morpho_thick_miss.cc
-mln_morpho_thickening_SOURCES = mln_morpho_thickening.cc
-mln_morpho_thin_fit_SOURCES = mln_morpho_thin_fit.cc
-mln_morpho_thinning_SOURCES = mln_morpho_thinning.cc
-mln_morpho_top_hat_SOURCES = mln_morpho_top_hat.cc
-mln_morpho_tree_all_SOURCES = mln_morpho_tree_all.cc
-mln_morpho_tree_component_tree_SOURCES = mln_morpho_tree_component_tree.cc
-mln_morpho_tree_compute_attribute_image_SOURCES = mln_morpho_tree_compute_attribute_image.cc
-mln_morpho_tree_compute_parent_SOURCES = mln_morpho_tree_compute_parent.cc
-mln_morpho_tree_data_SOURCES = mln_morpho_tree_data.cc
-mln_morpho_tree_dual_input_tree_SOURCES = mln_morpho_tree_dual_input_tree.cc
-mln_morpho_tree_filter_all_SOURCES = mln_morpho_tree_filter_all.cc
-mln_morpho_tree_filter_direct_SOURCES = mln_morpho_tree_filter_direct.cc
-mln_morpho_tree_filter_filter_SOURCES = mln_morpho_tree_filter_filter.cc
-mln_morpho_tree_filter_max_SOURCES = mln_morpho_tree_filter_max.cc
-mln_morpho_tree_filter_min_SOURCES = mln_morpho_tree_filter_min.cc
-mln_morpho_tree_filter_subtractive_SOURCES = mln_morpho_tree_filter_subtractive.cc
-mln_morpho_tree_impl_dual_hqueue_SOURCES = mln_morpho_tree_impl_dual_hqueue.cc
-mln_morpho_tree_impl_dual_union_find_SOURCES = mln_morpho_tree_impl_dual_union_find.cc
-mln_morpho_tree_max_SOURCES = mln_morpho_tree_max.cc
-mln_morpho_tree_propagate_if_SOURCES = mln_morpho_tree_propagate_if.cc
-mln_morpho_tree_propagate_node_SOURCES = mln_morpho_tree_propagate_node.cc
-mln_morpho_tree_propagate_representative_SOURCES = mln_morpho_tree_propagate_representative.cc
-mln_morpho_tree_utils_SOURCES = mln_morpho_tree_utils.cc
-mln_morpho_watershed_all_SOURCES = mln_morpho_watershed_all.cc
-mln_morpho_watershed_flooding_SOURCES = mln_morpho_watershed_flooding.cc
-mln_morpho_watershed_superpose_SOURCES = mln_morpho_watershed_superpose.cc
-mln_morpho_watershed_topological_SOURCES = mln_morpho_watershed_topological.cc
-mln_norm_all_SOURCES = mln_norm_all.cc
-mln_norm_essential_SOURCES = mln_norm_essential.cc
-mln_norm_l1_SOURCES = mln_norm_l1.cc
-mln_norm_l2_SOURCES = mln_norm_l2.cc
-mln_norm_linfty_SOURCES = mln_norm_linfty.cc
-mln_opt_all_SOURCES = mln_opt_all.cc
-mln_opt_at_SOURCES = mln_opt_at.cc
-mln_opt_element_SOURCES = mln_opt_element.cc
-mln_opt_essential_SOURCES = mln_opt_essential.cc
-mln_opt_value_SOURCES = mln_opt_value.cc
-mln_pw_all_SOURCES = mln_pw_all.cc
-mln_pw_cst_SOURCES = mln_pw_cst.cc
-mln_pw_essential_SOURCES = mln_pw_essential.cc
-mln_pw_image_SOURCES = mln_pw_image.cc
-mln_pw_internal_image_base_SOURCES = mln_pw_internal_image_base.cc
-mln_pw_value_SOURCES = mln_pw_value.cc
-mln_pw_var_SOURCES = mln_pw_var.cc
-mln_registration_all_SOURCES = mln_registration_all.cc
-mln_registration_essential_SOURCES = mln_registration_essential.cc
-mln_registration_get_rot_SOURCES = mln_registration_get_rot.cc
-mln_registration_get_rtransf_SOURCES = mln_registration_get_rtransf.cc
-mln_registration_icp_SOURCES = mln_registration_icp.cc
-mln_registration_internal_rms_SOURCES = mln_registration_internal_rms.cc
-mln_registration_registration_SOURCES = mln_registration_registration.cc
-mln_set_all_SOURCES = mln_set_all.cc
-mln_set_card_SOURCES = mln_set_card.cc
-mln_set_compute_SOURCES = mln_set_compute.cc
-mln_set_compute_with_weights_SOURCES = mln_set_compute_with_weights.cc
-mln_set_diff_SOURCES = mln_set_diff.cc
-mln_set_essential_SOURCES = mln_set_essential.cc
-mln_set_get_SOURCES = mln_set_get.cc
-mln_set_has_SOURCES = mln_set_has.cc
-mln_set_inter_SOURCES = mln_set_inter.cc
-mln_set_sym_diff_SOURCES = mln_set_sym_diff.cc
-mln_set_uni_SOURCES = mln_set_uni.cc
-mln_set_unique_SOURCES = mln_set_unique.cc
-mln_subsampling_all_SOURCES = mln_subsampling_all.cc
-mln_subsampling_essential_SOURCES = mln_subsampling_essential.cc
-mln_subsampling_gaussian_subsampling_SOURCES = mln_subsampling_gaussian_subsampling.cc
-mln_subsampling_subsampling_SOURCES = mln_subsampling_subsampling.cc
-mln_tag_all_SOURCES = mln_tag_all.cc
-mln_tag_essential_SOURCES = mln_tag_essential.cc
-mln_tag_init_SOURCES = mln_tag_init.cc
-mln_tag_skeleton_SOURCES = mln_tag_skeleton.cc
-mln_test_all_SOURCES = mln_test_all.cc
-mln_test_essential_SOURCES = mln_test_essential.cc
-mln_test_positive_SOURCES = mln_test_positive.cc
-mln_test_predicate_SOURCES = mln_test_predicate.cc
-mln_topo_adj_higher_dim_connected_n_face_iter_SOURCES = mln_topo_adj_higher_dim_connected_n_face_iter.cc
-mln_topo_adj_higher_face_iter_SOURCES = mln_topo_adj_higher_face_iter.cc
-mln_topo_adj_lower_dim_connected_n_face_iter_SOURCES = mln_topo_adj_lower_dim_connected_n_face_iter.cc
-mln_topo_adj_lower_face_iter_SOURCES = mln_topo_adj_lower_face_iter.cc
-mln_topo_adj_lower_higher_face_iter_SOURCES = mln_topo_adj_lower_higher_face_iter.cc
-mln_topo_adj_m_face_iter_SOURCES = mln_topo_adj_m_face_iter.cc
-mln_topo_algebraic_face_SOURCES = mln_topo_algebraic_face.cc
-mln_topo_algebraic_n_face_SOURCES = mln_topo_algebraic_n_face.cc
-mln_topo_all_SOURCES = mln_topo_all.cc
-mln_topo_attic_faces_iter_SOURCES = mln_topo_attic_faces_iter.cc
-mln_topo_center_only_iter_SOURCES = mln_topo_center_only_iter.cc
-mln_topo_centered_iter_adapter_SOURCES = mln_topo_centered_iter_adapter.cc
-mln_topo_complex_SOURCES = mln_topo_complex.cc
-mln_topo_complex_iterators_SOURCES = mln_topo_complex_iterators.cc
-mln_topo_detach_SOURCES = mln_topo_detach.cc
-mln_topo_essential_SOURCES = mln_topo_essential.cc
-mln_topo_face_SOURCES = mln_topo_face.cc
-mln_topo_face_data_SOURCES = mln_topo_face_data.cc
-mln_topo_face_iter_SOURCES = mln_topo_face_iter.cc
-mln_topo_internal_complex_iterator_base_SOURCES = mln_topo_internal_complex_iterator_base.cc
-mln_topo_internal_complex_relative_iterator_base_SOURCES = mln_topo_internal_complex_relative_iterator_base.cc
-mln_topo_internal_complex_relative_iterator_sequence_SOURCES = mln_topo_internal_complex_relative_iterator_sequence.cc
-mln_topo_internal_complex_set_iterator_base_SOURCES = mln_topo_internal_complex_set_iterator_base.cc
-mln_topo_is_facet_SOURCES = mln_topo_is_facet.cc
-mln_topo_is_n_face_SOURCES = mln_topo_is_n_face.cc
-mln_topo_is_simple_2d_SOURCES = mln_topo_is_simple_2d.cc
-mln_topo_is_simple_cell_SOURCES = mln_topo_is_simple_cell.cc
-mln_topo_n_face_SOURCES = mln_topo_n_face.cc
-mln_topo_n_face_iter_SOURCES = mln_topo_n_face_iter.cc
-mln_topo_n_faces_set_SOURCES = mln_topo_n_faces_set.cc
-mln_topo_skeleton_breadth_first_thinning_SOURCES = mln_topo_skeleton_breadth_first_thinning.cc
-mln_topo_skeleton_crest_SOURCES = mln_topo_skeleton_crest.cc
-mln_topo_skeleton_is_simple_point_SOURCES = mln_topo_skeleton_is_simple_point.cc
-mln_topo_static_n_face_iter_SOURCES = mln_topo_static_n_face_iter.cc
-mln_trace_all_SOURCES = mln_trace_all.cc
-mln_trace_entering_SOURCES = mln_trace_entering.cc
-mln_trace_essential_SOURCES = mln_trace_essential.cc
-mln_trace_exiting_SOURCES = mln_trace_exiting.cc
-mln_trace_quiet_SOURCES = mln_trace_quiet.cc
-mln_trace_resume_SOURCES = mln_trace_resume.cc
-mln_trace_stop_SOURCES = mln_trace_stop.cc
-mln_trace_warning_SOURCES = mln_trace_warning.cc
-mln_trait_accumulator_print_SOURCES = mln_trait_accumulator_print.cc
-mln_trait_accumulator_props_SOURCES = mln_trait_accumulator_props.cc
-mln_trait_accumulators_SOURCES = mln_trait_accumulators.cc
-mln_trait_all_SOURCES = mln_trait_all.cc
-mln_trait_ch_function_value_SOURCES = mln_trait_ch_function_value.cc
-mln_trait_ch_value_SOURCES = mln_trait_ch_value.cc
-mln_trait_concrete_SOURCES = mln_trait_concrete.cc
-mln_trait_essential_SOURCES = mln_trait_essential.cc
-mln_trait_functions_SOURCES = mln_trait_functions.cc
-mln_trait_image_print_SOURCES = mln_trait_image_print.cc
-mln_trait_image_props_SOURCES = mln_trait_image_props.cc
-mln_trait_image_from_grid_SOURCES = mln_trait_image_from_grid.cc
-mln_trait_images_SOURCES = mln_trait_images.cc
-mln_trait_neighborhood_SOURCES = mln_trait_neighborhood.cc
-mln_trait_next_solve_SOURCES = mln_trait_next_solve.cc
-mln_trait_next_solve_binary_SOURCES = mln_trait_next_solve_binary.cc
-mln_trait_next_solve_proxy_SOURCES = mln_trait_next_solve_proxy.cc
-mln_trait_next_solve_unary_SOURCES = mln_trait_next_solve_unary.cc
-mln_trait_op_all_SOURCES = mln_trait_op_all.cc
-mln_trait_op_and_SOURCES = mln_trait_op_and.cc
-mln_trait_op_decl_SOURCES = mln_trait_op_decl.cc
-mln_trait_op_div_SOURCES = mln_trait_op_div.cc
-mln_trait_op_eq_SOURCES = mln_trait_op_eq.cc
-mln_trait_op_essential_SOURCES = mln_trait_op_essential.cc
-mln_trait_op_geq_SOURCES = mln_trait_op_geq.cc
-mln_trait_op_greater_SOURCES = mln_trait_op_greater.cc
-mln_trait_op_leq_SOURCES = mln_trait_op_leq.cc
-mln_trait_op_less_SOURCES = mln_trait_op_less.cc
-mln_trait_op_lor_SOURCES = mln_trait_op_lor.cc
-mln_trait_op_minus_SOURCES = mln_trait_op_minus.cc
-mln_trait_op_mod_SOURCES = mln_trait_op_mod.cc
-mln_trait_op_neq_SOURCES = mln_trait_op_neq.cc
-mln_trait_op_not_SOURCES = mln_trait_op_not.cc
-mln_trait_op_or_SOURCES = mln_trait_op_or.cc
-mln_trait_op_ord_SOURCES = mln_trait_op_ord.cc
-mln_trait_op_plus_SOURCES = mln_trait_op_plus.cc
-mln_trait_op_postdec_SOURCES = mln_trait_op_postdec.cc
-mln_trait_op_postinc_SOURCES = mln_trait_op_postinc.cc
-mln_trait_op_predec_SOURCES = mln_trait_op_predec.cc
-mln_trait_op_preinc_SOURCES = mln_trait_op_preinc.cc
-mln_trait_op_times_SOURCES = mln_trait_op_times.cc
-mln_trait_op_uminus_SOURCES = mln_trait_op_uminus.cc
-mln_trait_op_uplus_SOURCES = mln_trait_op_uplus.cc
-mln_trait_op_xor_SOURCES = mln_trait_op_xor.cc
-mln_trait_promote_SOURCES = mln_trait_promote.cc
-mln_trait_site_set_print_SOURCES = mln_trait_site_set_print.cc
-mln_trait_site_set_props_SOURCES = mln_trait_site_set_props.cc
-mln_trait_site_sets_SOURCES = mln_trait_site_sets.cc
-mln_trait_solve_SOURCES = mln_trait_solve.cc
-mln_trait_solve_binary_SOURCES = mln_trait_solve_binary.cc
-mln_trait_solve_unary_SOURCES = mln_trait_solve_unary.cc
-mln_trait_undef_SOURCES = mln_trait_undef.cc
-mln_trait_value_all_SOURCES = mln_trait_value_all.cc
-mln_trait_value_comp_SOURCES = mln_trait_value_comp.cc
-mln_trait_value_essential_SOURCES = mln_trait_value_essential.cc
-mln_trait_value_internal_all_SOURCES = mln_trait_value_internal_all.cc
-mln_trait_value_internal_comp_SOURCES = mln_trait_value_internal_comp.cc
-mln_trait_value_kind_SOURCES = mln_trait_value_kind.cc
-mln_trait_value_nature_SOURCES = mln_trait_value_nature.cc
-mln_trait_value_print_SOURCES = mln_trait_value_print.cc
-mln_trait_value_quant_SOURCES = mln_trait_value_quant.cc
-mln_trait_value__SOURCES = mln_trait_value_.cc
-mln_trait_window_print_SOURCES = mln_trait_window_print.cc
-mln_trait_window_props_SOURCES = mln_trait_window_props.cc
-mln_trait_windows_SOURCES = mln_trait_windows.cc
-mln_transform_all_SOURCES = mln_transform_all.cc
-mln_transform_distance_and_closest_point_geodesic_SOURCES = mln_transform_distance_and_closest_point_geodesic.cc
-mln_transform_distance_and_influence_zone_geodesic_SOURCES = mln_transform_distance_and_influence_zone_geodesic.cc
-mln_transform_distance_front_SOURCES = mln_transform_distance_front.cc
-mln_transform_distance_geodesic_SOURCES = mln_transform_distance_geodesic.cc
-mln_transform_essential_SOURCES = mln_transform_essential.cc
-mln_transform_hough_SOURCES = mln_transform_hough.cc
-mln_transform_influence_zone_front_SOURCES = mln_transform_influence_zone_front.cc
-mln_transform_influence_zone_geodesic_SOURCES = mln_transform_influence_zone_geodesic.cc
-mln_transform_influence_zone_geodesic_saturated_SOURCES = mln_transform_influence_zone_geodesic_saturated.cc
-mln_transform_internal_all_SOURCES = mln_transform_internal_all.cc
-mln_transform_internal_closest_point_functor_SOURCES = mln_transform_internal_closest_point_functor.cc
-mln_transform_internal_distance_functor_SOURCES = mln_transform_internal_distance_functor.cc
-mln_transform_internal_influence_zone_functor_SOURCES = mln_transform_internal_influence_zone_functor.cc
-mln_upscaling_art_scale2x_SOURCES = mln_upscaling_art_scale2x.cc
-mln_upscaling_art_scale3x_SOURCES = mln_upscaling_art_scale3x.cc
-mln_util_adjacency_matrix_SOURCES = mln_util_adjacency_matrix.cc
-mln_util_all_SOURCES = mln_util_all.cc
-mln_util_array_SOURCES = mln_util_array.cc
-mln_util_branch_iter_SOURCES = mln_util_branch_iter.cc
-mln_util_branch_iter_ind_SOURCES = mln_util_branch_iter_ind.cc
-mln_util_couple_SOURCES = mln_util_couple.cc
-mln_util_dindex_SOURCES = mln_util_dindex.cc
-mln_util_eat_SOURCES = mln_util_eat.cc
-mln_util_edge_SOURCES = mln_util_edge.cc
-mln_util_essential_SOURCES = mln_util_essential.cc
-mln_util_fibonacci_heap_SOURCES = mln_util_fibonacci_heap.cc
-mln_util_graph_SOURCES = mln_util_graph.cc
-mln_util_graph_ids_SOURCES = mln_util_graph_ids.cc
-mln_util_greater_point_SOURCES = mln_util_greater_point.cc
-mln_util_greater_psite_SOURCES = mln_util_greater_psite.cc
-mln_util_hqueues_SOURCES = mln_util_hqueues.cc
-mln_util_ignore_SOURCES = mln_util_ignore.cc
-mln_util_index_SOURCES = mln_util_index.cc
-mln_util_internal_edge_impl_SOURCES = mln_util_internal_edge_impl.cc
-mln_util_internal_graph_base_SOURCES = mln_util_internal_graph_base.cc
-mln_util_internal_graph_iter_SOURCES = mln_util_internal_graph_iter.cc
-mln_util_internal_graph_iter_base_SOURCES = mln_util_internal_graph_iter_base.cc
-mln_util_internal_graph_nbh_iter_SOURCES = mln_util_internal_graph_nbh_iter.cc
-mln_util_internal_graph_nbh_iter_base_SOURCES = mln_util_internal_graph_nbh_iter_base.cc
-mln_util_internal_id2element_SOURCES = mln_util_internal_id2element.cc
-mln_util_internal_vertex_impl_SOURCES = mln_util_internal_vertex_impl.cc
-mln_util_lazy_set_SOURCES = mln_util_lazy_set.cc
-mln_util_lemmings_SOURCES = mln_util_lemmings.cc
-mln_util_line_graph_SOURCES = mln_util_line_graph.cc
-mln_util_max_SOURCES = mln_util_max.cc
-mln_util_multi_site_SOURCES = mln_util_multi_site.cc
-mln_util_nil_SOURCES = mln_util_nil.cc
-mln_util_object_id_SOURCES = mln_util_object_id.cc
-mln_util_ord_SOURCES = mln_util_ord.cc
-mln_util_ord_pair_SOURCES = mln_util_ord_pair.cc
-mln_util_pix_SOURCES = mln_util_pix.cc
-mln_util_set_SOURCES = mln_util_set.cc
-mln_util_site_pair_SOURCES = mln_util_site_pair.cc
-mln_util_soft_heap_SOURCES = mln_util_soft_heap.cc
-mln_util_timer_SOURCES = mln_util_timer.cc
-mln_util_tracked_ptr_SOURCES = mln_util_tracked_ptr.cc
-mln_util_tree_SOURCES = mln_util_tree.cc
-mln_util_tree_fast_SOURCES = mln_util_tree_fast.cc
-mln_util_tree_fast_to_image_SOURCES = mln_util_tree_fast_to_image.cc
-mln_util_tree_to_fast_SOURCES = mln_util_tree_to_fast.cc
-mln_util_tree_to_image_SOURCES = mln_util_tree_to_image.cc
-mln_util_vertex_SOURCES = mln_util_vertex.cc
-mln_util_yes_SOURCES = mln_util_yes.cc
-mln_value_aliases_SOURCES = mln_value_aliases.cc
-mln_value_all_SOURCES = mln_value_all.cc
-mln_value_builtin_all_SOURCES = mln_value_builtin_all.cc
-mln_value_builtin_carrays_SOURCES = mln_value_builtin_carrays.cc
-mln_value_builtin_essential_SOURCES = mln_value_builtin_essential.cc
-mln_value_builtin_floatings_SOURCES = mln_value_builtin_floatings.cc
-mln_value_builtin_integers_SOURCES = mln_value_builtin_integers.cc
-mln_value_builtin_ops_SOURCES = mln_value_builtin_ops.cc
-mln_value_builtin_promotions_SOURCES = mln_value_builtin_promotions.cc
-mln_value_builtin_symbolics_SOURCES = mln_value_builtin_symbolics.cc
-mln_value_cast_SOURCES = mln_value_cast.cc
-mln_value_concept_all_SOURCES = mln_value_concept_all.cc
-mln_value_concept_built_in_SOURCES = mln_value_concept_built_in.cc
-mln_value_concept_data_SOURCES = mln_value_concept_data.cc
-mln_value_concept_essential_SOURCES = mln_value_concept_essential.cc
-mln_value_concept_floating_SOURCES = mln_value_concept_floating.cc
-mln_value_concept_integer_SOURCES = mln_value_concept_integer.cc
-mln_value_concept_scalar_SOURCES = mln_value_concept_scalar.cc
-mln_value_concept_structured_SOURCES = mln_value_concept_structured.cc
-mln_value_concept_symbolic_SOURCES = mln_value_concept_symbolic.cc
-mln_value_concept_vectorial_SOURCES = mln_value_concept_vectorial.cc
-mln_value_equiv_SOURCES = mln_value_equiv.cc
-mln_value_essential_SOURCES = mln_value_essential.cc
-mln_value_float01_SOURCES = mln_value_float01.cc
-mln_value_float01__SOURCES = mln_value_float01_.cc
-mln_value_float01_16_SOURCES = mln_value_float01_16.cc
-mln_value_float01_8_SOURCES = mln_value_float01_8.cc
-mln_value_float01_f_SOURCES = mln_value_float01_f.cc
-mln_value_gl16_SOURCES = mln_value_gl16.cc
-mln_value_gl8_SOURCES = mln_value_gl8.cc
-mln_value_glf_SOURCES = mln_value_glf.cc
-mln_value_graylevel_SOURCES = mln_value_graylevel.cc
-mln_value_graylevel_f_SOURCES = mln_value_graylevel_f.cc
-mln_value_hsi_SOURCES = mln_value_hsi.cc
-mln_value_hsl_SOURCES = mln_value_hsl.cc
-mln_value_int_s_SOURCES = mln_value_int_s.cc
-mln_value_int_s16_SOURCES = mln_value_int_s16.cc
-mln_value_int_s32_SOURCES = mln_value_int_s32.cc
-mln_value_int_s8_SOURCES = mln_value_int_s8.cc
-mln_value_int_u_SOURCES = mln_value_int_u.cc
-mln_value_int_u12_SOURCES = mln_value_int_u12.cc
-mln_value_int_u16_SOURCES = mln_value_int_u16.cc
-mln_value_int_u32_SOURCES = mln_value_int_u32.cc
-mln_value_int_u8_SOURCES = mln_value_int_u8.cc
-mln_value_int_u_sat_SOURCES = mln_value_int_u_sat.cc
-mln_value_internal_all_SOURCES = mln_value_internal_all.cc
-mln_value_internal_convert_SOURCES = mln_value_internal_convert.cc
-mln_value_internal_encoding_SOURCES = mln_value_internal_encoding.cc
-mln_value_internal_essential_SOURCES = mln_value_internal_essential.cc
-mln_value_internal_gray__SOURCES = mln_value_internal_gray_.cc
-mln_value_internal_gray_f_SOURCES = mln_value_internal_gray_f.cc
-mln_value_internal_integer_SOURCES = mln_value_internal_integer.cc
-mln_value_internal_iterable_set_SOURCES = mln_value_internal_iterable_set.cc
-mln_value_internal_limits_SOURCES = mln_value_internal_limits.cc
-mln_value_internal_value_like_SOURCES = mln_value_internal_value_like.cc
-mln_value_interval_SOURCES = mln_value_interval.cc
-mln_value_label_SOURCES = mln_value_label.cc
-mln_value_label_16_SOURCES = mln_value_label_16.cc
-mln_value_label_32_SOURCES = mln_value_label_32.cc
-mln_value_label_8_SOURCES = mln_value_label_8.cc
-mln_value_lut_vec_SOURCES = mln_value_lut_vec.cc
-mln_value_mixin_SOURCES = mln_value_mixin.cc
-mln_value_ops_SOURCES = mln_value_ops.cc
-mln_value_other_SOURCES = mln_value_other.cc
-mln_value_proxy_SOURCES = mln_value_proxy.cc
-mln_value_rgb_SOURCES = mln_value_rgb.cc
-mln_value_rgb16_SOURCES = mln_value_rgb16.cc
-mln_value_rgb8_SOURCES = mln_value_rgb8.cc
-mln_value_scalar_SOURCES = mln_value_scalar.cc
-mln_value_set_SOURCES = mln_value_set.cc
-mln_value_shell_SOURCES = mln_value_shell.cc
-mln_value_sign_SOURCES = mln_value_sign.cc
-mln_value_stack_SOURCES = mln_value_stack.cc
-mln_value_super_value_SOURCES = mln_value_super_value.cc
-mln_value_value_array_SOURCES = mln_value_value_array.cc
-mln_value_viter_SOURCES = mln_value_viter.cc
-mln_win_all_SOURCES = mln_win_all.cc
-mln_win_backdiag2d_SOURCES = mln_win_backdiag2d.cc
-mln_win_ball_SOURCES = mln_win_ball.cc
-mln_win_cube3d_SOURCES = mln_win_cube3d.cc
-mln_win_cuboid3d_SOURCES = mln_win_cuboid3d.cc
-mln_win_diag2d_SOURCES = mln_win_diag2d.cc
-mln_win_diff_SOURCES = mln_win_diff.cc
-mln_win_disk2d_SOURCES = mln_win_disk2d.cc
-mln_win_essential_SOURCES = mln_win_essential.cc
-mln_win_hline2d_SOURCES = mln_win_hline2d.cc
-mln_win_inter_SOURCES = mln_win_inter.cc
-mln_win_line_SOURCES = mln_win_line.cc
-mln_win_multiple_SOURCES = mln_win_multiple.cc
-mln_win_multiple_size_SOURCES = mln_win_multiple_size.cc
-mln_win_octagon2d_SOURCES = mln_win_octagon2d.cc
-mln_win_rectangle2d_SOURCES = mln_win_rectangle2d.cc
-mln_win_segment1d_SOURCES = mln_win_segment1d.cc
-mln_win_shift_SOURCES = mln_win_shift.cc
-mln_win_sphere3d_SOURCES = mln_win_sphere3d.cc
-mln_win_sym_SOURCES = mln_win_sym.cc
-mln_win_vline2d_SOURCES = mln_win_vline2d.cc
-mln_world_all_SOURCES = mln_world_all.cc
-mln_world_binary_2d_all_SOURCES = mln_world_binary_2d_all.cc
-mln_world_binary_2d_enlarge_SOURCES = mln_world_binary_2d_enlarge.cc
-mln_world_binary_2d_projected_histo_SOURCES = mln_world_binary_2d_projected_histo.cc
-mln_world_binary_2d_subsample_SOURCES = mln_world_binary_2d_subsample.cc
-mln_world_inter_pixel_all_SOURCES = mln_world_inter_pixel_all.cc
-mln_world_inter_pixel_compute_SOURCES = mln_world_inter_pixel_compute.cc
-mln_world_inter_pixel_dim2_all_SOURCES = mln_world_inter_pixel_dim2_all.cc
-mln_world_inter_pixel_dim2_is_dot_SOURCES = mln_world_inter_pixel_dim2_is_dot.cc
-mln_world_inter_pixel_dim2_is_edge_SOURCES = mln_world_inter_pixel_dim2_is_edge.cc
-mln_world_inter_pixel_dim2_is_pixel_SOURCES = mln_world_inter_pixel_dim2_is_pixel.cc
-mln_world_inter_pixel_dim2_is_row_odd_SOURCES = mln_world_inter_pixel_dim2_is_row_odd.cc
-mln_world_inter_pixel_dim2_make_edge_image_SOURCES = mln_world_inter_pixel_dim2_make_edge_image.cc
-mln_world_inter_pixel_display_edge_SOURCES = mln_world_inter_pixel_display_edge.cc
-mln_world_inter_pixel_full2image_SOURCES = mln_world_inter_pixel_full2image.cc
-mln_world_inter_pixel_immerse_SOURCES = mln_world_inter_pixel_immerse.cc
-mln_world_inter_pixel_is_pixel_SOURCES = mln_world_inter_pixel_is_pixel.cc
-mln_world_inter_pixel_is_separator_SOURCES = mln_world_inter_pixel_is_separator.cc
-mln_world_inter_pixel_neighb2d_SOURCES = mln_world_inter_pixel_neighb2d.cc
-mln_world_inter_pixel_separator_to_pixels_SOURCES = mln_world_inter_pixel_separator_to_pixels.cc
--
1.5.6.5
1
0
last-svn-commit-155-gd916229 Use AM_DEFAULT_SOURCE_EXT to simplify Milena's Makefiles.
by Roland Levillain 07 May '10
by Roland Levillain 07 May '10
07 May '10
* common.mk: New.
Include it...
* tests/tests.mk,
* tools/tools.mk:
...here.
* tests/Makefile.am,
* tests/accu/Makefile.am,
* tests/accu/image/Makefile.am,
* tests/accu/math/Makefile.am,
* tests/accu/shape/Makefile.am,
* tests/accu/site_set/Makefile.am,
* tests/accu/stat/Makefile.am,
* tests/algebra/Makefile.am,
* tests/arith/Makefile.am,
* tests/binarization/Makefile.am,
* tests/border/Makefile.am,
* tests/canvas/Makefile.am,
* tests/canvas/browsing/Makefile.am,
* tests/canvas/morpho/Makefile.am,
* tests/convert/Makefile.am,
* tests/convert/impl/Makefile.am,
* tests/core/alias/Makefile.am,
* tests/core/image/Makefile.am,
* tests/core/image/dmorph/Makefile.am,
* tests/core/image/imorph/Makefile.am,
* tests/core/image/vmorph/Makefile.am,
* tests/core/other/Makefile.am,
* tests/core/routine/Makefile.am,
* tests/core/site_set/Makefile.am,
* tests/data/Makefile.am,
* tests/data/approx/Makefile.am,
* tests/data/naive/Makefile.am,
* tests/debug/Makefile.am,
* tests/draw/Makefile.am,
* tests/estim/Makefile.am,
* tests/extension/Makefile.am,
* tests/extract/Makefile.am,
* tests/fun/Makefile.am,
* tests/fun/i2v/Makefile.am,
* tests/fun/p2p/Makefile.am,
* tests/fun/stat/Makefile.am,
* tests/fun/v2i/Makefile.am,
* tests/fun/v2v/Makefile.am,
* tests/fun/vv2v/Makefile.am,
* tests/fun/x2x/Makefile.am,
* tests/geom/Makefile.am,
* tests/graph/Makefile.am,
* tests/graph/attribute/Makefile.am,
* tests/histo/Makefile.am,
* tests/io/dicom/Makefile.am,
* tests/io/dump/Makefile.am,
* tests/io/fits/Makefile.am,
* tests/io/fld/Makefile.am,
* tests/io/magick/Makefile.am,
* tests/io/off/Makefile.am,
* tests/io/pbm/Makefile.am,
* tests/io/pbms/Makefile.am,
* tests/io/pgm/Makefile.am,
* tests/io/pgms/Makefile.am,
* tests/io/ppm/Makefile.am,
* tests/io/ppms/Makefile.am,
* tests/io/tiff/Makefile.am,
* tests/labeling/Makefile.am,
* tests/linear/Makefile.am,
* tests/linear/gaussian/Makefile.am,
* tests/linear/local/Makefile.am,
* tests/literal/Makefile.am,
* tests/logical/Makefile.am,
* tests/make/Makefile.am,
* tests/metal/Makefile.am,
* tests/metal/math/Makefile.am,
* tests/morpho/Makefile.am,
* tests/morpho/approx/Makefile.am,
* tests/morpho/attribute/Makefile.am,
* tests/morpho/closing/Makefile.am,
* tests/morpho/closing/approx/Makefile.am,
* tests/morpho/elementary/Makefile.am,
* tests/morpho/opening/Makefile.am,
* tests/morpho/opening/approx/Makefile.am,
* tests/morpho/reconstruction/by_dilation/Makefile.am,
* tests/morpho/reconstruction/by_erosion/Makefile.am,
* tests/morpho/tree/Makefile.am,
* tests/morpho/tree/filter/Makefile.am,
* tests/morpho/watershed/Makefile.am,
* tests/opt/Makefile.am,
* tests/pw/Makefile.am,
* tests/registration/Makefile.am,
* tests/set/Makefile.am,
* tests/test/Makefile.am,
* tests/topo/Makefile.am,
* tests/topo/skeleton/Makefile.am,
* tests/trait/Makefile.am,
* tests/trait/image/Makefile.am,
* tests/trait/op/Makefile.am,
* tests/trait/value/Makefile.am,
* tests/transform/Makefile.am,
* tests/upscaling/art/Makefile.am,
* tests/util/Makefile.am,
* tests/value/Makefile.am,
* tests/value/builtin/Makefile.am,
* tests/win/Makefile.am,
* tests/world/binary_2d/Makefile.am,
* tests/world/inter_pixel/Makefile.am,
* tests/world/inter_pixel/dim2/Makefile.am:
Remove (now useless) `*_SOURCES' variables using
sed -ri '/^(\s|#)*\S+_SOURCES\s*=\s*\S+.cc\s*$/d'.
* apps/constrained-connectivity/Makefile.am,
* apps/graph-morpho/Makefile.am,
* apps/mesh-segm-skel/Makefile.am,
* apps/papers/levillain.09.ismm/Makefile.am
* tools/Makefile.am:
Likewise.
Include common.mk.
---
milena/ChangeLog | 118 ++++++++++++++++++++
milena/apps/constrained-connectivity/Makefile.am | 5 +-
milena/apps/graph-morpho/Makefile.am | 8 +-
milena/apps/mesh-segm-skel/Makefile.am | 9 +-
milena/apps/papers/levillain.09.ismm/Makefile.am | 8 +-
milena/common.mk | 22 ++++
milena/tests/Makefile.am | 4 +-
milena/tests/accu/Makefile.am | 16 +---
milena/tests/accu/image/Makefile.am | 9 +--
milena/tests/accu/math/Makefile.am | 3 +-
milena/tests/accu/shape/Makefile.am | 3 +-
milena/tests/accu/site_set/Makefile.am | 3 +-
milena/tests/accu/stat/Makefile.am | 11 +--
milena/tests/algebra/Makefile.am | 10 +--
milena/tests/arith/Makefile.am | 8 +-
milena/tests/binarization/Makefile.am | 4 +-
milena/tests/border/Makefile.am | 23 +----
milena/tests/canvas/Makefile.am | 4 +-
milena/tests/canvas/browsing/Makefile.am | 10 +--
milena/tests/canvas/morpho/Makefile.am | 4 +-
milena/tests/convert/Makefile.am | 10 +--
milena/tests/convert/impl/Makefile.am | 3 +-
milena/tests/core/alias/Makefile.am | 18 +---
milena/tests/core/image/Makefile.am | 14 +--
milena/tests/core/image/dmorph/Makefile.am | 10 +--
milena/tests/core/image/imorph/Makefile.am | 7 +-
milena/tests/core/image/vmorph/Makefile.am | 4 +-
milena/tests/core/other/Makefile.am | 22 +----
milena/tests/core/routine/Makefile.am | 8 +-
milena/tests/core/site_set/Makefile.am | 16 +---
milena/tests/data/Makefile.am | 25 +----
milena/tests/data/approx/Makefile.am | 3 +-
milena/tests/data/naive/Makefile.am | 3 +-
milena/tests/debug/Makefile.am | 7 +-
milena/tests/draw/Makefile.am | 5 +-
milena/tests/estim/Makefile.am | 5 +-
milena/tests/extension/Makefile.am | 4 +-
milena/tests/extract/Makefile.am | 8 +-
milena/tests/fun/Makefile.am | 3 +-
milena/tests/fun/i2v/Makefile.am | 6 +-
milena/tests/fun/p2p/Makefile.am | 4 +-
milena/tests/fun/stat/Makefile.am | 3 +-
milena/tests/fun/v2i/Makefile.am | 3 +-
milena/tests/fun/v2v/Makefile.am | 10 +--
milena/tests/fun/vv2v/Makefile.am | 5 +-
milena/tests/fun/x2x/Makefile.am | 6 +-
milena/tests/geom/Makefile.am | 22 +----
milena/tests/graph/Makefile.am | 3 +-
milena/tests/graph/attribute/Makefile.am | 4 +-
milena/tests/histo/Makefile.am | 6 +-
milena/tests/io/dicom/Makefile.am | 3 +-
milena/tests/io/dump/Makefile.am | 3 +-
milena/tests/io/fits/Makefile.am | 4 +-
milena/tests/io/fld/Makefile.am | 6 +-
milena/tests/io/magick/Makefile.am | 4 +-
milena/tests/io/off/Makefile.am | 6 +-
milena/tests/io/pbm/Makefile.am | 5 +-
milena/tests/io/pbms/Makefile.am | 3 +-
milena/tests/io/pgm/Makefile.am | 8 +-
milena/tests/io/pgms/Makefile.am | 3 +-
milena/tests/io/ppm/Makefile.am | 6 +-
milena/tests/io/ppms/Makefile.am | 3 +-
milena/tests/io/tiff/Makefile.am | 3 +-
milena/tests/labeling/Makefile.am | 19 +---
milena/tests/linear/Makefile.am | 8 +-
milena/tests/linear/gaussian/Makefile.am | 3 +-
milena/tests/linear/local/Makefile.am | 4 +-
milena/tests/literal/Makefile.am | 8 +-
milena/tests/logical/Makefile.am | 8 +-
milena/tests/make/Makefile.am | 17 +---
milena/tests/metal/Makefile.am | 6 +-
milena/tests/metal/math/Makefile.am | 5 +-
milena/tests/morpho/Makefile.am | 30 +-----
milena/tests/morpho/approx/Makefile.am | 4 +-
milena/tests/morpho/attribute/Makefile.am | 6 +-
milena/tests/morpho/closing/Makefile.am | 10 +--
milena/tests/morpho/closing/approx/Makefile.am | 3 +-
milena/tests/morpho/elementary/Makefile.am | 12 +--
milena/tests/morpho/opening/Makefile.am | 10 +--
milena/tests/morpho/opening/approx/Makefile.am | 3 +-
.../morpho/reconstruction/by_dilation/Makefile.am | 3 +-
.../morpho/reconstruction/by_erosion/Makefile.am | 3 +-
milena/tests/morpho/tree/Makefile.am | 8 +-
milena/tests/morpho/tree/filter/Makefile.am | 3 +-
milena/tests/morpho/watershed/Makefile.am | 5 +-
milena/tests/opt/Makefile.am | 4 +-
milena/tests/pw/Makefile.am | 5 +-
milena/tests/registration/Makefile.am | 4 +-
milena/tests/set/Makefile.am | 11 +--
milena/tests/test/Makefile.am | 4 +-
milena/tests/tests.mk | 3 +-
milena/tests/topo/Makefile.am | 4 +-
milena/tests/topo/skeleton/Makefile.am | 4 +-
milena/tests/trait/Makefile.am | 5 +-
milena/tests/trait/image/Makefile.am | 4 +-
milena/tests/trait/op/Makefile.am | 5 +-
milena/tests/trait/value/Makefile.am | 5 +-
milena/tests/transform/Makefile.am | 11 +--
milena/tests/upscaling/art/Makefile.am | 4 +-
milena/tests/util/Makefile.am | 19 +---
milena/tests/value/Makefile.am | 25 +----
milena/tests/value/builtin/Makefile.am | 4 +-
milena/tests/win/Makefile.am | 19 +---
milena/tests/world/binary_2d/Makefile.am | 4 +-
milena/tests/world/inter_pixel/Makefile.am | 7 +-
milena/tests/world/inter_pixel/dim2/Makefile.am | 3 +-
milena/tools/Makefile.am | 6 +-
milena/tools/tools.mk | 3 +-
108 files changed, 317 insertions(+), 610 deletions(-)
create mode 100644 milena/common.mk
diff --git a/milena/ChangeLog b/milena/ChangeLog
index 39cc7f3..0fc13f8 100644
--- a/milena/ChangeLog
+++ b/milena/ChangeLog
@@ -1,3 +1,121 @@
+2010-04-22 Roland Levillain <roland(a)lrde.epita.fr>
+
+ Use AM_DEFAULT_SOURCE_EXT to simplify Milena's Makefiles.
+
+ * common.mk: New.
+ Include it...
+ * tests/tests.mk,
+ * tools/tools.mk:
+ ...here.
+ * tests/Makefile.am,
+ * tests/accu/Makefile.am,
+ * tests/accu/image/Makefile.am,
+ * tests/accu/math/Makefile.am,
+ * tests/accu/shape/Makefile.am,
+ * tests/accu/site_set/Makefile.am,
+ * tests/accu/stat/Makefile.am,
+ * tests/algebra/Makefile.am,
+ * tests/arith/Makefile.am,
+ * tests/binarization/Makefile.am,
+ * tests/border/Makefile.am,
+ * tests/canvas/Makefile.am,
+ * tests/canvas/browsing/Makefile.am,
+ * tests/canvas/morpho/Makefile.am,
+ * tests/convert/Makefile.am,
+ * tests/convert/impl/Makefile.am,
+ * tests/core/alias/Makefile.am,
+ * tests/core/image/Makefile.am,
+ * tests/core/image/dmorph/Makefile.am,
+ * tests/core/image/imorph/Makefile.am,
+ * tests/core/image/vmorph/Makefile.am,
+ * tests/core/other/Makefile.am,
+ * tests/core/routine/Makefile.am,
+ * tests/core/site_set/Makefile.am,
+ * tests/data/Makefile.am,
+ * tests/data/approx/Makefile.am,
+ * tests/data/naive/Makefile.am,
+ * tests/debug/Makefile.am,
+ * tests/draw/Makefile.am,
+ * tests/estim/Makefile.am,
+ * tests/extension/Makefile.am,
+ * tests/extract/Makefile.am,
+ * tests/fun/Makefile.am,
+ * tests/fun/i2v/Makefile.am,
+ * tests/fun/p2p/Makefile.am,
+ * tests/fun/stat/Makefile.am,
+ * tests/fun/v2i/Makefile.am,
+ * tests/fun/v2v/Makefile.am,
+ * tests/fun/vv2v/Makefile.am,
+ * tests/fun/x2x/Makefile.am,
+ * tests/geom/Makefile.am,
+ * tests/graph/Makefile.am,
+ * tests/graph/attribute/Makefile.am,
+ * tests/histo/Makefile.am,
+ * tests/io/dicom/Makefile.am,
+ * tests/io/dump/Makefile.am,
+ * tests/io/fits/Makefile.am,
+ * tests/io/fld/Makefile.am,
+ * tests/io/magick/Makefile.am,
+ * tests/io/off/Makefile.am,
+ * tests/io/pbm/Makefile.am,
+ * tests/io/pbms/Makefile.am,
+ * tests/io/pgm/Makefile.am,
+ * tests/io/pgms/Makefile.am,
+ * tests/io/ppm/Makefile.am,
+ * tests/io/ppms/Makefile.am,
+ * tests/io/tiff/Makefile.am,
+ * tests/labeling/Makefile.am,
+ * tests/linear/Makefile.am,
+ * tests/linear/gaussian/Makefile.am,
+ * tests/linear/local/Makefile.am,
+ * tests/literal/Makefile.am,
+ * tests/logical/Makefile.am,
+ * tests/make/Makefile.am,
+ * tests/metal/Makefile.am,
+ * tests/metal/math/Makefile.am,
+ * tests/morpho/Makefile.am,
+ * tests/morpho/approx/Makefile.am,
+ * tests/morpho/attribute/Makefile.am,
+ * tests/morpho/closing/Makefile.am,
+ * tests/morpho/closing/approx/Makefile.am,
+ * tests/morpho/elementary/Makefile.am,
+ * tests/morpho/opening/Makefile.am,
+ * tests/morpho/opening/approx/Makefile.am,
+ * tests/morpho/reconstruction/by_dilation/Makefile.am,
+ * tests/morpho/reconstruction/by_erosion/Makefile.am,
+ * tests/morpho/tree/Makefile.am,
+ * tests/morpho/tree/filter/Makefile.am,
+ * tests/morpho/watershed/Makefile.am,
+ * tests/opt/Makefile.am,
+ * tests/pw/Makefile.am,
+ * tests/registration/Makefile.am,
+ * tests/set/Makefile.am,
+ * tests/test/Makefile.am,
+ * tests/topo/Makefile.am,
+ * tests/topo/skeleton/Makefile.am,
+ * tests/trait/Makefile.am,
+ * tests/trait/image/Makefile.am,
+ * tests/trait/op/Makefile.am,
+ * tests/trait/value/Makefile.am,
+ * tests/transform/Makefile.am,
+ * tests/upscaling/art/Makefile.am,
+ * tests/util/Makefile.am,
+ * tests/value/Makefile.am,
+ * tests/value/builtin/Makefile.am,
+ * tests/win/Makefile.am,
+ * tests/world/binary_2d/Makefile.am,
+ * tests/world/inter_pixel/Makefile.am,
+ * tests/world/inter_pixel/dim2/Makefile.am:
+ Remove (now useless) `*_SOURCES' variables using
+ sed -ri '/^(\s|#)*\S+_SOURCES\s*=\s*\S+.cc\s*$/d'.
+ * apps/constrained-connectivity/Makefile.am,
+ * apps/graph-morpho/Makefile.am,
+ * apps/mesh-segm-skel/Makefile.am,
+ * apps/papers/levillain.09.ismm/Makefile.am
+ * tools/Makefile.am:
+ Likewise.
+ Include common.mk.
+
2010-04-27 Roland Levillain <roland(a)lrde.epita.fr>
Help g++ 3.3 compile Milena code.
diff --git a/milena/apps/constrained-connectivity/Makefile.am b/milena/apps/constrained-connectivity/Makefile.am
index 84a6ed2..9c3e9bf 100644
--- a/milena/apps/constrained-connectivity/Makefile.am
+++ b/milena/apps/constrained-connectivity/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -14,6 +14,8 @@
# You should have received a copy of the GNU General Public License
# along with Olena. If not, see <http://www.gnu.org/licenses/>.
+include $(top_srcdir)/milena/common.mk
+
# Find Milena headers.
AM_CPPFLAGS = -I$(top_srcdir)/milena -I$(top_builddir)/milena
# Produce fast code.
@@ -21,7 +23,6 @@ APPS_CXXFLAGS = @APPS_CXXFLAGS@
AM_CXXFLAGS = $(APPS_CXXFLAGS)
noinst_PROGRAMS = constrained-connectivity
-constrained_connectivity_SOURCES = constrained-connectivity.cc
TESTS = test-constrained-connectivity
diff --git a/milena/apps/graph-morpho/Makefile.am b/milena/apps/graph-morpho/Makefile.am
index 7e3d4db..d85a9ca 100644
--- a/milena/apps/graph-morpho/Makefile.am
+++ b/milena/apps/graph-morpho/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -14,6 +14,8 @@
# You should have received a copy of the GNU General Public License
# along with Olena. If not, see <http://www.gnu.org/licenses/>.
+include $(top_srcdir)/milena/common.mk
+
# Find Milena headers.
AM_CPPFLAGS = -I$(top_srcdir)/milena -I$(top_builddir)/milena
# Produce fast code.
@@ -24,10 +26,6 @@ STRICT_ALIASING_CXXFLAGS = @STRICT_ALIASING_CXXFLAGS@
noinst_HEADERS = convert.hh debug.hh make.hh morpho.hh make_complex2d.hh
noinst_PROGRAMS = samples-complex1d samples-image2d asf-complex1d asf-image2d
-samples_complex1d_SOURCES = samples-complex1d.cc
-samples_image2d_SOURCES = samples-image2d.cc
-asf_complex1d_SOURCES = asf-complex1d.cc
-asf_image2d_SOURCES = asf-image2d.cc
samples_image2d_CXXFLAGS = $(AM_CXXFLAGS) $(STRICT_ALIASING_CXXFLAGS)
TESTS = samples-complex1d samples-image2d
diff --git a/milena/apps/mesh-segm-skel/Makefile.am b/milena/apps/mesh-segm-skel/Makefile.am
index 0185535..d104192 100644
--- a/milena/apps/mesh-segm-skel/Makefile.am
+++ b/milena/apps/mesh-segm-skel/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -13,9 +14,8 @@
#
# You should have received a copy of the GNU General Public License
# along with Olena. If not, see <http://www.gnu.org/licenses/>.
-#
-## Process this file through Automake to produce Makefile.in.
+include $(top_srcdir)/milena/common.mk
# Linking with gluit and GLUT/OpenGL.
gluit_builddir = $(top_builddir)/external/trimesh/gluit
@@ -107,7 +107,6 @@ EXTRA_DIST = trimesh/README
# A small program exercising the curvature computation routines ported
# from Trimesh to Milena.
bin_PROGRAMS += mesh-complex-max-curv
-mesh_complex_max_curv_SOURCES = mesh-complex-max-curv.cc
TESTS += test-mesh-complex-max-curv
CLEANFILES += teapot-complex-max-curv.off
@@ -117,7 +116,6 @@ CLEANFILES += teapot-complex-max-curv.off
# Segmentation program working on precomputed meshes with curvatures data.
bin_PROGRAMS += mesh-complex-segm
-mesh_complex_segm_SOURCES = mesh-complex-segm.cc
TESTS += test-mesh-complex-segm
CLEANFILES += \
socket-max-curv-segm.off \
@@ -130,7 +128,6 @@ CLEANFILES += \
# `mesh-complex-segm', data are read from polygons, which implies an
# extra averaging step).
bin_PROGRAMS += mesh-complex-max-curv-segm
-mesh_complex_max_curv_segm_SOURCES = mesh-complex-max-curv-segm.cc
TESTS += test-mesh-complex-max-curv-segm
CLEANFILES += \
socket-complex-max-curv-segm.off \
diff --git a/milena/apps/papers/levillain.09.ismm/Makefile.am b/milena/apps/papers/levillain.09.ismm/Makefile.am
index f397567..6321d51 100644
--- a/milena/apps/papers/levillain.09.ismm/Makefile.am
+++ b/milena/apps/papers/levillain.09.ismm/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -16,6 +17,8 @@
# Illustrations from the ISMM 2009 paper.
+include $(top_srcdir)/milena/common.mk
+
# Find Milena headers.
AM_CPPFLAGS = -I$(top_srcdir)/milena -I$(top_builddir)/milena
# Produce fast code.
@@ -25,9 +28,6 @@ AM_CXXFLAGS = $(APPS_CXXFLAGS)
noinst_HEADERS = chain.hh
noinst_PROGRAMS = image2d graph complex
-image2d_SOURCES = image2d.cc
-graph_SOURCES = graph.cc
-complex_SOURCES = complex.cc
# Input images.
# FIXME: Move them to milena/img/?
diff --git a/milena/common.mk b/milena/common.mk
new file mode 100644
index 0000000..3623290
--- /dev/null
+++ b/milena/common.mk
@@ -0,0 +1,22 @@
+## common.mk -*- Makefile-Automake -*-
+
+## Common Automake parameters.
+
+## Copyright (C) 2010 EPITA Research and Development Laboratory (LRDE).
+##
+## This file is part of Olena.
+##
+## Olena is free software: you can redistribute it and/or modify it under
+## the terms of the GNU General Public License as published by the Free
+## Software Foundation, version 2 of the License.
+##
+## Olena is distributed in the hope that it will be useful,
+## but WITHOUT ANY WARRANTY; without even the implied warranty of
+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+## General Public License for more details.
+##
+## You should have received a copy of the GNU General Public License
+## along with Olena. If not, see <http://www.gnu.org/licenses/>.
+
+# C++ sources.
+AM_DEFAULT_SOURCE_EXT = .cc
diff --git a/milena/tests/Makefile.am b/milena/tests/Makefile.am
index 562078e..5f61049 100644
--- a/milena/tests/Makefile.am
+++ b/milena/tests/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2007, 2008, 2009 EPITA Research and Development
+# Copyright (C) 2007, 2008, 2009, 2010 EPITA Research and Development
# Laboratory (LRDE).
#
# This file is part of Olena.
@@ -77,13 +77,11 @@ check_PROGRAMS = \
essential_headers \
global_vars
-all_headers_SOURCES = all_headers.cc
all_headers_CPPFLAGS = $(AM_CPPFLAGS) \
$(CFITSIO_CPPFLAGS) $(GDCM_CPPFLAGS) $(MAGICKXX_CPPFLAGS) $(TIFF_CPPFLAGS)
all_headers_LDFLAGS = \
$(CFITSIO_LDFLAGS) $(GDCM_LDFLAGS) $(MAGICKXX_LDFLAGS) $(TIFF_LDFLAGS)
-essential_headers_SOURCES = essential_headers.cc
global_vars_SOURCES = global_vars1.cc global_vars2.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/accu/Makefile.am b/milena/tests/accu/Makefile.am
index 5e8fb52..4339516 100644
--- a/milena/tests/accu/Makefile.am
+++ b/milena/tests/accu/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2007, 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE).
#
# This file is part of Olena.
#
@@ -41,18 +42,5 @@ check_PROGRAMS = \
transform_snake \
tuple
-all_accus_SOURCES = all_accus.cc
-compute_SOURCES = compute.cc
-histo_SOURCES = histo.cc
-line_SOURCES = line.cc
-max_site_SOURCES = max_site.cc
-nil_SOURCES = nil.cc
-pair_SOURCES = pair.cc
-transform_SOURCES = transform.cc
-transform_diagonal_SOURCES = transform_diagonal.cc
-transform_directional_SOURCES = transform_directional.cc
-transform_line_SOURCES = transform_line.cc
-transform_snake_SOURCES = transform_snake.cc
-tuple_SOURCES = tuple.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/accu/image/Makefile.am b/milena/tests/accu/image/Makefile.am
index 903f0eb..6de419d 100644
--- a/milena/tests/accu/image/Makefile.am
+++ b/milena/tests/accu/image/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -28,12 +28,5 @@ check_PROGRAMS = \
to_result \
untake
-init_SOURCES = init.cc
-set_value_SOURCES = set_value.cc
-take_SOURCES = take.cc
-take_as_init_SOURCES = take_as_init.cc
-take_n_times_SOURCES = take_n_times.cc
-to_result_SOURCES = to_result.cc
-untake_SOURCES = untake.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/accu/math/Makefile.am b/milena/tests/accu/math/Makefile.am
index 14f863b..0de41a3 100644
--- a/milena/tests/accu/math/Makefile.am
+++ b/milena/tests/accu/math/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -22,6 +22,5 @@ include $(top_srcdir)/milena/tests/tests.mk
check_PROGRAMS = \
count
-count_SOURCES = count.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/accu/shape/Makefile.am b/milena/tests/accu/shape/Makefile.am
index 4677fc6..79d427f 100644
--- a/milena/tests/accu/shape/Makefile.am
+++ b/milena/tests/accu/shape/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -22,6 +22,5 @@ include $(top_srcdir)/milena/tests/tests.mk
check_PROGRAMS = \
bbox
-bbox_SOURCES = bbox.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/accu/site_set/Makefile.am b/milena/tests/accu/site_set/Makefile.am
index 6319f07..29fe664 100644
--- a/milena/tests/accu/site_set/Makefile.am
+++ b/milena/tests/accu/site_set/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -22,6 +22,5 @@ include $(top_srcdir)/milena/tests/tests.mk
check_PROGRAMS = \
rectangularity
-rectangularity_SOURCES = rectangularity.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/accu/stat/Makefile.am b/milena/tests/accu/stat/Makefile.am
index ab7e52e..1a1d3b4 100644
--- a/milena/tests/accu/stat/Makefile.am
+++ b/milena/tests/accu/stat/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -30,15 +30,6 @@ check_PROGRAMS = \
mean \
rank
-var_SOURCES = var.cc
-mean_SOURCES = mean.cc
-median_h_SOURCES = median_h.cc
-min_SOURCES = min.cc
-min_h_SOURCES = min_h.cc
-max_SOURCES = max.cc
-max_h_SOURCES = max_h.cc
-min_max_SOURCES = min_max.cc
-rank_SOURCES = rank.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/algebra/Makefile.am b/milena/tests/algebra/Makefile.am
index a954f1b..b405d7d 100644
--- a/milena/tests/algebra/Makefile.am
+++ b/milena/tests/algebra/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -28,12 +29,5 @@ check_PROGRAMS = \
vec \
vec2
-h_mat_SOURCES = h_mat.cc
-h_vec_SOURCES = h_vec.cc
-mat_SOURCES = mat.cc
-mat2_SOURCES = mat2.cc
-quat_SOURCES = quat.cc
-vec_SOURCES = vec.cc
-vec2_SOURCES = vec2.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/arith/Makefile.am b/milena/tests/arith/Makefile.am
index c7539a7..4338462 100644
--- a/milena/tests/arith/Makefile.am
+++ b/milena/tests/arith/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2007, 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -26,10 +27,5 @@ check_PROGRAMS = \
revert \
times
-diff_abs_SOURCES = diff_abs.cc
-minus_SOURCES = minus.cc
-plus_SOURCES = plus.cc
-revert_SOURCES = revert.cc
-times_SOURCES = times.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/binarization/Makefile.am b/milena/tests/binarization/Makefile.am
index 3a258fd..bcac019 100644
--- a/milena/tests/binarization/Makefile.am
+++ b/milena/tests/binarization/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -22,7 +23,6 @@ include $(top_srcdir)/milena/tests/tests.mk
check_PROGRAMS = \
threshold
-threshold_SOURCES = threshold.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/border/Makefile.am b/milena/tests/border/Makefile.am
index 9337423..ab91f79 100644
--- a/milena/tests/border/Makefile.am
+++ b/milena/tests/border/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2007, 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -41,25 +42,5 @@ check_PROGRAMS = \
resize_sub_image \
resize
-adjust_SOURCES = adjust.cc
-duplicate_SOURCES = duplicate.cc
-equalize_SOURCES = equalize.cc
-fill_SOURCES = fill.cc
-find_SOURCES = find.cc
-get_SOURCES = get.cc
-mirror_SOURCES = mirror.cc
-resize_equal_SOURCES = resize_equal.cc
-resize_image1d_1_SOURCES = resize_image1d_1.cc
-resize_image1d_2_SOURCES = resize_image1d_2.cc
-resize_image1d_3_SOURCES = resize_image1d_3.cc
-resize_image2d_1_SOURCES = resize_image2d_1.cc
-resize_image2d_2_SOURCES = resize_image2d_2.cc
-resize_image2d_3_SOURCES = resize_image2d_3.cc
-resize_image3d_1_SOURCES = resize_image3d_1.cc
-resize_image3d_2_SOURCES = resize_image3d_2.cc
-resize_image3d_3_SOURCES = resize_image3d_3.cc
-resize_image_if_SOURCES = resize_image_if.cc
-resize_sub_image_SOURCES = resize_sub_image.cc
-resize_SOURCES = resize.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/canvas/Makefile.am b/milena/tests/canvas/Makefile.am
index 57a60c8..4968850 100644
--- a/milena/tests/canvas/Makefile.am
+++ b/milena/tests/canvas/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2007, 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -24,5 +25,4 @@ SUBDIRS = browsing morpho
check_PROGRAMS = \
chamfer
-chamfer_SOURCES = chamfer.cc
diff --git a/milena/tests/canvas/browsing/Makefile.am b/milena/tests/canvas/browsing/Makefile.am
index e5c4a19..bae2f39 100644
--- a/milena/tests/canvas/browsing/Makefile.am
+++ b/milena/tests/canvas/browsing/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2007, 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -28,12 +29,5 @@ check_PROGRAMS = \
depth_first_search \
breadth_first_search
-fwd_SOURCES = fwd.cc
-snake_fwd_SOURCES = snake_fwd.cc
-snake_vert_SOURCES = snake_vert.cc
-hyper_directional_SOURCES = hyper_directional.cc
-dir_struct_elt_incr_update_SOURCES = dir_struct_elt_incr_update.cc
-depth_first_search_SOURCES = depth_first_search.cc
-breadth_first_search_SOURCES = breadth_first_search.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/canvas/morpho/Makefile.am b/milena/tests/canvas/morpho/Makefile.am
index 7909349..37cac6e 100644
--- a/milena/tests/canvas/morpho/Makefile.am
+++ b/milena/tests/canvas/morpho/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2007, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2007, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -21,4 +22,3 @@ include $(top_srcdir)/milena/tests/tests.mk
check_PROGRAMS=attribute_filter
-attribute_filter_SOURCES=attribute_filter.cc
diff --git a/milena/tests/convert/Makefile.am b/milena/tests/convert/Makefile.am
index ab369d9..8243441 100644
--- a/milena/tests/convert/Makefile.am
+++ b/milena/tests/convert/Makefile.am
@@ -1,5 +1,5 @@
-# Copyright (C) 2007, 2008, 2009 EPITA Research and Development
-# Laboratory (LRDE).
+# Copyright (C) 2007, 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -29,16 +29,10 @@ check_PROGRAMS = \
to_rgb \
to_window
-to_image_SOURCES = to_image.cc
-to_p_array_SOURCES = to_p_array.cc
-to_p_set_SOURCES = to_p_set.cc
-to_rgb_SOURCES = to_rgb.cc
-to_window_SOURCES = to_window.cc
#<<lrde
# FIXME: Not distributed (yet).
check_PROGRAMS += to_hsl
-to_hsl_SOURCES = to_hsl.cc
#>>
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/convert/impl/Makefile.am b/milena/tests/convert/impl/Makefile.am
index 79f9727..b81fd80 100644
--- a/milena/tests/convert/impl/Makefile.am
+++ b/milena/tests/convert/impl/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -22,6 +22,5 @@ include $(top_srcdir)/milena/tests/tests.mk
check_PROGRAMS = \
from_site_set_to_image
-from_site_set_to_image_SOURCES = from_site_set_to_image.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/core/alias/Makefile.am b/milena/tests/core/alias/Makefile.am
index dff2fce..af3c122 100644
--- a/milena/tests/core/alias/Makefile.am
+++ b/milena/tests/core/alias/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -36,20 +37,5 @@ window1d \
window2d \
window3d
-box1d_SOURCES = box1d.cc
-box2d_SOURCES = box2d.cc
-box3d_SOURCES = box3d.cc
-dpoint1d_SOURCES = dpoint1d.cc
-dpoint2d_SOURCES = dpoint2d.cc
-dpoint3d_SOURCES = dpoint3d.cc
-point1d_SOURCES = point1d.cc
-point2d_SOURCES = point2d.cc
-point3d_SOURCES = point3d.cc
-w_window1d_int_SOURCES = w_window1d_int.cc
-w_window2d_int_SOURCES = w_window2d_int.cc
-w_window3d_int_SOURCES = w_window3d_int.cc
-window1d_SOURCES = window1d.cc
-window2d_SOURCES = window2d.cc
-window3d_SOURCES = window3d.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/core/image/Makefile.am b/milena/tests/core/image/Makefile.am
index 0bfff01..51eb2b2 100644
--- a/milena/tests/core/image/Makefile.am
+++ b/milena/tests/core/image/Makefile.am
@@ -1,5 +1,5 @@
-# Copyright (C) 2008, 2009 EPITA Research and Development Laboratory
-# (LRDE).
+# Copyright (C) 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -40,15 +40,5 @@ check_PROGRAMS = \
noinst_HEADERS = complex_image.hh
-complex_image_SOURCES = complex_image.cc
-edge_image_SOURCES = edge_image.cc
-flat_image_SOURCES = flat_image.cc
-graph_image_SOURCES = graph_image.cc
-image1d_SOURCES = image1d.cc
-image2d_SOURCES = image2d.cc
-image3d_SOURCES = image3d.cc
-line_graph_image_SOURCES = line_graph_image.cc
-vertex_and_edge_image_SOURCES = vertex_and_edge_image.cc
-vertex_image_SOURCES = vertex_image.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/core/image/dmorph/Makefile.am b/milena/tests/core/image/dmorph/Makefile.am
index 28445e9..e71cc66 100644
--- a/milena/tests/core/image/dmorph/Makefile.am
+++ b/milena/tests/core/image/dmorph/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -29,13 +29,5 @@ check_PROGRAMS = \
transformed_image \
unproject_image
-hexa_SOURCES = hexa.cc
-image_if_SOURCES = image_if.cc
-image2d_h_SOURCES = image2d_h.cc
-p2p_image_SOURCES = p2p_image.cc
-slice_image_SOURCES = slice_image.cc
-sub_image_SOURCES = sub_image.cc
-transformed_image_SOURCES = transformed_image.cc
-unproject_image_SOURCES = unproject_image.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/core/image/imorph/Makefile.am b/milena/tests/core/image/imorph/Makefile.am
index aa0ccfc..f728850 100644
--- a/milena/tests/core/image/imorph/Makefile.am
+++ b/milena/tests/core/image/imorph/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -26,10 +26,5 @@ check_PROGRAMS = \
safe_image \
tr_image
-decorated_image_SOURCES = decorated_image.cc
-interpolated_SOURCES = interpolated.cc
-labeled_image_SOURCES = labeled_image.cc
-safe_image_SOURCES = safe_image.cc
-tr_image_SOURCES = tr_image.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/core/image/vmorph/Makefile.am b/milena/tests/core/image/vmorph/Makefile.am
index 40e190b..712b730 100644
--- a/milena/tests/core/image/vmorph/Makefile.am
+++ b/milena/tests/core/image/vmorph/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -23,7 +23,5 @@ check_PROGRAMS = \
cast_image \
fun_image
-cast_image_SOURCES = cast_image.cc
-fun_image_SOURCES = fun_image.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/core/other/Makefile.am b/milena/tests/core/other/Makefile.am
index 9443837..6e279ca 100644
--- a/milena/tests/core/other/Makefile.am
+++ b/milena/tests/core/other/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -40,24 +41,5 @@ check_PROGRAMS = \
var \
w_window
-box_runstart_piter_SOURCES = box_runstart_piter.cc
-box_runend_piter_SOURCES = box_runend_piter.cc
-category_SOURCES = category.cc
-dpoints_pixter_SOURCES = dpoints_pixter.cc
-graph_elt_neighborhood_SOURCES = graph_elt_neighborhood.cc
-graph_elt_neighborhood_if_SOURCES = graph_elt_neighborhood_if.cc
-graph_elt_window_SOURCES = graph_elt_window.cc
-graph_elt_window_if_SOURCES = graph_elt_window_if.cc
-neighb_SOURCES = neighb.cc
-pixel_SOURCES = pixel.cc
-pixter1d_SOURCES = pixter1d.cc
-pixter1d_more_SOURCES = pixter1d_more.cc
-pixter2d_SOURCES = pixter2d.cc
-pixter2d_more_SOURCES = pixter2d_more.cc
-pixter3d_SOURCES = pixter3d.cc
-pixter3d_more_SOURCES = pixter3d_more.cc
-point_set_compatibility_SOURCES = point_set_compatibility.cc
-var_SOURCES = var.cc
-w_window_SOURCES = w_window.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/core/routine/Makefile.am b/milena/tests/core/routine/Makefile.am
index da4d50b..560a928 100644
--- a/milena/tests/core/routine/Makefile.am
+++ b/milena/tests/core/routine/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -26,10 +27,5 @@ check_PROGRAMS = \
initialize \
primary
-duplicate_SOURCES = duplicate.cc
-exact_SOURCES = exact.cc
-extend_SOURCES = extend.cc
-initialize_SOURCES = initialize.cc
-primary_SOURCES = primary.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/core/site_set/Makefile.am b/milena/tests/core/site_set/Makefile.am
index a67544a..1b83d43 100644
--- a/milena/tests/core/site_set/Makefile.am
+++ b/milena/tests/core/site_set/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -34,18 +35,5 @@ check_PROGRAMS = \
p_vaccess \
p_vertices
-operators_SOURCES = operators.cc
-p_array_SOURCES = p_array.cc
-p_complex_SOURCES = p_complex.cc
-p_image_SOURCES = p_image.cc
-p_priority_queue_SOURCES = p_priority_queue.cc
-p_queue_SOURCES = p_queue.cc
-p_queue_fast_SOURCES = p_queue_fast.cc
-p_set_SOURCES = p_set.cc
-p_if_SOURCES = p_if.cc
-p_transformed_SOURCES = p_transformed.cc
-p_vaccess_SOURCES = p_vaccess.cc
-p_vertices_SOURCES = p_vertices.cc
-p_edges_SOURCES = p_edges.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/data/Makefile.am b/milena/tests/data/Makefile.am
index 213cdbe..7be7438 100644
--- a/milena/tests/data/Makefile.am
+++ b/milena/tests/data/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -42,29 +43,9 @@ check_PROGRAMS = \
transform_inplace \
update
-abs_SOURCES = abs.cc
-apply_SOURCES = apply.cc
-compare_SOURCES = compare.cc
-compute_SOURCES = compute.cc
-convert_SOURCES = convert.cc
-fill_SOURCES = fill.cc
-fill_with_image_SOURCES = fill_with_image.cc
-fill_with_value_SOURCES = fill_with_value.cc
-median_SOURCES = median.cc
-median_fast_SOURCES = median_fast.cc
-memcpy__SOURCES = memcpy_.cc
-memset__SOURCES = memset_.cc
-paste_SOURCES = paste.cc
-saturate_SOURCES = saturate.cc
-sort_psites_SOURCES = sort_psites.cc
-stretch_SOURCES = stretch.cc
-transform_SOURCES = transform.cc
-transform_inplace_SOURCES = transform_inplace.cc
-update_SOURCES = update.cc
# Lengthy tests.
-# FIXME: enable it when make full-check is enabled.
-#fill_full_SOURCES = fill_full.cc
+# FIXME: Enable `fill_full' it when make full-check is enabled.
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/data/approx/Makefile.am b/milena/tests/data/approx/Makefile.am
index 0c33433..654932c 100644
--- a/milena/tests/data/approx/Makefile.am
+++ b/milena/tests/data/approx/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -22,7 +22,6 @@ include $(top_srcdir)/milena/tests/tests.mk
check_PROGRAMS = \
median
-median_SOURCES = median.cc
# FIXME: The current median test is way too long to run. Break it
# into two tests: a fast one, executed during `make check', compiled
# with no optimization, using a small kernel and a small image; and a
diff --git a/milena/tests/data/naive/Makefile.am b/milena/tests/data/naive/Makefile.am
index 7a9da64..e6d3986 100644
--- a/milena/tests/data/naive/Makefile.am
+++ b/milena/tests/data/naive/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -22,7 +22,6 @@ include $(top_srcdir)/milena/tests/tests.mk
check_PROGRAMS = \
median
-median_SOURCES = median.cc
# FIXME: The current median test is way too long to run. Break it
# into two tests: a fast one, executed during `make check', compiled
# with no optimization, using a small kernel and a small image; and a
diff --git a/milena/tests/debug/Makefile.am b/milena/tests/debug/Makefile.am
index cc44bc1..9da1df3 100644
--- a/milena/tests/debug/Makefile.am
+++ b/milena/tests/debug/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2007, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2007, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -25,9 +26,5 @@ check_PROGRAMS = \
iota \
slices_2d
-println_SOURCES = println.cc
-println_with_border_SOURCES = println_with_border.cc
-iota_SOURCES = iota.cc
-slices_2d_SOURCES = slices_2d.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/draw/Makefile.am b/milena/tests/draw/Makefile.am
index 3cb7692..434913f 100644
--- a/milena/tests/draw/Makefile.am
+++ b/milena/tests/draw/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2007, 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -23,7 +24,5 @@ check_PROGRAMS = \
line \
graph
-line_SOURCES = line.cc
-graph_SOURCES = graph.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/estim/Makefile.am b/milena/tests/estim/Makefile.am
index d0c5bcf..1be8313 100644
--- a/milena/tests/estim/Makefile.am
+++ b/milena/tests/estim/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2007, 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -23,7 +24,5 @@ check_PROGRAMS = \
mean \
min_max
-mean_SOURCES = mean.cc
-min_max_SOURCES = min_max.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/extension/Makefile.am b/milena/tests/extension/Makefile.am
index 890dff7..5fdfabe 100644
--- a/milena/tests/extension/Makefile.am
+++ b/milena/tests/extension/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -22,6 +23,5 @@ include $(top_srcdir)/milena/tests/tests.mk
check_PROGRAMS = \
fill
-fill_SOURCES = fill.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/extract/Makefile.am b/milena/tests/extract/Makefile.am
index f7b0c1c..9620482 100644
--- a/milena/tests/extract/Makefile.am
+++ b/milena/tests/extract/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -29,12 +29,6 @@ check_PROGRAMS = \
red \
sat
-blue_SOURCES = blue.cc
-green_SOURCES = green.cc
-hue_SOURCES = hue.cc
-lum_SOURCES = lum.cc
-red_SOURCES = red.cc
-sat_SOURCES = sat.cc
#>>
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/fun/Makefile.am b/milena/tests/fun/Makefile.am
index a39cf27..9fbbd07 100644
--- a/milena/tests/fun/Makefile.am
+++ b/milena/tests/fun/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2007, 2008, 2009 EPITA Research and Development
+# Copyright (C) 2007, 2008, 2009, 2010 EPITA Research and Development
# Laboratory (LRDE).
#
# This file is part of Olena.
@@ -34,4 +34,3 @@ SUBDIRS = \
check_PROGRAMS = \
ops
-ops_SOURCES = ops.cc
diff --git a/milena/tests/fun/i2v/Makefile.am b/milena/tests/fun/i2v/Makefile.am
index 0b33406..2b5ebda 100644
--- a/milena/tests/fun/i2v/Makefile.am
+++ b/milena/tests/fun/i2v/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2007, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2007, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE).
#
# This file is part of Olena.
#
@@ -24,8 +25,5 @@ check_PROGRAMS = \
array \
value_at_index
-all_to_SOURCES = all_to.cc
-array_SOURCES = array.cc
-value_at_index_SOURCES = value_at_index.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/fun/p2p/Makefile.am b/milena/tests/fun/p2p/Makefile.am
index 12ecb5d..10c60f6 100644
--- a/milena/tests/fun/p2p/Makefile.am
+++ b/milena/tests/fun/p2p/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -23,7 +23,5 @@ check_PROGRAMS = \
fold \
translation
-fold_SOURCES = fold.cc
-translation_SOURCES = translation.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/fun/stat/Makefile.am b/milena/tests/fun/stat/Makefile.am
index bda940a..4372cfa 100644
--- a/milena/tests/fun/stat/Makefile.am
+++ b/milena/tests/fun/stat/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -22,6 +22,5 @@ include $(top_srcdir)/milena/tests/tests.mk
check_PROGRAMS = \
mahalanobis
-mahalanobis_SOURCES = mahalanobis.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/fun/v2i/Makefile.am b/milena/tests/fun/v2i/Makefile.am
index a3dbd4e..839b075 100644
--- a/milena/tests/fun/v2i/Makefile.am
+++ b/milena/tests/fun/v2i/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -22,6 +22,5 @@ include $(top_srcdir)/milena/tests/tests.mk
check_PROGRAMS = \
index_of_value
-index_of_value_SOURCES = index_of_value.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/fun/v2v/Makefile.am b/milena/tests/fun/v2v/Makefile.am
index 872c7a5..bc3a9e6 100644
--- a/milena/tests/fun/v2v/Makefile.am
+++ b/milena/tests/fun/v2v/Makefile.am
@@ -1,5 +1,5 @@
-# Copyright (C) 2007, 2008, 2009 EPITA Research and Development
-# Laboratory (LRDE).
+# Copyright (C) 2007, 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -25,9 +25,6 @@ check_PROGRAMS = \
projection \
wrap
-norm_SOURCES = norm.cc
-projection_SOURCES = projection.cc
-wrap_SOURCES = wrap.cc
#<<lrde
# FIXME: Not distributed (yet).
@@ -36,9 +33,6 @@ check_PROGRAMS += \
hsl_to_rgb \
rgb_to_hsl
-component_SOURCES = component.cc
-hsl_to_rgb_SOURCES = hsl_to_rgb.cc
-rgb_to_hsl_SOURCES = rgb_to_hsl.cc
#>>
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/fun/vv2v/Makefile.am b/milena/tests/fun/vv2v/Makefile.am
index 7cb53fd..1675252 100644
--- a/milena/tests/fun/vv2v/Makefile.am
+++ b/milena/tests/fun/vv2v/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -23,7 +24,5 @@ check_PROGRAMS = \
max \
min
-max_SOURCES = max.cc
-min_SOURCES = min.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/fun/x2x/Makefile.am b/milena/tests/fun/x2x/Makefile.am
index a7293e1..20798df 100644
--- a/milena/tests/fun/x2x/Makefile.am
+++ b/milena/tests/fun/x2x/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2007, 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -24,8 +25,5 @@ check_PROGRAMS = \
rotation \
translation
-composed_SOURCES = composed.cc
-rotation_SOURCES = rotation.cc
-translation_SOURCES = translation.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/geom/Makefile.am b/milena/tests/geom/Makefile.am
index 16600dd..e30585c 100644
--- a/milena/tests/geom/Makefile.am
+++ b/milena/tests/geom/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2007, 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -41,24 +42,5 @@ seed2tiling_roundness \
translate
-bbox_SOURCES = bbox.cc
-max_col_SOURCES = max_col.cc
-max_ind_SOURCES = max_ind.cc
-max_row_SOURCES = max_row.cc
-max_sli_SOURCES = max_sli.cc
-min_col_SOURCES = min_col.cc
-min_ind_SOURCES = min_ind.cc
-min_row_SOURCES = min_row.cc
-min_sli_SOURCES = min_sli.cc
-ncols_SOURCES = ncols.cc
-ninds_SOURCES = ninds.cc
-nrows_SOURCES = nrows.cc
-nsites_SOURCES = nsites.cc
-nslis_SOURCES = nslis.cc
-pmin_pmax_SOURCES = pmin_pmax.cc
-rotate_SOURCES = rotate.cc
-seed2tiling_SOURCES = seed2tiling.cc
-seed2tiling_roundness_SOURCES = seed2tiling_roundness.cc
-translate_SOURCES = translate.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/graph/Makefile.am b/milena/tests/graph/Makefile.am
index 0e1349a..b59e3d0 100644
--- a/milena/tests/graph/Makefile.am
+++ b/milena/tests/graph/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -24,6 +24,5 @@ SUBDIRS = attribute
check_PROGRAMS = \
labeling
-labeling_SOURCES = labeling.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/graph/attribute/Makefile.am b/milena/tests/graph/attribute/Makefile.am
index b5f900b..de142ba 100644
--- a/milena/tests/graph/attribute/Makefile.am
+++ b/milena/tests/graph/attribute/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -23,7 +23,5 @@ check_PROGRAMS = \
card \
representative
-card_SOURCES = card.cc
-representative_SOURCES = representative.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/histo/Makefile.am b/milena/tests/histo/Makefile.am
index 3bb2752..c415cb1 100644
--- a/milena/tests/histo/Makefile.am
+++ b/milena/tests/histo/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2007, 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE).
#
# This file is part of Olena.
#
@@ -24,8 +25,5 @@ check_PROGRAMS = \
point_from_value \
to_image1d
-compute_SOURCES = compute.cc
-point_from_value_SOURCES = point_from_value.cc
-to_image1d_SOURCES = to_image1d.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/io/dicom/Makefile.am b/milena/tests/io/dicom/Makefile.am
index da98219..31f3ace 100644
--- a/milena/tests/io/dicom/Makefile.am
+++ b/milena/tests/io/dicom/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -26,6 +26,5 @@ AM_LDFLAGS = $(GDCM_LDFLAGS)
# FIXME: Upon completion, if this test only read (not write) images,
# rename it as load.cc
-dicom_SOURCES = dicom.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/io/dump/Makefile.am b/milena/tests/io/dump/Makefile.am
index cad3d5b..bf11271 100644
--- a/milena/tests/io/dump/Makefile.am
+++ b/milena/tests/io/dump/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -22,7 +22,6 @@ include $(top_srcdir)/milena/tests/tests.mk
check_PROGRAMS = \
dump
-dump_SOURCES = dump.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/io/fits/Makefile.am b/milena/tests/io/fits/Makefile.am
index 77770ce..e4210e9 100644
--- a/milena/tests/io/fits/Makefile.am
+++ b/milena/tests/io/fits/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2007, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2007, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -24,7 +25,6 @@ AM_LDFLAGS = $(CFITSIO_LDFLAGS)
check_PROGRAMS = fits
-fits_SOURCES = fits.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/io/fld/Makefile.am b/milena/tests/io/fld/Makefile.am
index 776526d..0fa9df3 100644
--- a/milena/tests/io/fld/Makefile.am
+++ b/milena/tests/io/fld/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2007, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2007, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -24,8 +25,5 @@ check_PROGRAMS = \
fld1d \
fld3d
-fld2d_SOURCES = fld2d.cc
-fld3d_SOURCES = fld3d.cc
-fld1d_SOURCES = fld1d.cc
TESTS = $(check_PROGRAMS)
\ No newline at end of file
diff --git a/milena/tests/io/magick/Makefile.am b/milena/tests/io/magick/Makefile.am
index 0e1d9db..97628fb 100644
--- a/milena/tests/io/magick/Makefile.am
+++ b/milena/tests/io/magick/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -26,8 +26,6 @@ check_PROGRAMS = \
load \
save
-load_SOURCES = load.cc
-save_SOURCES = save.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/io/off/Makefile.am b/milena/tests/io/off/Makefile.am
index 2ed2594..071e5e1 100644
--- a/milena/tests/io/off/Makefile.am
+++ b/milena/tests/io/off/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -25,10 +26,7 @@ check_PROGRAMS = \
\
load_float
-load_bin_SOURCES = load_bin.cc
-load_save_bin_SOURCES = load_save_bin.cc
-load_float_SOURCES = load_float.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/io/pbm/Makefile.am b/milena/tests/io/pbm/Makefile.am
index 351207d..a09ce83 100644
--- a/milena/tests/io/pbm/Makefile.am
+++ b/milena/tests/io/pbm/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2007, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2007, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -23,8 +24,6 @@ check_PROGRAMS = \
pbm \
pbm_ascii
-pbm_SOURCES = pbm.cc
-pbm_ascii_SOURCES = pbm_ascii.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/io/pbms/Makefile.am b/milena/tests/io/pbms/Makefile.am
index 1a3fc5c..eeb5f18 100644
--- a/milena/tests/io/pbms/Makefile.am
+++ b/milena/tests/io/pbms/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -22,7 +22,6 @@ include $(top_srcdir)/milena/tests/tests.mk
check_PROGRAMS = \
load
-load_SOURCES = load.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/io/pgm/Makefile.am b/milena/tests/io/pgm/Makefile.am
index f6eef7c..75cab7b 100644
--- a/milena/tests/io/pgm/Makefile.am
+++ b/milena/tests/io/pgm/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2007, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2007, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -26,11 +27,6 @@ check_PROGRAMS = \
pgm_ascii \
pgm
-pgm16_SOURCES = pgm16.cc
-pgm19_SOURCES = pgm19.cc
-pgm27_SOURCES = pgm27.cc
-pgm_ascii_SOURCES = pgm_ascii.cc
-pgm_SOURCES = pgm.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/io/pgms/Makefile.am b/milena/tests/io/pgms/Makefile.am
index 8a4f02a..9957690 100644
--- a/milena/tests/io/pgms/Makefile.am
+++ b/milena/tests/io/pgms/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -22,7 +22,6 @@ include $(top_srcdir)/milena/tests/tests.mk
check_PROGRAMS = \
load
-load_SOURCES = load.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/io/ppm/Makefile.am b/milena/tests/io/ppm/Makefile.am
index 913dd04..f7e0431 100644
--- a/milena/tests/io/ppm/Makefile.am
+++ b/milena/tests/io/ppm/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2007, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2007, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -24,9 +25,6 @@ check_PROGRAMS = \
ppm23 \
ppm
-ppm16_SOURCES = ppm16.cc
-ppm23_SOURCES = ppm23.cc
-ppm_SOURCES = ppm.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/io/ppms/Makefile.am b/milena/tests/io/ppms/Makefile.am
index 173a9f7..2efbbbc 100644
--- a/milena/tests/io/ppms/Makefile.am
+++ b/milena/tests/io/ppms/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -22,7 +22,6 @@ include $(top_srcdir)/milena/tests/tests.mk
check_PROGRAMS = \
load
-load_SOURCES = load.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/io/tiff/Makefile.am b/milena/tests/io/tiff/Makefile.am
index f21e2c1..cd1c906 100644
--- a/milena/tests/io/tiff/Makefile.am
+++ b/milena/tests/io/tiff/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -24,6 +24,5 @@ AM_LDFLAGS = $(TIFF_LDFLAGS)
check_PROGRAMS = load
-load_SOURCES = load.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/labeling/Makefile.am b/milena/tests/labeling/Makefile.am
index 1509d72..7a0fb85 100644
--- a/milena/tests/labeling/Makefile.am
+++ b/milena/tests/labeling/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2007, 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -37,21 +38,5 @@ check_PROGRAMS = \
value \
wrap
-background_SOURCES = background.cc
-blobs_SOURCES = blobs.cc
-blobs_and_compute_SOURCES = blobs_and_compute.cc
-colorize_SOURCES = colorize.cc
-compute_SOURCES = compute.cc
-fill_holes_SOURCES = fill_holes.cc
-flat_zones_SOURCES = flat_zones.cc
-foreground_SOURCES = foreground.cc
-mean_values_SOURCES = mean_values.cc
-n_max_SOURCES = n_max.cc
-pack_SOURCES = pack.cc
-regional_maxima_SOURCES = regional_maxima.cc
-regional_minima_SOURCES = regional_minima.cc
-relabel_SOURCES = relabel.cc
-value_SOURCES = value.cc
-wrap_SOURCES = wrap.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/linear/Makefile.am b/milena/tests/linear/Makefile.am
index 3bc1b01..34991ab 100644
--- a/milena/tests/linear/Makefile.am
+++ b/milena/tests/linear/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2007, 2008, 2009 EPITA Research and Development
+# Copyright (C) 2007, 2008, 2009, 2010 EPITA Research and Development
# Laboratory (LRDE).
#
# This file is part of Olena.
@@ -36,12 +36,6 @@ check_PROGRAMS = \
log \
sobel_2d
-convolve_SOURCES = convolve.cc
-lap_SOURCES = lap.cc
-convolve_directional_SOURCES = convolve_directional.cc
-convolve_2x1d_SOURCES = convolve_2x1d.cc
-log_SOURCES = log.cc
-sobel_2d_SOURCES = sobel_2d.cc
#<<lrde
# FIXME: Not distributed (yet).
diff --git a/milena/tests/linear/gaussian/Makefile.am b/milena/tests/linear/gaussian/Makefile.am
index a3000c3..d84628a 100644
--- a/milena/tests/linear/gaussian/Makefile.am
+++ b/milena/tests/linear/gaussian/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -24,7 +24,6 @@ include $(top_srcdir)/milena/tests/tests.mk
check_PROGRAMS = \
filter
-filter_SOURCES = filter.cc
#>>
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/linear/local/Makefile.am b/milena/tests/linear/local/Makefile.am
index bb8608c..74cbe09 100644
--- a/milena/tests/linear/local/Makefile.am
+++ b/milena/tests/linear/local/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2007, 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -22,6 +23,5 @@ include $(top_srcdir)/milena/tests/tests.mk
check_PROGRAMS = \
convolve
-convolve_SOURCES = convolve.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/literal/Makefile.am b/milena/tests/literal/Makefile.am
index 4310a95..9bc62ce 100644
--- a/milena/tests/literal/Makefile.am
+++ b/milena/tests/literal/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2007, 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -26,10 +27,5 @@ check_PROGRAMS = \
white \
zero
-black_SOURCES = black.cc
-medium_gray_SOURCES = medium_gray.cc
-one_SOURCES = one.cc
-white_SOURCES = white.cc
-zero_SOURCES = zero.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/logical/Makefile.am b/milena/tests/logical/Makefile.am
index d095301..2b1ac1f 100644
--- a/milena/tests/logical/Makefile.am
+++ b/milena/tests/logical/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2007, 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -26,10 +27,5 @@ check_PROGRAMS = \
or \
xor
-and_SOURCES = and.cc
-and_not_SOURCES = and_not.cc
-not_SOURCES = not.cc
-or_SOURCES = or.cc
-xor_SOURCES = xor.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/make/Makefile.am b/milena/tests/make/Makefile.am
index 27d65fb..150e819 100644
--- a/milena/tests/make/Makefile.am
+++ b/milena/tests/make/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2007, 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -35,19 +36,5 @@ check_PROGRAMS = \
w_window \
w_window_directional
-dual_neighb_SOURCES = dual_neighb.cc
-dummy_p_edges_SOURCES = dummy_p_edges.cc
-dummy_p_vertices_SOURCES = dummy_p_vertices.cc
-influence_zone_adjacency_graph_SOURCES = influence_zone_adjacency_graph.cc
-h_mat_SOURCES = h_mat.cc
-image2d_SOURCES = image2d.cc
-image3d_SOURCES = image3d.cc
-mat_SOURCES = mat.cc
-p_edges_with_mass_centers_SOURCES = p_edges_with_mass_centers.cc
-p_vertices_with_mass_centers_SOURCES = p_vertices_with_mass_centers.cc
-region_adjacency_graph_SOURCES = region_adjacency_graph.cc
-rag_and_labeled_wsl_SOURCES = rag_and_labeled_wsl.cc
-w_window_SOURCES = w_window.cc
-w_window_directional_SOURCES = w_window_directional.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/metal/Makefile.am b/milena/tests/metal/Makefile.am
index e7e5f93..9ccde61 100644
--- a/milena/tests/metal/Makefile.am
+++ b/milena/tests/metal/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2007, 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -26,8 +27,5 @@ check_PROGRAMS = \
is \
unconst
-converts_to_SOURCES = converts_to.cc
-is_SOURCES = is.cc
-unconst_SOURCES = unconst.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/metal/math/Makefile.am b/milena/tests/metal/math/Makefile.am
index f6b810d..eaae04d 100644
--- a/milena/tests/metal/math/Makefile.am
+++ b/milena/tests/metal/math/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2007, 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -23,7 +24,5 @@ check_PROGRAMS = \
pow \
root
-pow_SOURCES = pow.cc
-root_SOURCES = root.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/morpho/Makefile.am b/milena/tests/morpho/Makefile.am
index 4a7c649..468c1df 100644
--- a/milena/tests/morpho/Makefile.am
+++ b/milena/tests/morpho/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2007, 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -60,45 +61,22 @@ check_PROGRAMS = \
# -------------- #
# FIXME: Have erosion and dilation perform symmetric tests.
-erosion_SOURCES = erosion.cc
-contrast_SOURCES = contrast.cc
-general_SOURCES = general.cc
-gradient_SOURCES = gradient.cc
-hit_or_miss_SOURCES = hit_or_miss.cc
-laplacian_SOURCES = laplacian.cc
-thinning_SOURCES = thinning.cc
-
-graph_image_morpho_SOURCES = graph_image_morpho.cc
-graph_image_wst_SOURCES = graph_image_wst.cc
-line_graph_image_morpho_SOURCES = line_graph_image_morpho.cc
-line_graph_image_wst_SOURCES = line_graph_image_wst.cc
-complex_image_morpho_SOURCES = complex_image_morpho.cc
-complex_image_wst_SOURCES = complex_image_wst.cc
-
-meyer_wst_SOURCES = meyer_wst.cc
-rank_filter_SOURCES = rank_filter.cc
-skeleton_constrained_SOURCES = skeleton_constrained.cc
-top_hat_SOURCES = top_hat.cc
-Rd_SOURCES = Rd.cc
+
+
# --------------- #
# Complex tests. #
# --------------- #
-artificial_line_graph_image_wst_SOURCES = artificial_line_graph_image_wst.cc
artificial_line_graph_image_wst_CXXFLAGS = $(TESTS_CXXFLAGS_SPEED)
-dilation_SOURCES = dilation.cc
dilation_CXXFLAGS = $(TESTS_CXXFLAGS_SPEED)
-lena_line_graph_image_wst1_SOURCES = lena_line_graph_image_wst1.cc
lena_line_graph_image_wst1_CXXFLAGS = $(TESTS_CXXFLAGS_SPEED)
-lena_line_graph_image_wst2_SOURCES = lena_line_graph_image_wst2.cc
lena_line_graph_image_wst2_CXXFLAGS = $(TESTS_CXXFLAGS_SPEED)
-meyer_wst_long_SOURCES = meyer_wst_long.cc
meyer_wst_long_CXXFLAGS = $(TESTS_CXXFLAGS_SPEED)
diff --git a/milena/tests/morpho/approx/Makefile.am b/milena/tests/morpho/approx/Makefile.am
index 85fc367..e75ad84 100644
--- a/milena/tests/morpho/approx/Makefile.am
+++ b/milena/tests/morpho/approx/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -23,8 +23,6 @@ check_PROGRAMS = \
dilation \
erosion
-dilation_SOURCES = dilation.cc
-erosion_SOURCES = erosion.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/morpho/attribute/Makefile.am b/milena/tests/morpho/attribute/Makefile.am
index 1fcc2ab..6673791 100644
--- a/milena/tests/morpho/attribute/Makefile.am
+++ b/milena/tests/morpho/attribute/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -25,9 +25,5 @@ check_PROGRAMS = \
volume \
height
-card_SOURCES = card.cc
-sum_SOURCES = sum.cc
-volume_SOURCES = volume.cc
-height_SOURCES = height.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/morpho/closing/Makefile.am b/milena/tests/morpho/closing/Makefile.am
index c75b590..a2fde5c 100644
--- a/milena/tests/morpho/closing/Makefile.am
+++ b/milena/tests/morpho/closing/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -32,14 +32,6 @@ check_PROGRAMS = \
structural \
sum
-area_on_vertices_SOURCES = area_on_vertices.cc
-leveling_SOURCES = leveling.cc
-algebraic_SOURCES = algebraic.cc
-height_SOURCES = height.cc
-area_SOURCES = area.cc
-volume_SOURCES = volume.cc
-structural_SOURCES = structural.cc
-sum_SOURCES = sum.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/morpho/closing/approx/Makefile.am b/milena/tests/morpho/closing/approx/Makefile.am
index c9eb6b6..cd6e8a2 100644
--- a/milena/tests/morpho/closing/approx/Makefile.am
+++ b/milena/tests/morpho/closing/approx/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -22,7 +22,6 @@ include $(top_srcdir)/milena/tests/tests.mk
check_PROGRAMS = \
structural
-structural_SOURCES = structural.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/morpho/elementary/Makefile.am b/milena/tests/morpho/elementary/Makefile.am
index 224585e..864daa2 100644
--- a/milena/tests/morpho/elementary/Makefile.am
+++ b/milena/tests/morpho/elementary/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -30,14 +31,5 @@ check_PROGRAMS = \
gradient \
erosion
-laplacian_SOURCES = laplacian.cc
-dilation_SOURCES = dilation.cc
-gradient_internal_SOURCES = gradient_internal.cc
-opening_SOURCES = opening.cc
-closing_SOURCES = closing.cc
-top_hat_SOURCES = top_hat.cc
-gradient_external_SOURCES = gradient_external.cc
-gradient_SOURCES = gradient.cc
-erosion_SOURCES = erosion.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/morpho/opening/Makefile.am b/milena/tests/morpho/opening/Makefile.am
index 2b3425c..ef3b690 100644
--- a/milena/tests/morpho/opening/Makefile.am
+++ b/milena/tests/morpho/opening/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -32,14 +32,6 @@ check_PROGRAMS = \
structural \
sum
-area_on_vertices_SOURCES = area_on_vertices.cc
-leveling_SOURCES = leveling.cc
-algebraic_SOURCES = algebraic.cc
-height_SOURCES = height.cc
-area_SOURCES = area.cc
-volume_SOURCES = volume.cc
-structural_SOURCES = structural.cc
-sum_SOURCES = sum.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/morpho/opening/approx/Makefile.am b/milena/tests/morpho/opening/approx/Makefile.am
index 8afb5a9..5d31c71 100644
--- a/milena/tests/morpho/opening/approx/Makefile.am
+++ b/milena/tests/morpho/opening/approx/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -22,6 +22,5 @@ include $(top_srcdir)/milena/tests/tests.mk
check_PROGRAMS = \
structural
-structural_SOURCES = structural.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/morpho/reconstruction/by_dilation/Makefile.am b/milena/tests/morpho/reconstruction/by_dilation/Makefile.am
index e6e8ea3..344d468 100644
--- a/milena/tests/morpho/reconstruction/by_dilation/Makefile.am
+++ b/milena/tests/morpho/reconstruction/by_dilation/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -24,7 +24,6 @@ check_PROGRAMS = \
union_find
-union_find_SOURCES = union_find.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/morpho/reconstruction/by_erosion/Makefile.am b/milena/tests/morpho/reconstruction/by_erosion/Makefile.am
index e6e8ea3..344d468 100644
--- a/milena/tests/morpho/reconstruction/by_erosion/Makefile.am
+++ b/milena/tests/morpho/reconstruction/by_erosion/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -24,7 +24,6 @@ check_PROGRAMS = \
union_find
-union_find_SOURCES = union_find.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/morpho/tree/Makefile.am b/milena/tests/morpho/tree/Makefile.am
index ed34881..60909ac 100644
--- a/milena/tests/morpho/tree/Makefile.am
+++ b/milena/tests/morpho/tree/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -26,11 +27,6 @@ check_PROGRAMS = \
data \
max
-compute_attribute_image_SOURCES = compute_attribute_image.cc
-compute_parent_SOURCES = compute_parent.cc
-dual_input_tree_SOURCES = dual_input_tree.cc
-data_SOURCES = data.cc
-max_SOURCES = max.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/morpho/tree/filter/Makefile.am b/milena/tests/morpho/tree/filter/Makefile.am
index 176971f..926ae07 100644
--- a/milena/tests/morpho/tree/filter/Makefile.am
+++ b/milena/tests/morpho/tree/filter/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -22,6 +22,5 @@ include $(top_srcdir)/milena/tests/tests.mk
check_PROGRAMS = \
filter
-filter_SOURCES = filter.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/morpho/watershed/Makefile.am b/milena/tests/morpho/watershed/Makefile.am
index 7e28a00..f3d102e 100644
--- a/milena/tests/morpho/watershed/Makefile.am
+++ b/milena/tests/morpho/watershed/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -24,9 +24,6 @@ check_PROGRAMS = \
superpose \
topological
-flooding_SOURCES = flooding.cc
-superpose_SOURCES = superpose.cc
-topological_SOURCES = topological.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/opt/Makefile.am b/milena/tests/opt/Makefile.am
index 7f2de05..acdc385 100644
--- a/milena/tests/opt/Makefile.am
+++ b/milena/tests/opt/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -22,6 +23,5 @@ include $(top_srcdir)/milena/tests/tests.mk
check_PROGRAMS = \
at
-at_SOURCES = at.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/pw/Makefile.am b/milena/tests/pw/Makefile.am
index b4ddc89..6a694d6 100644
--- a/milena/tests/pw/Makefile.am
+++ b/milena/tests/pw/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2007, 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -23,7 +24,5 @@ check_PROGRAMS = \
image \
value
-image_SOURCES = image.cc
-value_SOURCES = value.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/registration/Makefile.am b/milena/tests/registration/Makefile.am
index 79372c7..9978844 100644
--- a/milena/tests/registration/Makefile.am
+++ b/milena/tests/registration/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -22,7 +23,6 @@ include $(top_srcdir)/milena/tests/tests.mk
#<<lrde
# FIXME: Not distributed (yet) and currently disabled.
# check_PROGRAMS = registration
-# registration_SOURCES = registration.cc
#>>
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/set/Makefile.am b/milena/tests/set/Makefile.am
index 0ce806a..87620c4 100644
--- a/milena/tests/set/Makefile.am
+++ b/milena/tests/set/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2007, 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -29,13 +30,5 @@ check_PROGRAMS = \
uni \
unique
-card_SOURCES = card.cc
-compute_SOURCES = compute.cc
-compute_with_weights_SOURCES = compute_with_weights.cc
-diff_SOURCES = diff.cc
-inter_SOURCES = inter.cc
-sym_diff_SOURCES = sym_diff.cc
-uni_SOURCES = uni.cc
-unique_SOURCES = unique.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/test/Makefile.am b/milena/tests/test/Makefile.am
index 18ab431..a1215c0 100644
--- a/milena/tests/test/Makefile.am
+++ b/milena/tests/test/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -22,6 +23,5 @@ include $(top_srcdir)/milena/tests/tests.mk
check_PROGRAMS = \
positive
-positive_SOURCES = positive.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/tests.mk b/milena/tests/tests.mk
index 85ee5d5..b331615 100644
--- a/milena/tests/tests.mk
+++ b/milena/tests/tests.mk
@@ -2,7 +2,7 @@
## Shared configuration for tests.
-## Copyright (C) 2007, 2008, 2009 EPITA Research and Development
+## Copyright (C) 2007, 2008, 2009, 2010 EPITA Research and Development
## Laboratory (LRDE)
##
## This file is part of Olena.
@@ -19,6 +19,7 @@
## You should have received a copy of the GNU General Public License
## along with Olena. If not, see <http://www.gnu.org/licenses/>.
+include $(top_srcdir)/milena/common.mk
# FIXME: Revamp (see Olena 0.11's test suite).
diff --git a/milena/tests/topo/Makefile.am b/milena/tests/topo/Makefile.am
index 5b5f73d..56eaa1c 100644
--- a/milena/tests/topo/Makefile.am
+++ b/milena/tests/topo/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -24,6 +25,5 @@ SUBDIRS = skeleton
check_PROGRAMS = \
complex
-complex_SOURCES = complex.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/topo/skeleton/Makefile.am b/milena/tests/topo/skeleton/Makefile.am
index 75611e4..83d37ff 100644
--- a/milena/tests/topo/skeleton/Makefile.am
+++ b/milena/tests/topo/skeleton/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -23,7 +23,5 @@ check_PROGRAMS = \
crest \
is_simple_point
-crest_SOURCES = crest.cc
-is_simple_point_SOURCES = is_simple_point.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/trait/Makefile.am b/milena/tests/trait/Makefile.am
index 66a1cb8..e375dbe 100644
--- a/milena/tests/trait/Makefile.am
+++ b/milena/tests/trait/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2007, 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -25,7 +26,5 @@ check_PROGRAMS = \
ch_value \
super
-ch_value_SOURCES = ch_value.cc
-super_SOURCES = super.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/trait/image/Makefile.am b/milena/tests/trait/image/Makefile.am
index 978aa1f..221a5f3 100644
--- a/milena/tests/trait/image/Makefile.am
+++ b/milena/tests/trait/image/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2007, 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -22,6 +23,5 @@ include $(top_srcdir)/milena/tests/tests.mk
check_PROGRAMS = \
images
-images_SOURCES = images.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/trait/op/Makefile.am b/milena/tests/trait/op/Makefile.am
index 7f41b15..91ce892 100644
--- a/milena/tests/trait/op/Makefile.am
+++ b/milena/tests/trait/op/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2007, 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -23,7 +24,5 @@ check_PROGRAMS = \
plus \
uminus
-plus_SOURCES = plus.cc
-uminus_SOURCES = uminus.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/trait/value/Makefile.am b/milena/tests/trait/value/Makefile.am
index 00d82c3..7b0cb5f 100644
--- a/milena/tests/trait/value/Makefile.am
+++ b/milena/tests/trait/value/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2007, 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -23,7 +24,5 @@ check_PROGRAMS = \
comp \
values
-comp_SOURCES = comp.cc
-values_SOURCES = values.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/transform/Makefile.am b/milena/tests/transform/Makefile.am
index 2184188..58319d2 100644
--- a/milena/tests/transform/Makefile.am
+++ b/milena/tests/transform/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -29,13 +30,5 @@ check_PROGRAMS = \
influence_zone_geodesic \
influence_zone_geodesic_saturated
-bench_closest_point_geodesic_SOURCES = bench_closest_point_geodesic.cc
-distance_and_closest_point_geodesic_SOURCES = distance_and_closest_point_geodesic.cc
-distance_front_SOURCES = distance_front.cc
-distance_geodesic_SOURCES = distance_geodesic.cc
-hough_SOURCES = hough.cc
-influence_zone_front_SOURCES = influence_zone_front.cc
-influence_zone_geodesic_SOURCES = influence_zone_geodesic.cc
-influence_zone_geodesic_saturated_SOURCES = influence_zone_geodesic_saturated.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/upscaling/art/Makefile.am b/milena/tests/upscaling/art/Makefile.am
index e001aaa..bbac281 100644
--- a/milena/tests/upscaling/art/Makefile.am
+++ b/milena/tests/upscaling/art/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -25,8 +25,6 @@ check_PROGRAMS = \
scale3x
-scale2x_SOURCES = scale2x.cc
-scale3x_SOURCES = scale3x.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/util/Makefile.am b/milena/tests/util/Makefile.am
index 07a3f94..10b50b3 100644
--- a/milena/tests/util/Makefile.am
+++ b/milena/tests/util/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2007, 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -38,22 +39,6 @@ check_PROGRAMS = \
tree_fast \
tree_to_fast
-adjacency_matrix_SOURCES = adjacency_matrix.cc
-branch_iter_SOURCES = branch_iter.cc
-branch_iter_ind_SOURCES = branch_iter_ind.cc
-eat_SOURCES = eat.cc
-fibonacci_heap_SOURCES = fibonacci_heap.cc
-graph_SOURCES = graph.cc
-lazy_set_SOURCES = lazy_set.cc
-lemmings_SOURCES = lemmings.cc
-line_graph_SOURCES = line_graph.cc
-ord_SOURCES = ord.cc
-ord_pair_SOURCES = ord_pair.cc
-set_SOURCES = set.cc
-soft_heap_SOURCES = soft_heap.cc
-tree_SOURCES = tree.cc
-tree_fast_SOURCES = tree_fast.cc
-tree_to_fast_SOURCES = tree_to_fast.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/value/Makefile.am b/milena/tests/value/Makefile.am
index c61a738..f79575e 100644
--- a/milena/tests/value/Makefile.am
+++ b/milena/tests/value/Makefile.am
@@ -1,5 +1,5 @@
-# Copyright (C) 2007, 2008, 2009 EPITA Research and Development
-# Laboratory (LRDE).
+# Copyright (C) 2007, 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -44,28 +44,10 @@ check_PROGRAMS = \
# graylevel
# graylevel_f
-bool_SOURCES = bool.cc
-equiv_SOURCES = equiv.cc
-#float01_SOURCES = float01.cc
-#float01_bis_SOURCES = float01_bis.cc
-#float01_f_SOURCES = float01_f.cc
-#graylevel_SOURCES = graylevel.cc
-#graylevel_f_SOURCES = graylevel_f.cc
-int_s_SOURCES = int_s.cc
-int_s16_SOURCES = int_s16.cc
-int_u8_SOURCES = int_u8.cc
-interop_SOURCES = interop.cc
-label_SOURCES = label.cc
-proxy_SOURCES = proxy.cc
-rgb8_SOURCES = rgb8.cc
-scalar_SOURCES = scalar.cc
-set_SOURCES = set.cc
-sign_SOURCES = sign.cc
#<<lrde
# FIXME: Not distributed (yet).
check_PROGRAMS += stack
-stack_SOURCES = stack.cc
#>>
# FIXME: Enable when make check_full works.
@@ -74,9 +56,6 @@ stack_SOURCES = stack.cc
# graylevel_f_full \
# rgb_full
#
-# graylevel_f_full_SOURCES = graylevel_f_full.cc
-# graylevel_full_SOURCES = graylevel_full.cc
-# rgb_full_SOURCES = rgb_full.cc
TESTS = $(check_PROGRAMS)
# FIXME: Enable when make check_full works.
diff --git a/milena/tests/value/builtin/Makefile.am b/milena/tests/value/builtin/Makefile.am
index 3a40bbd..0a3bd3a 100644
--- a/milena/tests/value/builtin/Makefile.am
+++ b/milena/tests/value/builtin/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2007, 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -23,6 +24,5 @@ check_PROGRAMS = \
builtin
# FIXME: Rename this test, as `builtin' is not enough relevant.
-builtin_SOURCES = builtin.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/win/Makefile.am b/milena/tests/win/Makefile.am
index ad28850..b020d10 100644
--- a/milena/tests/win/Makefile.am
+++ b/milena/tests/win/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2007, 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -37,21 +38,5 @@ check_PROGRAMS = \
sym \
vline2d
-backdiag2d_SOURCES = backdiag2d.cc
-ball_SOURCES = ball.cc
-cube3d_SOURCES = cube3d.cc
-cuboid3d_SOURCES = cuboid3d.cc
-diag2d_SOURCES = diag2d.cc
-diff_SOURCES = diff.cc
-disk2d_SOURCES = disk2d.cc
-hline2d_SOURCES = hline2d.cc
-inter_SOURCES = inter.cc
-octagon2d_SOURCES = octagon2d.cc
-rectangle2d_SOURCES = rectangle2d.cc
-segment1d_SOURCES = segment1d.cc
-shift_SOURCES = shift.cc
-sphere3d_SOURCES = sphere3d.cc
-sym_SOURCES = sym.cc
-vline2d_SOURCES = vline2d.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/world/binary_2d/Makefile.am b/milena/tests/world/binary_2d/Makefile.am
index eb97dd5..c106160 100644
--- a/milena/tests/world/binary_2d/Makefile.am
+++ b/milena/tests/world/binary_2d/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -23,7 +23,5 @@ check_PROGRAMS = \
enlarge
# enlarge_hq2x
-enlarge_SOURCES = enlarge.cc
-#enlarge_hq2x_SOURCES = enlarge_hq2x.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/world/inter_pixel/Makefile.am b/milena/tests/world/inter_pixel/Makefile.am
index 327ba60..67408f4 100644
--- a/milena/tests/world/inter_pixel/Makefile.am
+++ b/milena/tests/world/inter_pixel/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -29,10 +29,5 @@ check_PROGRAMS = \
is_separator \
separator_to_pixels
-compute_SOURCES = compute.cc
-immerse_SOURCES = immerse.cc
-is_pixel_SOURCES = is_pixel.cc
-is_separator_SOURCES = is_separator.cc
-separator_to_pixels_SOURCES = separator_to_pixels.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tests/world/inter_pixel/dim2/Makefile.am b/milena/tests/world/inter_pixel/dim2/Makefile.am
index 8423f4b..26c0dfb 100644
--- a/milena/tests/world/inter_pixel/dim2/Makefile.am
+++ b/milena/tests/world/inter_pixel/dim2/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -22,6 +22,5 @@ include $(top_srcdir)/milena/tests/tests.mk
check_PROGRAMS = \
make_edge_image
-make_edge_image_SOURCES = make_edge_image.cc
TESTS = $(check_PROGRAMS)
diff --git a/milena/tools/Makefile.am b/milena/tools/Makefile.am
index be3c3e5..1bfcf25 100644
--- a/milena/tools/Makefile.am
+++ b/milena/tools/Makefile.am
@@ -1,4 +1,5 @@
-# Copyright (C) 2008, 2009 EPITA Research and Development Laboratory (LRDE).
+# Copyright (C) 2008, 2009, 2010 EPITA Research and Development
+# Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -23,7 +24,4 @@ bin_PROGRAMS = \
seed2tiling \
area_flooding
-area_flooding_SOURCES = area_flooding.cc
-seed2tiling_SOURCES = seed2tiling.cc
-
# FIXME: Add some tests for these tools.
diff --git a/milena/tools/tools.mk b/milena/tools/tools.mk
index 9d9a046..35eeaf5 100644
--- a/milena/tools/tools.mk
+++ b/milena/tools/tools.mk
@@ -1,4 +1,4 @@
-# Copyright (C) 2009 EPITA Research and Development Laboratory (LRDE)
+# Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
#
# This file is part of Olena.
#
@@ -14,6 +14,7 @@
# You should have received a copy of the GNU General Public License
# along with Olena. If not, see <http://www.gnu.org/licenses/>.
+include $(top_srcdir)/milena/common.mk
## FIXME: Revamp (see Olena 0.11's test suite).
--
1.5.6.5
1
0
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Olena, a generic and efficient image processing platform".
The branch dist-xz has been created
at f62ea1f61ad96620adacb43da6a8b3a05820c5d8 (commit)
- Log -----------------------------------------------------------------
f62ea1f bootstrap: Check for xz (>= 4.999.9).
f6e5d4d Distribute xz archives.
-----------------------------------------------------------------------
hooks/post-receive
--
Olena, a generic and efficient image processing platform
1
0
07 May '10
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Olena, a generic and efficient image processing platform".
The branch automake-1.11 has been updated
discards 392429a4c3d8c534e48aed676b06376a0e11656f (commit)
discards b398c7400467eba1e6b388eaa246520013aef784 (commit)
discards a40246acf27813036746eb25f0be1a52d8fa07b5 (commit)
discards a0e11516e9a62c6c8bf3eda0559be9f80d571e53 (commit)
discards adcea166b0a12407b34bfeabee93586cb0c39001 (commit)
discards 67db7f5293429f6ed95248503d8a9b64df706abd (commit)
discards 12aca471e1e52ba01f57de8f4e905be59e970029 (commit)
discards b4e8d98a3aaff52ba0d53a3b3dc83b278078f0cf (commit)
discards 8705382504aff47f8791199ae31b17dc55192159 (commit)
discards 3fd31fafdf95fbcdc76e409eec6b8c3712031d29 (commit)
via 7aacb61a0046adfcd926193d2a78de91cdbbb9d0 (commit)
via 4def5f0d7d19e7dd01c7ed42b1dc6019689c56f5 (commit)
via 5c1e70424e2d99a22cad909500f167b6189466d2 (commit)
via d134e182361389ad6c3e00a6a4a8fd50fe30c03a (commit)
via 74142adbc2697eeb721f42e6104a311b0aa23fbb (commit)
via 3240a14f9500348960cfe86b465182bac885780e (commit)
via ea5d26525d6e6db053348d79c86b3e0699d882ed (commit)
via d916229ffca1d1611531146d96757c40265f3508 (commit)
This update added new revisions after undoing existing revisions. That is
to say, the old revision is not a strict subset of the new revision. This
situation occurs when you --force push a change and generate a repository
containing something like this:
* -- * -- B -- O -- O -- O (392429a4c3d8c534e48aed676b06376a0e11656f)
\
N -- N -- N (7aacb61a0046adfcd926193d2a78de91cdbbb9d0)
When this happens we assume that you've already had alert emails for all
of the O revisions, and so we here report only the revisions in the N
branch from the common base, B.
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
7aacb61 Enable parallel tests.
4def5f0 Canonize Swilena's tests' output file names to support parallel tests.
5c1e704 Canonize Milena's tests' output file names to support parallel tests.
d134e18 Factor Makefiles' helpers.
74142ad Use AM_DEFAULT_SOURCE_EXT to simplify Scribo's Makefiles.
3240a14 tests/unit_test/unit-tests.mk: Regen.
ea5d265 Simplify build_unit_test.sh thanks to AM_DEFAULT_SOURCE_EXT.
d916229 Use AM_DEFAULT_SOURCE_EXT to simplify Milena's Makefiles.
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 10 ----------
bootstrap | 3 ---
configure.ac | 2 +-
3 files changed, 1 insertions(+), 14 deletions(-)
hooks/post-receive
--
Olena, a generic and efficient image processing platform
1
0