#############################################################################
#
#                   Copyright (C) 1996 SciTech Software
#                           All rights reserved.
#
# Descripton:   Generic makefile for the Techniques Class Library. Requires
#               the SciTech Software makefile definitions package to be
#               installed.
#
#############################################################################

# Name of library and object files required to build it

.IF $(STKCALL)
LIBFILE         = $(LP)stech$L
.ELSE
LIBFILE         = $(LP)tech$L
.ENDIF

LIBCLEAN        = *.lib *.a

OBJECTS         = dlist$O list$O hashtab$O error$O options$O str$O          \
                  dynstr$O substr$O memmgr$O hash_c$O slist$O

# Sample test programs

hashtst$E: hashtst$O $(LIBFILE)
tststr$E: tststr$O $(LIBFILE)

# Define the list of object files to create dependency information for

DEPEND_OBJ      = $(OBJECTS)
.SOURCE: test

.INCLUDE: "$(SCITECH)/makedefs/common.mk"

