source: CIVL/examples/accuracy/Makefile@ bb03188

main test-branch
Last change on this file since bb03188 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: 841 bytes
Line 
1CIVL=civl
2VERIFY=$(CIVL) verify
3
4all: derivative derivativeBackward derivativeBad diffusion laplace2d secondDerivative \
5 secondDerivativeBad upwindFirstOrder upwindSecondOrder upwindThirdOrder
6
7derivative:
8 $(VERIFY) -inputnum_elements=5 derivative.cvl
9
10derivativeBackward:
11 $(VERIFY) -inputnum_elements=5 derivativeBackward.cvl
12
13derivativeBad:
14 $(VERIFY) -inputnum_elements=5 derivativeBad.cvl
15
16diffusion:
17 $(VERIFY) -inputn=4 diffusion.cvl
18
19laplace2d:
20 $(VERIFY) -inputrows=3 -inputcols=3 laplace2d.cvl
21
22secondDerivative:
23 $(VERIFY) -inputnum_elements=5 secondDerivative.cvl
24
25secondDerivativeBad:
26 $(VERIFY) -inputnum_elements=5 secondDerivativeBad.cvl
27
28upwindFirstOrder:
29 $(VERIFY) -inputn=4 upwindFirstOrder.cvl
30
31upwindSecondOrder:
32 $(VERIFY) -inputn=5 upwindSecondOrder.cvl
33
34upwindThirdOrder:
35 $(VERIFY) -inputn=5 upwindThirdOrder.cvl
Note: See TracBrowser for help on using the repository browser.