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:
parent
c34db3eb29
commit
f3db65795b
7 changed files with 525 additions and 45 deletions
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue