#
# This file is part of the OLH system
# Imakefile for b+tree/utils directory.
#
# Copyright (C) 1991 by the Massachusetts Institute of Technology.
# For copying and distribution information, see the file "mit-copyright.h."
#
#       $Source: /afs/athena.mit.edu/astaff/project/olhdev/src/b+tree/utils/RCS/Imakefile,v $
#       $Id: Imakefile,v 1.2 91/05/06 14:00:45 lwvanels Exp $
#       $Author: lwvanels $
#

/* #define Profiling */

#ifdef Profiling
LIBSUFFIX=_p
EXTRA_LOAD_FLAGS=-pg
DEFINES= -DPROFILE
.c.o:
        $(CC) -pg -c $(CFLAGS) $*.c
#else
DEFINES=
#endif /* Profiling */

INCLUDES= -I../btlib

NormalProgramTarget(btest,btest.o,,$(BtreeLib),)
NormalProgramTarget(btoptim,btoptim.o,,$(BtreeLib),)
NormalProgramTarget(testrack,testrack.o,,$(BtreeLib),)
NormalProgramTarget(words,words.o,,$(BtreeLib),)
NormalProgramTarget(kw,kw.o,,$(BtreeLib),)
NormalProgramTarget(kw_get,kw_get.o,,$(BtreeLib),)


DependTarget()
LintTarget()
AllTarget(kw kw_get btest btoptim testrack words)
