diff options
| author | svn2git <svn2git@FreeBSD.org> | 1994-05-01 08:00:00 +0000 |
|---|---|---|
| committer | svn2git <svn2git@FreeBSD.org> | 1994-05-01 08:00:00 +0000 |
| commit | a16f65c7d117419bd266c28a1901ef129a337569 (patch) | |
| tree | 2626602f66dc3551e7a7c7bc9ad763c3bc7ab40a /lib/libc/db/test/Makefile | |
| parent | 8503f4f13f77abf7adc8f7e329c6f9c1d52b6a20 (diff) | |
Release FreeBSD 1.1upstream/1.1.0_cvsrelease/1.1.0_cvs
This commit was manufactured to restore the state of the 1.1-RELEASE image.
Releases prior to 5.3-RELEASE are omitting the secure/ and crypto/ subdirs.
Diffstat (limited to 'lib/libc/db/test/Makefile')
| -rw-r--r-- | lib/libc/db/test/Makefile | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/lib/libc/db/test/Makefile b/lib/libc/db/test/Makefile index f04a780c74dc..a070941f8f2d 100644 --- a/lib/libc/db/test/Makefile +++ b/lib/libc/db/test/Makefile @@ -1,10 +1,14 @@ -# @(#)Makefile 8.1 (Berkeley) 6/4/93 +# @(#)Makefile 8.7 (Berkeley) 1/2/94 PROG= dbtest -SRCS= dbtest.c +OBJS= dbtest.o -CFLAGS+= -g -DDEBUG -DSTATISTICS -NOMAN= noman +# Add -DSTATISTICS to CFLAGS to get btree statistical use info. +# Note, the db library has to be compiled for statistics as well. +CFLAGS= -O -DDEBUG -NOINCLUDE=1 -.include <bsd.prog.mk> +dbtest: ${OBJS} ${LIB} + ${CC} -o $@ ${OBJS} ${LIB} + +clean: + rm -f gmon.out ${OBJS} ${PROG} t1 t2 t3 |
