diff --git a/branches/paradiseo-moeo-1.0/Makefile.am b/branches/paradiseo-moeo-1.0/Makefile.am index 953971025..0eeedf103 100644 --- a/branches/paradiseo-moeo-1.0/Makefile.am +++ b/branches/paradiseo-moeo-1.0/Makefile.am @@ -3,8 +3,9 @@ SUBDIRS = docs src tutorials 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 docs; rm -rf Makefile Makefile.in *.doxytag; cd ../src ; rm -rf Makefile Makefile.in; cd ../tutorials; rm -rf Makefile Makefile.in;\ - cd lesson1; rm -rf .deps/ Makefile Makefile.in; cd ../lesson2; rm -rf .deps/ Makefile Makefile.in) + cd docs; rm -rf Makefile Makefile.in *.doxytag; cd ../src ; rm -rf Makefile Makefile.in; cd core ; rm -rf Makefile Makefile.in;\ + cd ../../tutorials; 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 \{\} \; diff --git a/branches/paradiseo-moeo-1.0/NEWS b/branches/paradiseo-moeo-1.0/NEWS index 31fe551dc..52e218e1c 100644 --- a/branches/paradiseo-moeo-1.0/NEWS +++ b/branches/paradiseo-moeo-1.0/NEWS @@ -1,7 +1 @@ -* release 0.1 - -# Local Variables: -# coding: iso-8859-1 -# mode: text -# fill-column: 80 -# End: +* release 1.0 diff --git a/branches/paradiseo-moeo-1.0/README b/branches/paradiseo-moeo-1.0/README index 74a966fdf..c7633575f 100644 --- a/branches/paradiseo-moeo-1.0/README +++ b/branches/paradiseo-moeo-1.0/README @@ -52,7 +52,9 @@ structure: | +-- lesson1 A bi-objective flow-shop problem example with main algorithms. | | - | +-benchmarks Instance files for testing. + | +- flowshop Flow-shop source files + | | + | +- benchmarks Instance files for testing. | |-- lesson2 Implement NSGA-II for the SCH1 problem. diff --git a/branches/paradiseo-moeo-1.0/configure.in b/branches/paradiseo-moeo-1.0/configure.in index 253a290ba..e67eff660 100644 --- a/branches/paradiseo-moeo-1.0/configure.in +++ b/branches/paradiseo-moeo-1.0/configure.in @@ -36,8 +36,10 @@ AC_ARG_WITH(EOdir, AC_OUTPUT([ Makefile src/Makefile +src/core/Makefile docs/Makefile tutorials/Makefile tutorials/lesson1/Makefile +tutorials/lesson1/flowshop/Makefile tutorials/lesson2/Makefile ])