| 1234567891011121314151617181920212223 | FLAGS = -std=c++0x -O2 -g -Wall -fmessage-length=0 -Wreorder -Wwrite-strings -Wsign-compareLIBS = -lpthreadOBJS = GSATHybride.o GSAT/GSAT.o GSAT/ArrayFiller.o GSAT/CFormula.oTARGET = GSATSolverall:	g++ $(FLAGS) -c -o GSAT/GSAT.o GSAT/GSAT.cpp	g++ $(FLAGS) -c -o GSAT/ArrayFiller.o GSAT/ArrayFiller.cpp	g++ $(FLAGS) -c -o GSAT/CFormula.o GSAT/CFormula.cpp	mpic++ $(FLAGS) -c -o GSATHybride.o GSATHybride.cpp	mpic++ -o $(TARGET) Main.cpp $(FLAGS) $(OBJS) $(LIBS)clean:	rm -f $(OBJS) $(TARGET)	rm -rf *.*~	rm -rf *~run: 	@mpirun -n 3 ./GSATSolver -i ../../benchmarks/uf150/uf150-099.cnf -t 2
 |