
Le 3 juin 2010 à 16:15, Guillaume Lazzara a écrit : [...] I noticed this when I was working on the autoconfication of Olena's subprojects; in both this file:
diff --git a/scribo/tests/toolchain/Makefile.am b/scribo/src/contest/Makefile.am similarity index 98% copy from scribo/tests/toolchain/Makefile.am copy to scribo/src/contest/Makefile.am index 826fb86..81f314b 100644 --- a/scribo/tests/toolchain/Makefile.am +++ b/scribo/src/contest/Makefile.am @@ -20,4 +20,4 @@ include $(top_srcdir)/scribo/tests/tests.mk
SUBDIRS = \ - nepomuk \ No newline at end of file + hdibco-2010 \ No newline at end of file
and this one:
diff --git a/scribo/tests/toolchain/Makefile.am b/scribo/src/contest/hdibco-2010/Makefile.am similarity index 87% copy from scribo/tests/toolchain/Makefile.am copy to scribo/src/contest/hdibco-2010/Makefile.am index 826fb86..44add64 100644 --- a/scribo/tests/toolchain/Makefile.am +++ b/scribo/src/contest/hdibco-2010/Makefile.am @@ -19,5 +19,9 @@
include $(top_srcdir)/scribo/tests/tests.mk
-SUBDIRS = \ - nepomuk \ No newline at end of file +check_PROGRAMS = sauvola_ms_hdibco + +sauvola_ms_hdibco_SOURCES = sauvola_ms_hdibco.cc + + +TESTS = $(check_PROGRAMS)
shouldn't you be including $(top_srcdir)/scribo/scribo.mk instead of $(top_srcdir)/scribo/tests/tests.mk? IMHO, this would be more consistent with the organization of the other directories under scribo/src/ (just my two cents). ;)