aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2001-07-20 13:12:55 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2001-07-20 13:12:55 +0000
commit88ad38eaecd2aa839a2057fcbedb1a9206674757 (patch)
treeefc4773cadd90e4a5d5dd56fe31ffd8434b77075
parente07865d81294b2a2e2ef843dd79b7f2b2bd87c37 (diff)
change CFLAGS and CXXFLAGS from using my JT_GCC_FLAGS (GXX) to STD_GCC_FLAGS
--> remove -I$HOME -L$HOME/lib.$arch --> hopefully cure problems with picking up non-project JT header files from ~/jt/ git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@237 f88db872-0e4f-0410-b76b-b9085cfa78c5
-rw-r--r--src/patch/Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/patch/Makefile b/src/patch/Makefile
index 44f1c12..056eeac 100644
--- a/src/patch/Makefile
+++ b/src/patch/Makefile
@@ -1,5 +1,5 @@
# Makefile for AHFinderDirect src/util library
-# $Id: Makefile,v 1.4 2001-07-20 11:44:54 jthorn Exp $
+# $Id: Makefile,v 1.5 2001-07-20 13:12:55 jthorn Exp $
#
# This Makefile can be called either as part of a Cactus build
# (in which case it expects the usual Cactus Makefile variables to be
@@ -12,9 +12,9 @@
# CC, CXX = C and C++ compilers. Defaults are gcc and g++ if
# variables aren't set from command line or environment.
# CC_FLAGS, CXX_FLAGS = C++ compiler flags. Defaults are
-# -I.. $(JT_GCC_FLAGS) -g
+# $(STD_GCC_FLAGS) -I.. -g
# and
-# -I.. $(JT_GXX_FLAGS) -g
+# $(STD_GXX_FLAGS) -I.. -g
# if variables aren't set from command line or
# environment.
#
@@ -50,10 +50,10 @@ CXX := g++
endif
ifndef CFLAGS
-CFLAGS := -I.. -L../libutil $(JT_GCC_FLAGS) -g
+CFLAGS := $(STD_GCC_FLAGS) -I.. -g
endif
ifndef CXXFLAGS
-CXXFLAGS := -I.. -L../libutil $(JT_GXX_FLAGS) -g
+CXXFLAGS := $(STD_GXX_FLAGS) -I.. -g
endif
################################################################################