Save copies of old simple Makefiles
This commit is contained in:
parent
dbd0a46d75
commit
32cf83cfee
9 changed files with 278 additions and 0 deletions
29
eo/tutorial/ParadisEO/Lesson1/Makefile.simple
Normal file
29
eo/tutorial/ParadisEO/Lesson1/Makefile.simple
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
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
|
||||
|
||||
23
eo/tutorial/ParadisEO/Lesson2/Makefile.simple
Normal file
23
eo/tutorial/ParadisEO/Lesson2/Makefile.simple
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
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
|
||||
|
||||
16
eo/tutorial/ParadisEO/Lesson3/Makefile.simple
Normal file
16
eo/tutorial/ParadisEO/Lesson3/Makefile.simple
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
.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
|
||||
|
||||
Reference in a new issue