source: CIVL/examples/compare/diffusion1d/Makefile@ 978afe7

main test-branch
Last change on this file since 978afe7 was ea777aa, checked in by Alex Wilton <awilton@…>, 3 years ago

Moved examples, include, build_default.properties, common.xml, and README out from dev.civl.com into the root of the repo.

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

  • Property mode set to 100644
File size: 770 bytes
Line 
1CIVL=civl
2VERIFY=verify
3COMPARE=compare
4
5all: compare compare_adv spec par clean
6
7compare: diffusion1d_spec.c diffusion1d_par.c
8 $(CIVL) $(COMPARE) -inputNXB=3 -inputNSTEPS_BOUND=2 -inputwstep=1 -input_mpi_nprocs=2 \
9 -spec diffusion1d_spec.c -impl diffusion1d_par.c
10
11compare_adv: diffusion1d_spec.c diffusion1d_par.c
12 $(CIVL) $(COMPARE) -inputNXB=5 -inputNSTEPS_BOUND=4 -inputwstep=1 \
13 -input_mpi_nprocs_lo=1 -input_mpi_nprocs_hi=4 \
14 -spec diffusion1d_spec.c -impl diffusion1d_par.c
15
16spec: diffusion1d_spec.c
17 $(CIVL) $(VERIFY) -inputNXB=3 -inputNSTEPS_BOUND=2 -inputwstep=1 \
18 diffusion1d_spec.c
19
20par: diffusion1d_par.c
21 $(CIVL) $(VERIFY) -inputNXB=3 -inputNSTEPS_BOUND=2 -inputwstep=1 \
22 -input_mpi_nprocs=2 diffusion1d_par.c
23clean:
24 rm -f *~
25 rm -f -r CIVLREP
Note: See TracBrowser for help on using the repository browser.