##
##	Ohio Trollius
##	Copyright 1995 The Ohio State University
##
##	Function:	- libtools.a
##			- useful data structure packages
##

DEPTH   = ../../../..

##
## global configuration
##
include $(DEPTH)/Config/config

##
## local configuration
##
VPATH	= $(DEPTH)/share/etc
INCLUDE	= -I$(IDIR)
DEFS	= 
LCFLAGS = $(INCLUDE) $(DEFS)
AFLAGS	= rv

##
## modules and libraries
##
LIB	= libtools.a
SRC	= all_hash.c all_list.c all_queue.c \
	  all_shash.c all_slist.c all_squeue.c
OBJ	= all_hash.o all_list.o all_queue.o \
	  all_shash.o all_slist.o all_squeue.o


all: $(LIB)

$(LIB): $(OBJ)
	$(RM) $(LIB)
	$(AR) $(AFLAGS) $(LIB) $(OBJ)

install: $(LIB)

clean:
	$(RM) $(OBJ) $(LIB)

##
## depend:
##
include	$(DEPTH)/Config/depend

##
## automatic dependencies and rules
##
include Depends
