non-recursive automake: add shortcut targets

instead of typing 'make test/common/propertysystem/test_propertysystem'
in the toplevel build directory, one can now just type
'make test_propertysystem'
This commit is contained in:
Andreas Lauser 2012-11-21 23:28:15 +01:00
parent 896f0ed23d
commit a299e29f02
2 changed files with 4 additions and 4 deletions

View File

@ -29,7 +29,7 @@
#include <ewoms/boxmodels/immiscible/immisciblemodel.hh>
// The chemical species that are used
#include <ewoms/material/components/h2o.hh>
#include <ewoms/material/components/simpleh2o.hh>
#include <ewoms/material/components/lnapl.hh>
// The material laws
@ -65,7 +65,7 @@ SET_TYPE_PROP(TutorialProblemCoupled, GridCreator, Ewoms::CubeGridCreator<TypeTa
// Set the wetting phase /*@\label{tutorial-coupled:2p-system-start}@*/
SET_TYPE_PROP(TutorialProblemCoupled, WettingPhase, /*@\label{tutorial-coupled:wettingPhase}@*/
Ewoms::LiquidPhase<typename GET_PROP_TYPE(TypeTag, Scalar),
Ewoms::H2O<typename GET_PROP_TYPE(TypeTag, Scalar)> >);
Ewoms::SimpleH2O<typename GET_PROP_TYPE(TypeTag, Scalar)> >);
// Set the non-wetting phase
SET_TYPE_PROP(TutorialProblemCoupled, NonwettingPhase, /*@\label{tutorial-coupled:nonwettingPhase}@*/

View File

@ -39,7 +39,7 @@
#include<ewoms/decoupled/2p/transport/fv/evalcflfluxcoats.hh>
// the components that are used
#include <ewoms/material/components/h2o.hh>
#include <ewoms/material/components/simpleh2o.hh>
#include <ewoms/material/components/lnapl.hh>
// the grid includes
@ -78,7 +78,7 @@ SET_PROP(TutorialProblemDecoupled, WettingPhase) /*@\label{tutorial-decoupled:2p
private:
typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar;
public:
typedef Ewoms::LiquidPhase<Scalar, Ewoms::H2O<Scalar> > type; /*@\label{tutorial-decoupled:wettingPhase}@*/
typedef Ewoms::LiquidPhase<Scalar, Ewoms::SimpleH2O<Scalar> > type; /*@\label{tutorial-decoupled:wettingPhase}@*/
};
// Set the non-wetting phase