aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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
################################################################################