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
RevLine 
[478ca9e]1
[a78dd2e]2all: verify run
3
[49a3cc6]4verify: verify_complex_basics verify_complex1 verify_complex_funs \
5 verify_mpi_complex
[a78dd2e]6
7run: run_complex_basics run_complex_funs
[478ca9e]8
9
10verify_complex_basics: complex_basics.c
11 civl verify $<
12
13run_complex_basics: complex_basics.c
[a78dd2e]14 cc -Wall -o complex_basics.exec $<
[478ca9e]15 ./complex_basics.exec
16
[a78dd2e]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
[478ca9e]26
[49a3cc6]27verify_mpi_complex: mpi_complex.cvl
28 civl verify -input_mpi_nprocs=2 $<
29
[478ca9e]30clean:
31 rm -rf *.exec *~ CIVLREP a.out
32
[a78dd2e]33_PHONY: verify_complex_basics run_complex_basics \
34 verify_complex1 \
35 verify_complex_funs run_complex_funs \
[49a3cc6]36 verify_mpi_complex \
[a78dd2e]37 all verify run clean
Note: See TracBrowser for help on using the repository browser.