source: proiecte/PDAD/trunk/nodeslocation/mpi/Makefile @ 154

Last change on this file since 154 was 154, checked in by (none), 14 years ago

PDAD project

File size: 425 bytes
Line 
1CC=mpicc
2CFLAGS=-g -Wall
3NODES=4
4INPUT=event_trace.tab
5
6build: failureCause nodesLocation
7
8failureCause: failureCause.c
9
10nodesLocation: nodesLocation.o hashmap.o
11        $(CC) $^ -o $@
12
13run-fail: failureCause
14        mpiexec -n $(NODES) ./failureCause ./event_trace.tab
15
16run-nodes: nodesLocation
17        mpiexec -n $(NODES) ./nodesLocation ./event_trace.tab ./node.tab ./out_nodes
18
19clean: 
20        rm -f ./*~ ./*.o ./failureCause ./nodesLocation
Note: See TracBrowser for help on using the repository browser.