Big modifications - now the init and most important the operators

are handled in separate files make_genotype_xxx and make_op_xxx
as it was done in the examples of Lesson4
This commit is contained in:
evomarc 2001-10-04 20:12:19 +00:00
commit f3db65795b
7 changed files with 525 additions and 45 deletions

View file

@ -2,7 +2,7 @@
.cpp: ; c++ -DPACKAGE=\"eo\" -DVERSION=\"0.9.1\" -I. -I../../src -Wall -g -o $@ $*.cpp ../../src/libeo.a ../../src/utils/libeoutils.a
.cpp.o: ; c++ -DPACKAGE=\"eo\" -DVERSION=\"0.9.1\" -DF2C -I. -I../../src -I../Points -I./Sol -I./util -Wall -g -c $*.cpp
.cpp.o: ; c++ -DPACKAGE=\"eo\" -DVERSION=\"0.9.1\" -DF2C -I. -I../../src -I./util -Wall -g -c $*.cpp
# START eventually modify the name of EO dir
@ -11,12 +11,12 @@ DIR_EO = ../../src
LIB_EO = $(DIR_EO)/utils/libeoutils.a $(DIR_EO)/libeo.a
ALL = eoMyStructEA
ALL = MyStructEA
eoMyStructEA : eoMyStructEA.o
c++ -g -o $@ eoMyStructEA.o ../../src/utils/libeoutils.a ../../src/libeo.a -lm
MyStructEA : MyStructEA.o
c++ -g -o $@ MyStructEA.o ../../src/utils/libeoutils.a ../../src/libeo.a -lm
tar : ; tar czvf climat.tgz *.h *.cpp Makefile
tar : ; tar czvf MyStruct.tgz *.h *.cpp Makefile
all : $(ALL)