source: CIVL/examples/complex/Makefile@ 2b25839

2.0 acw/focus-triggers main
Last change on this file since 2b25839 was 49a3cc6, checked in by Stephen Siegel <siegel@…>, 9 days ago

Added support for complex datatype in MPI.
Found and remove some uses of deprecated $state and $collate CIVL primitives.

  • Property mode set to 100644
File size: 770 bytes
Line 
1
2all: verify run
3
4verify: verify_complex_basics verify_complex1 verify_complex_funs \
5 verify_mpi_complex
6
7run: run_complex_basics run_complex_funs
8
9
10verify_complex_basics: complex_basics.c
11 civl verify $<
12
13run_complex_basics: complex_basics.c
14 cc -Wall -o complex_basics.exec $<
15 ./complex_basics.exec
16
17verify_complex1: complex1.cvl
18 civl verify $<
19
20verify_complex_funs: complex_funs.c
21 civl verify $<
22
23run_complex_funs: complex_funs.c
24 cc -Wall -o complex_funs.exec $<
25 ./complex_funs.exec
26
27verify_mpi_complex: mpi_complex.cvl
28 civl verify -input_mpi_nprocs=2 $<
29
30clean:
31 rm -rf *.exec *~ CIVLREP a.out
32
33_PHONY: verify_complex_basics run_complex_basics \
34 verify_complex1 \
35 verify_complex_funs run_complex_funs \
36 verify_mpi_complex \
37 all verify run clean
Note: See TracBrowser for help on using the repository browser.