source: CIVL/examples/translation/mpi/Makefile@ c2a3f74

1.23 2.0 main test-branch
Last change on this file since c2a3f74 was 190e799, checked in by Ziqing Luo <ziqing@…>, 12 years ago

Add a new makefile

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

  • Property mode set to 100644
File size: 525 bytes
Line 
1CIVL = civl
2VERIFY = $(CIVL) verify
3CC = cc
4
5all: adder_par ring1 mpithreads_mpi mpi_pi_send mpi_prime
6
7adder_par: adder_par.c
8 $(VERIFY) -input__NPROCS=2 adder_par.c -inputNB=4
9
10ring1: ring1.c
11 $(VERIFY) -input__NPROCS=5 ring1.c
12
13mpithreads_mpi: mpithreads_mpi.c
14 $(VERIFY) -input__NPROCS=2 mpithreads_mpi.c
15
16mpi_pi_send: mpi_pi_send.c
17 $(VERIFY) -input__NPROCS=3 -enablePrintf=false mpi_pi_send.c
18
19mpi_prime: mpi_prime.c
20 $(VERIFY) -input__NPROCS=4 -enablePrintf=false mpi_prime.c
21
22clean:
23 rm -f -r CIVLREP
24 rm -r -f *~
25
Note: See TracBrowser for help on using the repository browser.