* configure.ac: Here.
---
ChangeLog | 6 ++++++
configure.ac | 49 +++++++++++++++++++++++++++++++++++++------------
2 files changed, 43 insertions(+), 12 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 6c7b309..499818f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2010-06-04 Roland Levillain <roland(a)lrde.epita.fr>
+
+ Set decent compiler flags when the Intel C++ compiler is used.
+
+ * configure.ac: Here.
+
2010-04-23 Roland Levillain <roland(a)lrde.epita.fr>
Add a simple test to identify the Intel C++ compiler.
diff --git a/configure.ac b/configure.ac
index ca041b3..a4b5cb5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -108,8 +108,14 @@ esac
AC_ARG_VAR([TESTS_CXXFLAGS], [C++ compiler flags for tests])
# We want no optimization for the tests (it slows down compiling
# times), and debugging information.
-if test "$GXX" = yes && test -z "$TESTS_CXXFLAGS"; then
- TESTS_CXXFLAGS="-O0 -ggdb $WARNINGS_CXXFLAGS"
+if test -z "$TESTS_CXXFLAGS"; then
+ if test "$GXX" = yes; then
+ # GNU C++ compiler setup.
+ TESTS_CXXFLAGS="-O0 -ggdb $WARNINGS_CXXFLAGS"
+ elif test "$ICPC" = yes; then
+ # Intel C++ compiler setup.
+ TESTS_CXXFLAGS="-O0 -g $WARNINGS_CXXFLAGS"
+ fi
fi
# Flags for complex tests.
@@ -117,8 +123,14 @@ AC_ARG_VAR([TESTS_CXXFLAGS_SPEED],
[C++ compiler optimization flags for (complex) tests])
# We want optimization for complex tests, and keep debugging flags
# (still useful).
-if test "$GXX" = yes && test -z "$TESTS_CXXFLAGS_SPEED"; then
- TESTS_CXXFLAGS_SPEED="-O3 -DNDEBUG -ggdb -Wall -W"
+if test -z "$TESTS_CXXFLAGS_SPEED"; then
+ if test "$GXX" = yes; then
+ # GNU C++ compiler setup.
+ TESTS_CXXFLAGS_SPEED="-O3 -DNDEBUG -ggdb $WARNINGS_CXXFLAGS"
+ elif test "$ICPC" = yes; then
+ # Intel C++ compiler setup.
+ TESTS_CXXFLAGS_SPEED="-O3 -DNDEBUG -g $WARNINGS_CXXFLAGS"
+ fi
fi
# Flags for tests with with all debugging features turned on.
@@ -129,8 +141,12 @@ AC_ARG_VAR([TESTS_CXXFLAGS_DEBUG], [C++ compiler debug flags])
# http://gcc.gnu.org/onlinedocs/libstdc++/manual/debug_mode.html
# * GNU C++ Library Compile Time Checks (a.k.a. concept checking):
# http://gcc.gnu.org/onlinedocs/libstdc++/manual/bk01pt12ch29.html
-if test "$GXX" = yes && test -z "$TESTS_CXXFLAGS_DEBUG"; then
- TESTS_CXXFLAGS_DEBUG="-O0 -ggdb $WARNINGS_CXXFLAGS -D_GLIBCXX_DEBUG -D_GLIBCXX_CONCEPT_CHECKS"
+if test -z "$TESTS_CXXFLAGS_DEBUG"; then
+ if test "$GXX" = yes; then
+ TESTS_CXXFLAGS_DEBUG="-O0 -ggdb $WARNINGS_CXXFLAGS -D_GLIBCXX_DEBUG -D_GLIBCXX_CONCEPT_CHECKS"
+ elif test "$ICPC" = yes; then
+ TESTS_CXXFLAGS_DEBUG="-O0 -g $WARNINGS_CXXFLAGS -D_GLIBCXX_DEBUG -D_GLIBCXX_CONCEPT_CHECKS"
+ fi
fi
@@ -194,8 +210,9 @@ OLN_WITH_LIB([TIFF], [tiff.h], [tiff])
OLN_WITH_LIB([GDCM], [gdcm-2.0/gdcmReader.h], [gdcmCommon], [gdcm], [GDCM],
[-lgdcmzlib])
-# Tesseract
-OLN_WITH_LIB([TESSERACT], [tesseract/baseapi.h], [tesseract_full], [tesseract], [TESSERACT])
+# Tesseract.
+OLN_WITH_LIB([TESSERACT], [tesseract/baseapi.h], [tesseract_full],
+ [tesseract], [TESSERACT])
@@ -494,8 +511,12 @@ AC_CONFIG_FILES([milena/apps/constrained-connectivity/test-constrained-connectiv
# Flags for apps.
AC_ARG_VAR([APPS_CXXFLAGS], [C++ compiler flags for applications])
# We want fast binaries for apps.
-if test "$GXX" = yes && test -z "$APPS_CXXFLAGS"; then
- APPS_CXXFLAGS="-O3 -DNDEBUG -ggdb $WARNINGS_CXXFLAGS"
+if test -z "$APPS_CXXFLAGS"; then
+ if test "$GXX" = yes; then
+ APPS_CXXFLAGS="-O3 -DNDEBUG -ggdb $WARNINGS_CXXFLAGS"
+ elif test "$ICPC" = yes; then
+ APPS_CXXFLAGS="-O3 -DNDEBUG -g $WARNINGS_CXXFLAGS"
+ fi
fi
## ------- ##
@@ -513,8 +534,12 @@ AC_CONFIG_FILES([milena/tools/Makefile])
# Flags for tools.
AC_ARG_VAR([TOOLS_CXXFLAGS], [C++ compiler flags for tools])
# We want fast binaries for tools.
-if test "$GXX" = yes && test -z "$TOOLS_CXXFLAGS"; then
- TOOLS_CXXFLAGS="-O3 -DNDEBUG -ggdb $WARNINGS_CXXFLAGS"
+if test -z "$TOOLS_CXXFLAGS"; then
+ if test "$GXX" = yes; then
+ TOOLS_CXXFLAGS="-O3 -DNDEBUG -ggdb $WARNINGS_CXXFLAGS"
+ elif test "$ICPC" = yes; then
+ TOOLS_CXXFLAGS="-O3 -DNDEBUG -g $WARNINGS_CXXFLAGS"
+ fi
fi
--
1.5.6.5
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 missing-consts has been created
at ceed614319364a103d4c7c15afd2ea2a3b6d2186 (commit)
- Log -----------------------------------------------------------------
ceed614 Add missing const qualifiers in iterators on complexes.
-----------------------------------------------------------------------
hooks/post-receive
--
Olena, a generic and efficient image processing platform
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 next has been updated
via ccc4a321e56015b6d2824f0f67236bdad14990c4 (commit)
from 5758dd72a0d8fe7849e99ad6f5dbf6f0b97c1c6d (commit)
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 -----------------------------------------------------------------
ccc4a32 Clean up some tests in tests/morpho/.
-----------------------------------------------------------------------
Summary of changes:
milena/ChangeLog | 10 +++
milena/tests/morpho/rank_filter.cc | 5 +-
milena/tests/morpho/skeleton_constrained.cc | 83 +++++++++++++--------------
3 files changed, 53 insertions(+), 45 deletions(-)
hooks/post-receive
--
Olena, a generic and efficient image processing platform
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 fix-graphs has been deleted
was d53b4271ddc93c8fa098f4ef4c2fc7432f808357
-----------------------------------------------------------------------
d53b4271ddc93c8fa098f4ef4c2fc7432f808357 Miscellaneous changes in graphs and graph-based images.
-----------------------------------------------------------------------
hooks/post-receive
--
Olena, a generic and efficient image processing platform
* Makefile.am,
* demo/Makefile.am,
* 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/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/Makefile.am,
* tests/filter/Makefile.am,
* tests/preprocessing/Makefile.am,
* tests/table/Makefile.am,
* tests/text/Makefile.am,
* tests/unit_test/Makefile.am:
Here.
---
scribo/ChangeLog | 27 +++++++++++++++++++++++++++
scribo/Makefile.am | 2 --
scribo/demo/Makefile.am | 2 --
scribo/src/Makefile.am | 3 ---
scribo/src/binarization/Makefile.am | 4 ----
scribo/src/debug/Makefile.am | 3 ---
scribo/src/filter/Makefile.am | 3 ---
scribo/src/misc/Makefile.am | 4 ----
scribo/src/multi_scale/Makefile.am | 4 ----
scribo/src/preprocessing/Makefile.am | 3 ---
scribo/src/primitive/Makefile.am | 3 ---
scribo/src/primitive/extract/Makefile.am | 4 ----
scribo/src/primitive/find/Makefile.am | 5 -----
scribo/src/primitive/group/Makefile.am | 3 ---
scribo/src/table/Makefile.am | 3 ---
scribo/src/text/Makefile.am | 3 ---
scribo/tests/Makefile.am | 2 --
scribo/tests/filter/Makefile.am | 3 ---
scribo/tests/preprocessing/Makefile.am | 3 ---
scribo/tests/table/Makefile.am | 3 ---
scribo/tests/text/Makefile.am | 3 ---
scribo/tests/unit_test/Makefile.am | 3 ---
22 files changed, 27 insertions(+), 66 deletions(-)
diff --git a/scribo/ChangeLog b/scribo/ChangeLog
index 0627bc3..3c7fe21 100644
--- a/scribo/ChangeLog
+++ b/scribo/ChangeLog
@@ -1,3 +1,30 @@
+2010-06-03 Roland Levillain <roland(a)lrde.epita.fr>
+
+ Clean up a bit Scribo's Makefiles.
+
+ * Makefile.am,
+ * demo/Makefile.am,
+ * 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/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/Makefile.am,
+ * tests/filter/Makefile.am,
+ * tests/preprocessing/Makefile.am,
+ * tests/table/Makefile.am,
+ * tests/text/Makefile.am,
+ * tests/unit_test/Makefile.am:
+ Here.
+
2010-05-12 Roland Levillain <roland(a)lrde.epita.fr>
Add missing copyright headers in Scribo.
diff --git a/scribo/Makefile.am b/scribo/Makefile.am
index 3fb05fd..0f98de6 100644
--- a/scribo/Makefile.am
+++ b/scribo/Makefile.am
@@ -14,8 +14,6 @@
# 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 create Makefile.in.
-
SUBDIRS = tests src
.PHONY: bin
diff --git a/scribo/demo/Makefile.am b/scribo/demo/Makefile.am
index bab9f0f..9fcd083 100644
--- a/scribo/demo/Makefile.am
+++ b/scribo/demo/Makefile.am
@@ -14,8 +14,6 @@
# 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 create Makefile.in.
-
include $(top_srcdir)/scribo/scribo.mk
.PHONY : demo
diff --git a/scribo/src/Makefile.am b/scribo/src/Makefile.am
index 6cc4229..5f2367f 100644
--- a/scribo/src/Makefile.am
+++ b/scribo/src/Makefile.am
@@ -13,9 +13,6 @@
#
# 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 create Makefile.in.
include $(top_srcdir)/scribo/scribo.mk
diff --git a/scribo/src/binarization/Makefile.am b/scribo/src/binarization/Makefile.am
index 531d4cf..4adf1a6 100644
--- a/scribo/src/binarization/Makefile.am
+++ b/scribo/src/binarization/Makefile.am
@@ -13,9 +13,6 @@
#
# 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 create Makefile.in.
include $(top_srcdir)/scribo/scribo.mk
@@ -29,4 +26,3 @@ 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..7ec5669 100644
--- a/scribo/src/debug/Makefile.am
+++ b/scribo/src/debug/Makefile.am
@@ -13,9 +13,6 @@
#
# 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 create Makefile.in.
include $(top_srcdir)/scribo/scribo.mk
diff --git a/scribo/src/filter/Makefile.am b/scribo/src/filter/Makefile.am
index e8a2b9c..5074b49 100644
--- a/scribo/src/filter/Makefile.am
+++ b/scribo/src/filter/Makefile.am
@@ -13,9 +13,6 @@
#
# 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 create Makefile.in.
include $(top_srcdir)/scribo/scribo.mk
diff --git a/scribo/src/misc/Makefile.am b/scribo/src/misc/Makefile.am
index dc64bb9..693b579 100644
--- a/scribo/src/misc/Makefile.am
+++ b/scribo/src/misc/Makefile.am
@@ -13,9 +13,6 @@
#
# 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 create Makefile.in.
include $(top_srcdir)/scribo/scribo.mk
@@ -31,4 +28,3 @@ 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..9964153 100644
--- a/scribo/src/multi_scale/Makefile.am
+++ b/scribo/src/multi_scale/Makefile.am
@@ -13,9 +13,6 @@
#
# 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 create Makefile.in.
include $(top_srcdir)/scribo/scribo.mk
@@ -23,4 +20,3 @@ 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..4f1195d 100644
--- a/scribo/src/preprocessing/Makefile.am
+++ b/scribo/src/preprocessing/Makefile.am
@@ -13,9 +13,6 @@
#
# 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 create Makefile.in.
include $(top_srcdir)/scribo/scribo.mk
diff --git a/scribo/src/primitive/Makefile.am b/scribo/src/primitive/Makefile.am
index 44d9434..7e46a66 100644
--- a/scribo/src/primitive/Makefile.am
+++ b/scribo/src/primitive/Makefile.am
@@ -13,9 +13,6 @@
#
# 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 create Makefile.in.
include $(top_srcdir)/scribo/scribo.mk
diff --git a/scribo/src/primitive/extract/Makefile.am b/scribo/src/primitive/extract/Makefile.am
index 7e1ea78..6f20ea3 100644
--- a/scribo/src/primitive/extract/Makefile.am
+++ b/scribo/src/primitive/extract/Makefile.am
@@ -13,9 +13,6 @@
#
# 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 create Makefile.in.
include $(top_srcdir)/scribo/scribo.mk
@@ -34,4 +31,3 @@ 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..3b5dbd2 100644
--- a/scribo/src/primitive/find/Makefile.am
+++ b/scribo/src/primitive/find/Makefile.am
@@ -13,9 +13,6 @@
#
# 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 create Makefile.in.
include $(top_srcdir)/scribo/scribo.mk
@@ -32,5 +29,3 @@ 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..92a81fc 100644
--- a/scribo/src/primitive/group/Makefile.am
+++ b/scribo/src/primitive/group/Makefile.am
@@ -13,9 +13,6 @@
#
# 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 create Makefile.in.
include $(top_srcdir)/scribo/scribo.mk
diff --git a/scribo/src/table/Makefile.am b/scribo/src/table/Makefile.am
index 334d5f9..7fc7008 100644
--- a/scribo/src/table/Makefile.am
+++ b/scribo/src/table/Makefile.am
@@ -13,9 +13,6 @@
#
# 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 create Makefile.in.
include $(top_srcdir)/scribo/scribo.mk
diff --git a/scribo/src/text/Makefile.am b/scribo/src/text/Makefile.am
index b84e0dd..39c7811 100644
--- a/scribo/src/text/Makefile.am
+++ b/scribo/src/text/Makefile.am
@@ -13,9 +13,6 @@
#
# 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 create Makefile.in.
include $(top_srcdir)/scribo/scribo.mk
diff --git a/scribo/tests/Makefile.am b/scribo/tests/Makefile.am
index e36d250..163ecae 100644
--- a/scribo/tests/Makefile.am
+++ b/scribo/tests/Makefile.am
@@ -16,8 +16,6 @@
include $(srcdir)/tests.mk
-## Process this file through Automake to create Makefile.in.
-
SUBDIRS = \
filter \
preprocessing \
diff --git a/scribo/tests/filter/Makefile.am b/scribo/tests/filter/Makefile.am
index fd3299e..e466523 100644
--- a/scribo/tests/filter/Makefile.am
+++ b/scribo/tests/filter/Makefile.am
@@ -13,9 +13,6 @@
#
# 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 create Makefile.in.
include $(top_srcdir)/scribo/tests/tests.mk
diff --git a/scribo/tests/preprocessing/Makefile.am b/scribo/tests/preprocessing/Makefile.am
index 5182bc0..dc139fa 100644
--- a/scribo/tests/preprocessing/Makefile.am
+++ b/scribo/tests/preprocessing/Makefile.am
@@ -13,9 +13,6 @@
#
# 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 create Makefile.in.
include $(top_srcdir)/scribo/tests/tests.mk
diff --git a/scribo/tests/table/Makefile.am b/scribo/tests/table/Makefile.am
index 0c15a63..3427e6b 100644
--- a/scribo/tests/table/Makefile.am
+++ b/scribo/tests/table/Makefile.am
@@ -13,9 +13,6 @@
#
# 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 create Makefile.in.
include $(top_srcdir)/scribo/tests/tests.mk
diff --git a/scribo/tests/text/Makefile.am b/scribo/tests/text/Makefile.am
index f6cb0e5..0d48025 100644
--- a/scribo/tests/text/Makefile.am
+++ b/scribo/tests/text/Makefile.am
@@ -13,9 +13,6 @@
#
# 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 create Makefile.in.
include $(top_srcdir)/scribo/tests/tests.mk
diff --git a/scribo/tests/unit_test/Makefile.am b/scribo/tests/unit_test/Makefile.am
index 0d3a591..8b3e47f 100644
--- a/scribo/tests/unit_test/Makefile.am
+++ b/scribo/tests/unit_test/Makefile.am
@@ -13,9 +13,6 @@
#
# 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 create Makefile.in.
include $(top_srcdir)/scribo/tests/tests.mk
--
1.5.6.5
* Makefile.am, python/Makefile.am: Here.
---
swilena/ChangeLog | 6 ++++++
swilena/Makefile.am | 3 ---
swilena/python/Makefile.am | 3 ---
3 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/swilena/ChangeLog b/swilena/ChangeLog
index efa4e9b..6a4269c 100644
--- a/swilena/ChangeLog
+++ b/swilena/ChangeLog
@@ -1,3 +1,9 @@
+2010-06-03 Roland Levillain <roland(a)lrde.epita.fr>
+
+ Clean up a bit Swilena's Makefiles.
+
+ * Makefile.am, python/Makefile.am: Here.
+
2009-09-12 Roland Levillain <roland(a)lrde.epita.fr>
* neighb2d.i: Aesthetic changes.
diff --git a/swilena/Makefile.am b/swilena/Makefile.am
index c6fd023..109fb2e 100644
--- a/swilena/Makefile.am
+++ b/swilena/Makefile.am
@@ -14,9 +14,6 @@
# 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.
-
SUBDIRS = python
# Meta-wrappers (templates), not generating a module, but factoring
diff --git a/swilena/python/Makefile.am b/swilena/python/Makefile.am
index aec8a05..dee4255 100644
--- a/swilena/python/Makefile.am
+++ b/swilena/python/Makefile.am
@@ -13,9 +13,6 @@
#
# 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.
## ------------------ ##
## Generic material. ##
--
1.5.6.5