From 36993a1246c2b63871d516132a19e766cf166fb0 Mon Sep 17 00:00:00 2001 From: Harry Moffat Date: Mon, 14 Aug 2006 21:00:14 +0000 Subject: [PATCH] Added DEBUG_MODE flag to compilation line. --- test_problems/cathermo/HMW_test_3/HMW_test_3.cpp | 2 +- test_problems/cathermo/HMW_test_3/Makefile.in | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test_problems/cathermo/HMW_test_3/HMW_test_3.cpp b/test_problems/cathermo/HMW_test_3/HMW_test_3.cpp index 04ae44eb4..e6d911e73 100644 --- a/test_problems/cathermo/HMW_test_3/HMW_test_3.cpp +++ b/test_problems/cathermo/HMW_test_3/HMW_test_3.cpp @@ -78,7 +78,7 @@ int main(int argc, char **argv) moll[1] += sum; HMW->setState_TPM(Temp, OneAtm, moll); -#ifdef DEBUG_HKM +#ifdef DEBUG_MODE HMW->m_debugCalc = true; #endif printf(" Temperature = %g K\n", Temp); diff --git a/test_problems/cathermo/HMW_test_3/Makefile.in b/test_problems/cathermo/HMW_test_3/Makefile.in index 879f11b0d..41322be6f 100644 --- a/test_problems/cathermo/HMW_test_3/Makefile.in +++ b/test_problems/cathermo/HMW_test_3/Makefile.in @@ -38,9 +38,9 @@ CXX = @CXX@ # C++ compile flags ifeq ($(src_dir_tree), 1) -CXX_FLAGS = -DSRCDIRTREE @CXXFLAGS@ +CXX_FLAGS = -DSRCDIRTREE @CXXFLAGS@ -DDEBUG_MODE else -CXX_FLAGS = @CXXFLAGS@ +CXX_FLAGS = @CXXFLAGS@ -DDEBUG_MODE endif # Ending C++ linking libraries