~amcg-stokes/fluidity/block-velocity-nns

« back to all changes in this revision

Viewing changes to tests/Stokes_square_convection_1e4_p2p1_parallel/Makefile

  • Committer: Rhodri Davies
  • Date: 2014-05-29 00:14:40 UTC
  • mfrom: (3854.1.473 fluidity)
  • Revision ID: rhodri.davies@imperial.ac.uk-20140529001440-0lx74o0djriitwbn
MergeĀ inĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
FLUIDITY = fluidity
4
4
MESH = square-structured-linear
5
5
MODEL = Stokes-square-convection-1e4-parallel-p2p1
6
 
NP = 2
7
6
 
8
7
default: input
9
8
 
10
9
input: src/$(MESH).edge src/$(MESH).ele src/$(MESH).node clean
11
10
        cp src/$(MESH).edge src/$(MESH).ele src/$(MESH).node .
12
11
 
13
 
ifdef NP
14
 
        fldecomp -n $(NP) -v $(MESH) > decomp.log 2> decomp_err.log
15
 
endif
16
 
 
17
12
clean: clean-mesh clean-run-debug
18
13
clean-mesh:
19
14
        rm -f $(MESH).ele $(MESH).face $(MESH).node $(MESH).edge
20
 
        rm -f $(MESH)_?*.ele $(MESH)_?*.edge $(MESH)_?*.face $(MESH)_?*.halo $(MESH)_?*.node decomp.log decomp_err.log
 
15
        rm -f $(MESH)_?*.ele $(MESH)_?*.edge $(MESH)_?*.face $(MESH)_?*.halo $(MESH)_?*.node
21
16
clean-run:
22
17
        rm -f $(FLMLMODEL)_?*.pvtu $(FLMLMODEL)_?*.vtu
23
18
        rm -f $(FLMLMODEL).detectors $(FLMLMODEL).stat tmpf*
29
24
        rm -f $(FLMLMODEL)_?*_checkpoint.ele $(FLMLMODEL)_?*_checkpoint.face $(FLMLMODEL)_?*_checkpoint.node
30
25
        rm -f $(FLMLMODEL)_?*_checkpoint.vtu
31
26
        rm -f -R $(FLMLMODEL)_* rm $(FLMLMODEL)*.dat
 
27
        rm -rf *flredecomp*
32
28
clean-run-debug: clean-run
33
29
        rm -f adapted_mesh_?*.vtu bounding_box_?*_?*.vtu final_metric_?*.vtu gmon.out gradation_metric_?*.vtu interpolation_metric_final_?*.vtu interpolation_metric_hessian_?*_?*.vtu interpolation_metric_merge_?*_?*.vtu interpolation_metric_metric_?*_?*.vtu metric_input_?*_?*.vtu
34
30