~fluidity-core/fluidity/excise-fldecomp

« back to all changes in this revision

Viewing changes to tests/flux_bc/Makefile

  • Committer: Mark Filipiak
  • Date: 2012-08-13 11:42:30 UTC
  • mfrom: (4003.1.23 dev-trunk)
  • Revision ID: mjf@staffmail.ed.ac.uk-20120813114230-wzoyf2gi4p4oxeh4
Merge in of the latest trunk.  To try to cure non-flredecomp tests that are passing at EPCC but failing in buildbot.

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