aboutsummaryrefslogtreecommitdiff
path: root/src/jtutil/makefile
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2003-05-02 19:22:14 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2003-05-02 19:22:14 +0000
commit0f6d7f9f835de1663cbc04605c6d95aa9323ab7f (patch)
tree27ae8ad17c528e514fe6faee760361c3a5a73959 /src/jtutil/makefile
parente841790f907d3aed6c6265c90247e73204b24746 (diff)
Change from using a private Strlcat() function to the Util_Strlcat()
one that's now in the Cactus flesh. ***** ***** After this change, you will need to cvs-update your copy of the ***** Cactus flesh (files src/util/String.c and src/util/util_String.h) ***** in order to recompile this thorn. ***** git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@1041 f88db872-0e4f-0410-b76b-b9085cfa78c5
Diffstat (limited to 'src/jtutil/makefile')
-rw-r--r--src/jtutil/makefile8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/jtutil/makefile b/src/jtutil/makefile
index 337a393..ff56b27 100644
--- a/src/jtutil/makefile
+++ b/src/jtutil/makefile
@@ -1,5 +1,5 @@
# Makefile for standalone test drivers in this directory
-# $Header: /usr/local/svn/cvs-repositories/numrelcvs/AEIThorns/AHFinderDirect/src/jtutil/makefile,v 1.11 2003-03-12 20:03:57 jthorn Exp $
+# $Header: /usr/local/svn/cvs-repositories/numrelcvs/AEIThorns/AHFinderDirect/src/jtutil/makefile,v 1.12 2003-05-02 19:20:53 jthorn Exp $
#
# CC, CXX = C and C++ compilers. Defaults are gcc and g++ if
# variables aren't set from command line or environment.
@@ -26,8 +26,7 @@ ALL_TESTS := test_array test_array2 \
test_cpm_map test_linear_map \
test_fuzzy test_round \
test_modulo test_norm \
- test_error_exit \
- test_strlcat
+ test_error_exit
################################################################################
@@ -58,9 +57,6 @@ test_norm : test_norm.o norm.o \
test_error_exit : test_error_exit.o error_exit.o
$(CXX) $(CXXFLAGS) -o $@ $?
-test_strlcat : test_strlcat.o miscstr.o
- $(CXX) $(CXXFLAGS) -o $@ $?
-
.PHONY : clean
clean :
-rm -f *.o