This repository has been archived on 2026-03-28. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
eodev/eo/tutorial/ParadisEO/Lesson2/Makefile
evomarc a1fffff045 Changing the include file that contain all include from
eoparadiseo to eoparadiseo.h
because teh CVS tool in Microsoft Windaube doesn't make the difference
with the directory ParadisEO
2002-04-12 14:39:58 +00:00

23 lines
770 B
Makefile

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