source: CIVL/examples/mpi/routines/Makefile@ a4d3566

1.23 2.0 acw/focus-triggers main test-branch
Last change on this file since a4d3566 was e3151da, checked in by Ziqing Luo <ziqing@…>, 12 years ago

re-organized example directory

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@1763 fb995dde-84ed-4084-dfe6-e5aef3e2452c

  • Property mode set to 100644
File size: 823 bytes
Line 
1CIVL = civl
2VERIFY = $(CIVL) verify
3CC = cc
4
5all: mpi_gather mpi_scatter mpi_gatherv mpi_scatterv
6
7mpi_gather: ${Gather_Scatter/mpi_gather.c}
8 $(VERIFY) -input__NPROCS=4 -enablePrintf=false Gather_Scatter/mpi_gather.c
9
10mpi_scatter: ${Gather_Scatter/mpi_scatter.c}
11 $(VERIFY) -input__NPROCS=4 -enablePrintf=false Gather_Scatter/mpi_scatter.c
12
13mpi_gatherv: ${Gather_Scatter/mpi_gatherv.c}
14 $(VERIFY) -input__NPROCS=4 -enablePrintf=false Gather_Scatter/mpi_gatherv.c
15
16mpi_scatterv: ${Gather_Scatter/mpi_scatterv.c}
17 $(VERIFY) -input__NPROCS=4 -enablePrintf=false Gather_Scatter/mpi_scatterv.c
18
19mpi_sysStatus: mpiSysStatus.c
20 $(VERIFY) mpiSysStatus.c
21
22mpi_sysStatusBad: mpiSysStatusBad.c
23 $(VERIFY) mpiSysStatusBad.c
24
25mpi_sysStatusBad2: mpiSysStatusBad2.c
26 $(VERIFY) mpiSysStatusBad2.c
27
28clean:
29 rm -f -r CIVLREP
30 rm -r -f *~
31
Note: See TracBrowser for help on using the repository browser.