aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-04-13 12:50:30 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-04-13 12:50:30 +0000
commit4265da68c76732bd5c15c0c56f41d770a59aaa86 (patch)
treeb5d878dfafa16bd022de267b25cd855c48b03677
parent934f7df04c869a576c6a9019debfb8c21c6cfba2 (diff)
get list of object files in ../jtutil/ by wildcard expansion,
instead of old hard-coded list git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@499 f88db872-0e4f-0410-b76b-b9085cfa78c5
-rw-r--r--src/patch/makefile12
1 files changed, 2 insertions, 10 deletions
diff --git a/src/patch/makefile b/src/patch/makefile
index 2a9e4d7..0b0964f 100644
--- a/src/patch/makefile
+++ b/src/patch/makefile
@@ -1,5 +1,5 @@
# Makefile for standalone test drivers in this directory
-# $Id: makefile,v 1.1 2002-04-05 18:15:03 jthorn Exp $
+# $Id: makefile,v 1.2 2002-04-13 12:50:30 jthorn Exp $
#
# CC, CXX = C and C++ compilers. Defaults are gcc and g++ if
# variables aren't set from command line or environment.
@@ -23,15 +23,7 @@ CXX := g++
CFLAGS := $(STD_GCC_FLAGS) -I.. -g
CXXFLAGS := $(STD_GXX_FLAGS) -I.. -g
-## FIXME: why doesn't this work???
-##JTUTIL_OJB := $(filter-out ../jtutil/test%, $(wildcard ../jtutil/*.o))
-##foo :
-## @echo JTUTIL_OBJ $(JTUTIL_OBJ)
-JTUTIL_OBJ := ../jtutil/array.o \
- ../jtutil/cpm_map.o ../jtutil/linear_map.o \
- ../jtutil/fuzzy.o ../jtutil/round.o \
- ../jtutil/norm.o ../jtutil/miscfp.o \
- ../jtutil/error_exit.o
+JTUTIL_OBJ := $(filter-out ../jtutil/test%, $(wildcard ../jtutil/*.o))
################################################################################