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

#define IHaveSubdirs

DOCS = Vector

SUBDIRS = tests

HDRS = Base_Vector.h Vector.h

SRCS = Base_Vector.$(CXX) \
	Vec_0const.$(CXX) Vec_1const.$(CXX) Vec_2const.$(CXX) \
	Vec_assign.$(CXX) Vec_brkt.$(CXX) Vec_clear.$(CXX) Vec_copy.$(CXX) \
	Vec_dest.$(CXX) Vec_empty.$(CXX) Vec_fill.$(CXX) Vec_resize.$(CXX) \
	Vec_remove.$(CXX) Vec_salloc.$(CXX) \
	Vec_slen.$(CXX) Vec_sratio.$(CXX) Vec_value.$(CXX) 

OBJS = Base_Vector.$(OBJ) \
	Vec_0const.$(OBJ) Vec_1const.$(OBJ) Vec_2const.$(OBJ) \
	Vec_assign.$(OBJ) Vec_brkt.$(OBJ) Vec_clear.$(OBJ) Vec_copy.$(OBJ) \
	Vec_dest.$(OBJ) Vec_empty.$(OBJ) Vec_fill.$(OBJ) Vec_resize.$(OBJ) \
	Vec_remove.$(OBJ) Vec_salloc.$(OBJ) \
	Vec_slen.$(OBJ) Vec_sratio.$(OBJ) Vec_value.$(OBJ) 

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