From f599c8eb779ea29113caf2617968135d37c4a1a3 Mon Sep 17 00:00:00 2001 From: kuepper Date: Mon, 20 Sep 2004 09:46:48 +0000 Subject: [PATCH] remove Makefiles from cvs --- eo/tutorial/Lesson1/Makefile | 25 ------------ eo/tutorial/Lesson2/Makefile | 34 ---------------- eo/tutorial/Lesson3/Makefile | 33 --------------- eo/tutorial/Lesson4/Makefile | 33 --------------- eo/tutorial/Lesson5/Makefile | 56 -------------------------- eo/tutorial/ParadisEO/Lesson1/Makefile | 29 ------------- eo/tutorial/ParadisEO/Lesson2/Makefile | 23 ----------- eo/tutorial/ParadisEO/Lesson3/Makefile | 16 -------- 8 files changed, 249 deletions(-) delete mode 100644 eo/tutorial/Lesson1/Makefile delete mode 100644 eo/tutorial/Lesson2/Makefile delete mode 100644 eo/tutorial/Lesson3/Makefile delete mode 100644 eo/tutorial/Lesson4/Makefile delete mode 100644 eo/tutorial/Lesson5/Makefile delete mode 100644 eo/tutorial/ParadisEO/Lesson1/Makefile delete mode 100644 eo/tutorial/ParadisEO/Lesson2/Makefile delete mode 100644 eo/tutorial/ParadisEO/Lesson3/Makefile diff --git a/eo/tutorial/Lesson1/Makefile b/eo/tutorial/Lesson1/Makefile deleted file mode 100644 index 093ca852..00000000 --- a/eo/tutorial/Lesson1/Makefile +++ /dev/null @@ -1,25 +0,0 @@ -# if you use this Makefile as a starting point for another application -# you might need to modify the following -DIR_EO = ../../src - -.SUFFIXES: .cpp - -# Warning: $(CXX) in Linux (RedHat and Mandrake at least) is g++ -# However, if you are using this Makefile within xemacs, -# and have problems with the interpretation of the output (and its colors) -# then you should use c++ instead (make CXX=c++ will do) - -.cpp: ; $(CXX) -DPACKAGE=\"eo\" -DVERSION=\"0.9.3\" -I. -I$(DIR_EO) -Wall -g -pg -o $@ $*.cpp $(DIR_EO)/utils/libeoutils.a $(DIR_EO)/libeo.a - -.cpp.o: ; $(CXX) -DPACKAGE=\"eo\" -DVERSION=\"0.9.3\" -I. -I$(DIR_EO) -Wall -g -c -pg $*.cpp - -firstGA = FirstRealGA FirstBitGA - -ALL = $(firstGA) exercise1.3 - -lesson1 : $(firstGA) - -all : $(ALL) - -clean : - @/bin/rm $(ALL) *.o *~ diff --git a/eo/tutorial/Lesson2/Makefile b/eo/tutorial/Lesson2/Makefile deleted file mode 100644 index 1aec1710..00000000 --- a/eo/tutorial/Lesson2/Makefile +++ /dev/null @@ -1,34 +0,0 @@ -### This Makefile is part of the tutorial of the EO library -# Unlike other Makefiles in EO, it is not using the automake/autoconf -# so that it stays easy to understant (you are in the tutorial, remember!) -# MS, Oct. 2002 - -# if you use this Makefile as a starting point for another application -# you might need to modify the following -DIR_EO = ../../src - -.SUFFIXES: .cpp - -# Warning: $(CXX) in Linux (RedHat and Mandrake at least) is g++ -# However, if you are using this Makefile within xemacs, -# and have problems with the interpretation of the output (and its colors) -# then you should use c++ instead (make CXX=c++ will do) - -.cpp: ; $(CXX) -DPACKAGE=\"eo\" -DVERSION=\"0.9.3\" -I. -I$(DIR_EO) -Wall -g -pg -o $@ $*.cpp $(DIR_EO)/utils/libeoutils.a $(DIR_EO)/libeo.a - -.cpp.o: ; $(CXX) -DPACKAGE=\"eo\" -DVERSION=\"0.9.3\" -I. -I$(DIR_EO) -Wall -g -c -pg $*.cpp - -firstEA = FirstRealEA FirstBitEA - -ALL = $(firstEA) exercise2.3 - -lesson2 : $(firstEA) - -all : $(ALL) - -clean : - @/bin/rm $(ALL) *.o *~ - -FirstRealEA : real_value.h - -FirstBitEA : binary_value.h diff --git a/eo/tutorial/Lesson3/Makefile b/eo/tutorial/Lesson3/Makefile deleted file mode 100644 index 186791f2..00000000 --- a/eo/tutorial/Lesson3/Makefile +++ /dev/null @@ -1,33 +0,0 @@ -### This Makefile is part of the tutorial of the EO library -# Unlike other Makefiles in EO, it is not using the automake/autoconf -# so that it stays easy to understant (you are in the tutorial, remember!) -# MS, Oct. 2002 - -# if you use this Makefile as a starting point for another application -# you might need to modify the following -DIR_EO = ../../src - -.SUFFIXES: .cpp - -# Warning: $(CXX) in Linux (RedHat and Mandrake at least) is g++ -# However, if you are using this Makefile within xemacs, -# and have problems with the interpretation of the output (and its colors) -# then you should use c++ instead (make CXX=c++ will do) - -.cpp: ; $(CXX) -DPACKAGE=\"eo\" -DVERSION=\"0.9.3\" -I. -I$(DIR_EO) -Wall -g -pg -o $@ $*.cpp $(DIR_EO)/utils/libeoutils.a $(DIR_EO)/libeo.a - -.cpp.o: ; $(CXX) -DPACKAGE=\"eo\" -DVERSION=\"0.9.3\" -I. -I$(DIR_EO) -Wall -g -c -pg $*.cpp - -secondEA = SecondBitEA SecondRealEA - -ALL = $(secondEA) exercise3.1 - -lesson3 : $(secondEA) - -all : $(ALL) - -SecondBitEA : binary_value.h -SecondRealEA : real_value.h - -clean : - @/bin/rm $(ALL) *.o *.sav *.xg *.status *~ diff --git a/eo/tutorial/Lesson4/Makefile b/eo/tutorial/Lesson4/Makefile deleted file mode 100644 index 75bd41dd..00000000 --- a/eo/tutorial/Lesson4/Makefile +++ /dev/null @@ -1,33 +0,0 @@ -### This Makefile is part of the tutorial of the EO library -# Unlike other Makefiles in EO, it is not using the automake/autoconf -# so that it stays easy to understant (you are in the tutorial, remember!) -# MS, Oct. 2002 - -# if you use this Makefile as a starting point for another application -# you might need to modify the following -DIR_EO = ../../src - -.SUFFIXES: .cpp - -# Warning: $(CXX) in Linux (RedHat and Mandrake at least) is g++ -# However, if you are using this Makefile within xemacs, -# and have problems with the interpretation of the output (and its colors) -# then you should use c++ instead (make CXX=c++ will do) - -.cpp: ; $(CXX) -DPACKAGE=\"eo\" -DVERSION=\"0.9.3\" -I. -I$(DIR_EO) -Wall -g -o $@ $*.cpp $(DIR_EO)/utils/libeoutils.a $(DIR_EO)/libeo.a - -.cpp.o: ; $(CXX) -DPACKAGE=\"eo\" -DVERSION=\"0.9.3\" -I. -I$(DIR_EO) -Wall -g -c $*.cpp - -ALL = BitEA RealEA ESEA - -all : $(ALL) - -BitEA : BitEA.o ; - $(CXX) -DPACKAGE=\"eo\" -DVERSION=\"0.9.2\" -Wall -g -o $@ $< $(DIR_EO)/ga/libga.a $(DIR_EO)/utils/libeoutils.a $(DIR_EO)/libeo.a - -RealEA : RealEA.o ; $(CXX) -DPACKAGE=\"eo\" -DVERSION=\"0.9.2\" -Wall -g -o $@ $< $(DIR_EO)/es/libes.a $(DIR_EO)/utils/libeoutils.a $(DIR_EO)/libeo.a - -ESEA : ESEA.o ; $(CXX) -DPACKAGE=\"eo\" -DVERSION=\"0.9.2\" -Wall -g -o $@ $< $(DIR_EO)/es/libes.a $(DIR_EO)/utils/libeoutils.a $(DIR_EO)/libeo.a - -clean : - @/bin/rm $(ALL) *.o *.sav *.xg *.status *~ diff --git a/eo/tutorial/Lesson5/Makefile b/eo/tutorial/Lesson5/Makefile deleted file mode 100644 index bb865c10..00000000 --- a/eo/tutorial/Lesson5/Makefile +++ /dev/null @@ -1,56 +0,0 @@ -### This Makefile is part of the tutorial of the EO library -# Unlike other Makefiles in EO, it is not using the automake/autoconf -# so that it stays easy to understant (you are in the tutorial, remember!) -# MS, Oct. 2002 - -# if you use this Makefile as a starting point for another application -# you might need to modify the following -DIR_EO = ../../src - -.SUFFIXES: .cpp - -# Warning: $(CXX) in Linux (RedHat and Mandrake at least) is g++ -# However, if you are using this Makefile within xemacs, -# and have problems with the interpretation of the output (and its colors) -# then you should use c++ instead (make CXX=c++ will do) - -.cpp: ; $(CXX) -DPACKAGE=\"eo\" -DVERSION=\"0.9.3\" -I. -I$(DIR_EO) -Wall -g -o $@ $*.cpp $(DIR_EO)/utils/libeoutils.a $(DIR_EO)/libeo.a - -.cpp.o: ; $(CXX) -DPACKAGE=\"eo\" -DVERSION=\"0.9.3\" -I. -I$(DIR_EO) -Wall -g -c $*.cpp - -# local sources -COMMON_SOURCES = eoOneMax.h \ - eoOneMaxEvalFunc.h \ - eoOneMaxInit.h \ - eoOneMaxMutation.h \ - eoOneMaxQuadCrossover.h \ - make_genotype_OneMax.h \ - make_op_OneMax.h - -NO_LIB_SOURCES = OneMaxEA.cpp - -LIB_SOURCES = OneMaxLibEA.cpp make_OneMax.cpp - - -SOURCES = $(COMMON_SOURCES) OneMaxEA.cpp OneMaxLibEA.cpp make_OneMax.cpp - -LIB_EO = $(DIR_EO)/utils/libeoutils.a $(DIR_EO)/libeo.a - -ALL = OneMaxEA OneMaxLibEA - -OneMaxEA : OneMaxEA.o - $(CXX) -g -o $@ OneMaxEA.o $(DIR_EO)/utils/libeoutils.a $(DIR_EO)/libeo.a -lm - -OneMaxLibEA : OneMaxLibEA.o make_OneMax.o - $(CXX) -g -o $@ OneMaxLibEA.o make_OneMax.o $(DIR_EO)/utils/libeoutils.a $(DIR_EO)/libeo.a -lm - -tar : ; tar czvf OneMax.tgz *.h *.cpp Makefile - -all : $(ALL) - -clean : ; /bin/rm *.o $(ALL) - -########## local dependencies -OneMaxEA.o : $(COMMON_SOURCES) OneMaxEA.cpp -OneMaxLibEA.o : $(COMMON_SOURCES) OneMaxLibEA.cpp -make_OneMax.o : make_OneMax.cpp eoOneMax.h diff --git a/eo/tutorial/ParadisEO/Lesson1/Makefile b/eo/tutorial/ParadisEO/Lesson1/Makefile deleted file mode 100644 index 7bd46d2a..00000000 --- a/eo/tutorial/ParadisEO/Lesson1/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -MPICC = mpiCC - -ALL = IslandBitEA IslandBitEA2 IslandBitEA1 - -lesson2 : IslandBitEA IslandBitEA2 IslandBitEA1 - -all : $(ALL) - -clean : - @/bin/rm $(ALL) *.o *~ - -IslandBitEA : IslandBitEA.o - $(MPICC) -DPACKAGE=\"eo\" -o IslandBitEA IslandBitEA.o ../../../src/utils/libeoutils.a ../../../src/libeo.a - -IslandBitEA.o : IslandBitEA.cpp binary_value.h - $(MPICC) -DPACKAGE=\"eo\" -I. -I../../../src -c IslandBitEA.cpp - -IslandBitEA1 : IslandBitEA1.o - $(MPICC) -DPACKAGE=\"eo\" -o IslandBitEA1 IslandBitEA1.o ../../../src/utils/libeoutils.a ../../../src/libeo.a - -IslandBitEA1.o : IslandBitEA1.cpp binary_value.h - $(MPICC) -DPACKAGE=\"eo\" -I. -I../../../src -c IslandBitEA1.cpp - -IslandBitEA2 : IslandBitEA2.o - $(MPICC) -DPACKAGE=\"eo\" -o IslandBitEA2 IslandBitEA2.o ../../../src/utils/libeoutils.a ../../../src/libeo.a - -IslandBitEA2.o : IslandBitEA2.cpp binary_value.h - $(MPICC) -DPACKAGE=\"eo\" -I. -I../../../src -c IslandBitEA2.cpp - diff --git a/eo/tutorial/ParadisEO/Lesson2/Makefile b/eo/tutorial/ParadisEO/Lesson2/Makefile deleted file mode 100644 index 87ea5380..00000000 --- a/eo/tutorial/ParadisEO/Lesson2/Makefile +++ /dev/null @@ -1,23 +0,0 @@ -MPICC = mpiCC - -ALL = MasterDistEvalBitEA SlaveDistEvalBitEA - -lesson2 : MasterDistEvalBitEA SlaveDistEvalBitEA - -all : $(ALL) - -clean : - @/bin/rm $(ALL) *.o *~ - -MasterDistEvalBitEA : MasterDistEvalBitEA.o - $(MPICC) -DPACKAGE=\"eo\" -o MasterDistEvalBitEA MasterDistEvalBitEA.o ../../../src/utils/libeoutils.a ../../../src/libeo.a - -MasterDistEvalBitEA.o : MasterDistEvalBitEA.cpp binary_value.h - $(MPICC) -DPACKAGE=\"eo\" -I. -I../../../src -c MasterDistEvalBitEA.cpp - -SlaveDistEvalBitEA : SlaveDistEvalBitEA.o - $(MPICC) -DPACKAGE=\"eo\" -o SlaveDistEvalBitEA SlaveDistEvalBitEA.o ../../../src/utils/libeoutils.a ../../../src/libeo.a - -SlaveDistEvalBitEA.o : SlaveDistEvalBitEA.cpp binary_value.h - $(MPICC) -DPACKAGE=\"eo\" -I. -I../../../src -c SlaveDistEvalBitEA.cpp - diff --git a/eo/tutorial/ParadisEO/Lesson3/Makefile b/eo/tutorial/ParadisEO/Lesson3/Makefile deleted file mode 100644 index 3b255b38..00000000 --- a/eo/tutorial/ParadisEO/Lesson3/Makefile +++ /dev/null @@ -1,16 +0,0 @@ -.SUFFIXES: .cpp -.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 = CellularBitEA - -lesson3 : $(firstEA) - -all : $(ALL) - -clean : - @/bin/rm $(ALL) *.o *~ - -CellularBitEA : binary_value.h -