/*****************************************************************************
//
// 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/Package
 *	Purpose: Imakefile for cool/Package module
 *	Creation Date: 10/11/90
 *
 *****************************************************************************/

#define IHaveSubdirs

DOCS = Package

SUBDIRS = tests

HDRS = Package.h defpackage.h

SRCS = Package.$(CXX) Pkg_put.$(CXX) Pkg_const.$(CXX) \
	Pkg_print.$(CXX) Pkg_rem.$(CXX) \
	apropos.$(CXX) complete.$(CXX) intern.$(CXX) spell.$(CXX) \
	text_package.$(CXX)

OBJS = Package.$(OBJ) Pkg_put.$(OBJ) Pkg_const.$(OBJ) \
	Pkg_print.$(OBJ) Pkg_rem.$(OBJ) \
	apropos.$(OBJ) complete.$(OBJ) intern.$(OBJ) spell.$(OBJ) \
	text_package.$(OBJ) HashChSy.imp

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

CoolImplementRule(HashChSy,Package.h,"Hash_Table<char*,Symbol*>")

