Adding code to Lesson4
This commit is contained in:
parent
7294d6acd5
commit
1eee26598b
6 changed files with 351 additions and 0 deletions
19
eo/tutorial/Lesson4/Makefile
Normal file
19
eo/tutorial/Lesson4/Makefile
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
.cpp: ; c++ -DPACKAGE=\"eo\" -DVERSION=\"0.9.1\" -I. -I../../src -Wall -g -o $@ $*.cpp ../../src/utils/libeoutils.a ../../src/libeo.a
|
||||
|
||||
.cpp.o: ; c++ -DPACKAGE=\"eo\" -DVERSION=\"0.9.1\" -I. -I../../src -Wall -g -c $*.cpp
|
||||
|
||||
|
||||
ALL = BitEA RealEA
|
||||
|
||||
lesson3 : $(ALL)
|
||||
|
||||
all : $(ALL)
|
||||
|
||||
BitEA : BitEA.o ; c++ -DPACKAGE=\"eo\" -DVERSION=\"0.9.2\" -Wall -g -o $@ $< ../../src/ga/libga.a ../../src/utils/libeoutils.a ../../src/libeo.a
|
||||
|
||||
RealEA : RealEA.o ; c++ -DPACKAGE=\"eo\" -DVERSION=\"0.9.2\" -Wall -g -o $@ $< ../../src/es/libes.a ../../src/utils/libeoutils.a ../../src/libeo.a
|
||||
|
||||
ESEA : ESEA.o ; c++ -DPACKAGE=\"eo\" -DVERSION=\"0.9.2\" -Wall -g -o $@ $< ../../src/es/libes.a ../../src/utils/libeoutils.a ../../src/libeo.a
|
||||
|
||||
clean :
|
||||
@/bin/rm $(ALL) *.o *.sav *.xg *.status *~
|
||||
Reference in a new issue