/*****************************************************************************
//
// Copyright (C) 1991 Texas Instruments Incorporated.
//
// Permission is granted to any individual or institution to use, copy, modify,
// and distribute this software, provided that this complete copyright and
// permission notice is maintained, intact, in all copies and supporting
// documentation.
//
// Texas Instruments Incorporated provides this software "as is" without
// express or implied warranty.
//
 *****************************************************************************
 *
 *	Filename: Imakefile
 *	Module: cool/Hash_Table
 *	Purpose: Imakefile for cool/Hash_Table module
 *	Creation Date: 10/11/90
 *
 *****************************************************************************/

#define IHaveSubdirs

DOCS = Hash_Table

SUBDIRS = tests

HDRS =  Base_Hash.h Hash_Table.h

SRCS = Base_Hash.$(CXX) \
	Hash_0const.$(CXX) Hash_1const.$(CXX) Hash_2const.$(CXX) \
	Hash_assign.$(CXX) Hash_clear.$(CXX) Hash_dest.$(CXX) \
	Hash_key.$(CXX) \
        Hash_next.$(CXX) Hash_prev.$(CXX) Hash_ratio.$(CXX) Hash_rem.$(CXX) \
	Hash_resize.$(CXX) Hash_stats.$(CXX) Hash_value.$(CXX) \
	prime.$(CXX) sxhash.$(CXX)

OBJS = Base_Hash.$(OBJ) \
	Hash_0const.$(OBJ) Hash_1const.$(OBJ) Hash_2const.$(OBJ) \
	Hash_assign.$(OBJ) Hash_clear.$(OBJ) Hash_dest.$(OBJ) \
	Hash_key.$(OBJ) \
        Hash_next.$(OBJ) Hash_prev.$(OBJ) Hash_ratio.$(OBJ) Hash_rem.$(OBJ) \
	Hash_resize.$(OBJ) Hash_stats.$(OBJ) Hash_value.$(OBJ) \
	prime.$(OBJ) sxhash.$(OBJ)

All($(LIBRARY))
OptimizeCPlusObject()
LinkIncludes()
Library($(LIBRARY),$(OBJS))
