source: CIVL/examples/compare/diffusion1d/Makefile

main
Last change on this file 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
RevLine 
[0966332]1CIVL=civl
2VERIFY=verify
3COMPARE=compare
4
[95b3837]5all: compare compare_adv spec par clean
[0966332]6
[db66e7f]7compare: diffusion1d_spec.c diffusion1d_par.c
[95b3837]8 $(CIVL) $(COMPARE) -inputNXB=3 -inputNSTEPS_BOUND=2 -inputwstep=1 -input_mpi_nprocs=2 \
[db66e7f]9 -spec diffusion1d_spec.c -impl diffusion1d_par.c
[0966332]10
[db66e7f]11compare_adv: diffusion1d_spec.c diffusion1d_par.c
[95b3837]12 $(CIVL) $(COMPARE) -inputNXB=5 -inputNSTEPS_BOUND=4 -inputwstep=1 \
[db66e7f]13 -input_mpi_nprocs_lo=1 -input_mpi_nprocs_hi=4 \
14 -spec diffusion1d_spec.c -impl diffusion1d_par.c
[0966332]15
[db66e7f]16spec: diffusion1d_spec.c
[95b3837]17 $(CIVL) $(VERIFY) -inputNXB=3 -inputNSTEPS_BOUND=2 -inputwstep=1 \
[db66e7f]18 diffusion1d_spec.c
[0966332]19
[db66e7f]20par: diffusion1d_par.c
[95b3837]21 $(CIVL) $(VERIFY) -inputNXB=3 -inputNSTEPS_BOUND=2 -inputwstep=1 \
22 -input_mpi_nprocs=2 diffusion1d_par.c
[0966332]23clean:
24 rm -f *~
25 rm -f -r CIVLREP
Note: See TracBrowser for help on using the repository browser.