diff --git a/trunk/paradiseo-moeo/ChangeLog b/trunk/paradiseo-moeo/ChangeLog deleted file mode 100755 index e69de29bb..000000000 diff --git a/trunk/paradiseo-moeo/Makefile.am b/trunk/paradiseo-moeo/Makefile.am deleted file mode 100755 index 1d58ec812..000000000 --- a/trunk/paradiseo-moeo/Makefile.am +++ /dev/null @@ -1,17 +0,0 @@ -SUBDIRS = doc src tutorial - -clean_all: clean_aux clean_doc - -@make clean - -@(rm -rf aclocal.m4 autom4te.cache configure config.* CO* dep* INST* install-sh miss* mkins* Makefile Makefile.in;\ - cd doc; rm -rf Makefile Makefile.in *.doxytag; cd ../src ; rm -rf Makefile Makefile.in; cd core ; rm -rf Makefile Makefile.in;\ - cd ../../tutorial; rm -rf Makefile Makefile.in; cd Lesson1; rm -rf .deps/ Makefile Makefile.in *.status;\ - cd flowshop; rm -rf .deps/ Makefile Makefile.in; cd ../../Lesson2; rm -rf .deps/ Makefile Makefile.in) - -clean_aux: - -@find . \( -name "*~" -o -name "*.old" -o -name "#*" -o -name "*.bak" \) -print -exec rm -rf \{\} \; - -doc: - -@(cd doc; make doc) - -clean_doc: - -@(cd doc; make clean-local) diff --git a/trunk/paradiseo-moeo/configure.in b/trunk/paradiseo-moeo/configure.in deleted file mode 100755 index 70f8905a6..000000000 --- a/trunk/paradiseo-moeo/configure.in +++ /dev/null @@ -1,48 +0,0 @@ -AC_INIT(configure.in) -AM_INIT_AUTOMAKE(moeo, 0.1) - -dnl Autoconf 2.6 or higher compatibility -AC_DEFUN([AC_DATAROOTDIR_CHECKED]) - -AC_ISC_POSIX -AC_PROG_CXX -AM_PROG_CC_STDC -AC_HEADER_STDC -AC_PROG_RANLIB - -AC_PROG_INSTALL -AC_PROG_LN_S -AC_PROG_MAKE_SET - -AC_C_CONST -AC_C_INLINE -AC_TYPE_SIZE_T - -AC_SUBST(EO_DIR) - -dnl EO -AC_ARG_WITH(EOdir, - --with-EOdir : Giving the path of the EO tree., - EO_DIR="$withval" - if test ! -d $EO_DIR - then - echo "" - echo "# --with-EOdir Invalid directory $withval" - exit 1 - fi, - echo "" - echo "# You forgot to give the path of the EO tree !" - echo "# Please write something like ... './configure --with-EOdir=\$HOME/eo'" - exit 1 - ) - -AC_OUTPUT([ -Makefile -src/Makefile -src/core/Makefile -doc/Makefile -tutorial/Makefile -tutorial/Lesson1/Makefile -tutorial/Lesson1/flowshop/Makefile -tutorial/Lesson2/Makefile -])