#:ts=8
#
# $Id: Makefile,v 0.32 1995/11/22 10:00:18 turm Exp $
#
# Makefile CNCL lib/container
#
TOPDIR	= ../..

include $(TOPDIR)/make.conf

FILES = AVLNode.c AVLNode.h AVLTree.c AVLTree.h DLIterator.c DLIterator.h \
	DLList.c DLList.h DLObject.c DLObject.h HashDynamic.c HashDynamic.h \
	HashIterator.c HashIterator.h HashStatic.c HashStatic.h HashTable.c \
	HashTable.h Job.c Job.h Key.c Key.h KeyInt.c KeyInt.h KeyString.c \
	KeyString.h Makefile Manager.c Manager.h PrioQueueFIFO.c \
	PrioQueueFIFO.h Queue.c Queue.h QueueFIFO.c QueueFIFO.h QueueLIFO.c \
	QueueLIFO.h QueueRandom.c QueueRandom.h QueueSPT.c QueueSPT.h Sink.c \
	Sink.h Stack.c Stack.h SLIterator.c SLIterator.h \
	SLList.c SLList.h SLObject.c SLObject.h

OBJS	= DLObject.o DLList.o DLIterator.o Queue.o QueueFIFO.o\
	  HashDynamic.o HashStatic.o HashTable.o HashIterator.o\
	  Key.o KeyInt.o KeyString.o\
	  Manager.o QueueLIFO.o QueueRandom.o QueueSPT.o Job.o\
	  PrioQueueFIFO.o Sink.o Stack.o\
	  AVLTree.o AVLNode.o SLObject.o SLList.o SLIterator.o

all:	$(OBJS)

lib:
	(cd ..; make lib)

install:
	cp *.h $(includedir)/CNCL

# Common stuff
include $(TOPDIR)/make.common


