~fluidity-core/fluidity/sea-ice-branch

« back to all changes in this revision

Viewing changes to tests/flux_bc/Makefile

  • Committer: Simon Mouradian
  • Date: 2012-10-19 10:35:59 UTC
  • mfrom: (3520.32.371 fluidity)
  • Revision ID: simon.mouradian06@imperial.ac.uk-20121019103559-y36qa47phc69q8sc
mergeĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
preprocess:
 
2
        @echo **********Creating meshes
 
3
        gmsh -2 -o flux_bc_2d.msh src/flux_bc_2d.geo
 
4
        gmsh -3 -o flux_bc_3d.msh src/flux_bc_3d.geo
 
5
        ../../bin/gmsh2triangle --2d flux_bc_2d.msh
 
6
        ../../bin/gmsh2triangle flux_bc_3d.msh
 
7
 
 
8
run:
 
9
        @echo **********Running 2D simulation
 
10
        ../../bin/fluidity flux_bc_2d.flml 
 
11
        @echo **********Running 3D simulation
 
12
        ../../bin/fluidity flux_bc_3d.flml
 
13
 
 
14
input: clean preprocess
 
15
 
 
16
clean:
 
17
        rm -f *.stat *.steady_state*
 
18
        rm -f *.d.* *.vtu
 
19
        rm -f *.msh
 
20
        rm -f *.ele *.edge *.node *.poly *.face
 
21
        rm -f matrixdump* *checkpoint* *.log* *.err*
 
22