From b3e610fa207d3cb7d3e7638ee7597d7dca8877df Mon Sep 17 00:00:00 2001 From: Harry Moffat Date: Tue, 13 Jun 2006 16:07:28 +0000 Subject: [PATCH] Added makefiles. --- test_problems/cathermo/.cvsignore | 1 + test_problems/cathermo/Makefile.in | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 test_problems/cathermo/.cvsignore create mode 100644 test_problems/cathermo/Makefile.in diff --git a/test_problems/cathermo/.cvsignore b/test_problems/cathermo/.cvsignore new file mode 100644 index 000000000..f3c7a7c5d --- /dev/null +++ b/test_problems/cathermo/.cvsignore @@ -0,0 +1 @@ +Makefile diff --git a/test_problems/cathermo/Makefile.in b/test_problems/cathermo/Makefile.in new file mode 100644 index 000000000..1afc53587 --- /dev/null +++ b/test_problems/cathermo/Makefile.in @@ -0,0 +1,25 @@ +# +# $Revision$ +# $Author$ +# $Date$ +# +# +test_issp=@COMPILE_IDEAL_SOLUTIONS@ +all: +ifeq ($(test_issp),1) + cd issp; @MAKE@ all +endif + +test: +ifeq ($(test_issp),1) + cd issp; @MAKE@ test +endif + +clean: + $(RM) *.*~ + cd issp; @MAKE@ clean + +depends: +ifeq ($(test_issp),1) + cd issp; @MAKE@ depends +endif