summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@mit.edu>2002-08-24 02:40:45 +0000
committerKen Raeburn <raeburn@mit.edu>2002-08-24 02:40:45 +0000
commit88a72165c3c3a765da040470caa38666156a0874 (patch)
tree7444a486ddaa9fe42da7c7d4cdc8d0a6c154941a
parenta5da4e5b1e219f9a0346cf0bbeec08dba57431b4 (diff)
downloadkrb5-88a72165c3c3a765da040470caa38666156a0874.tar.gz
krb5-88a72165c3c3a765da040470caa38666156a0874.tar.xz
krb5-88a72165c3c3a765da040470caa38666156a0874.zip
* Makefile: Deleted
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@14763 dc483132-0cff-0310-8789-dd5450dbe970
-rw-r--r--src/util/db2/test/ChangeLog2
-rw-r--r--src/util/db2/test/Makefile23
2 files changed, 2 insertions, 23 deletions
diff --git a/src/util/db2/test/ChangeLog b/src/util/db2/test/ChangeLog
index aa6653379..9a164918b 100644
--- a/src/util/db2/test/ChangeLog
+++ b/src/util/db2/test/ChangeLog
@@ -1,5 +1,7 @@
2002-08-23 Ken Raeburn <raeburn@mit.edu>
+ * Makefile: Deleted.
+
* Makefile.in: Change $(S)=>/ and $(U)=>.. globally.
2002-08-23 Tom Yu <tlyu@mit.edu>
diff --git a/src/util/db2/test/Makefile b/src/util/db2/test/Makefile
deleted file mode 100644
index a5dd08ae5..000000000
--- a/src/util/db2/test/Makefile
+++ /dev/null
@@ -1,23 +0,0 @@
-# @(#)Makefile 8.15 (Berkeley) 7/28/94
-
-PROG= dbtest
-OBJS= dbtest.o strerror.o
-
-# Uncomment the STAT line get hash and btree statistical use info. This
-# also forces ld to load the btree debug functions for use by gdb, which
-# is useful. The db library has to be compiled with -DSTATISTICS as well.
-INC= -I${PORTDIR}/include -I${PORTDIR}
-OORG= -g
-#STAT= -DSTATISTICS
-CFLAGS= -D__DBINTERFACE_PRIVATE -DDEBUG ${STAT} ${OORG} ${INC}
-
-dbtest: ${OBJS} ${PORTDIR}/libdb.a
- ${CC} -o $@ ${OBJS} ${PORTDIR}/libdb.a
-
-strerror.o: ${PORTDIR}/clib/strerror.c
- ${CC} -c ${PORTDIR}/clib/strerror.c
-
-clean:
- rm -f dbtest.core gmon.out ${OBJS} ${PROG} t1 t2 t3
-
-${OBJS}: Makefile