######################################################################
#
# Imakefile -- Imake rules for the high-level database interface.
# Dean Collins, Thu Jul 30 08:57:33 PDT 1992
#
# This is an Imakefile for the "Cloud" portion of the ZOMBIE software
# Problem Tracking System (PTS).  The routines here will be used as an
# interface to the zdbm database routines.      Sheneman        061592
#
# Modified: Dean Collins Thu Mar 10 20:51:15 1994
# Moved customization to ../Imake.config, which each Imakefile
# will #include.  This eliminates the need to set CC within
# each one.
#
######################################################################
#
# Copyright (c) 1994 Dean Collins.
# Copyright (c) 1992 University of Idaho, Moscow, Idaho.
# 
# Permission to use, copy, modify, and distribute this software and its
# documentation free of charge for any purpose is hereby granted without
# fee, provided that the above copyright notice appear in all copies and
# that both that copyright notice and this permission notice appear in
# supporting documentation, and that the name of the University of Idaho
# not be used in advertising or publicity pertaining to distribution of
# the software without specific, written prior permission.  The University
# of Idaho makes no representations about the suitability of this software
# for any purpose.  It is provided "as is" without express or implied warranty.
# 
# THE UNIVERSITY OF IDAHO DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
# SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.
# IN NO EVENT SHALL THE UNIVERSITY OF IDAHO BE LIABLE FOR ANY SPECIAL,
# INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
# LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
# PERFORMANCE OF THIS SOFTWARE.
######################################################################

######################################################################
#  YOU SHOULDN'T NEED TO MODIFY ANYTHING IN THIS FILE.
#  All customization is now done in ../Imake.config.
######################################################################


#include "../Imake.config"


#----------------------------------------------------------------------

           SRCS = setup.c summaries.c problems.c tester.c subtree.c \
		  clouderror.c formatprob.c
           OBJS = setup.o summaries.o problems.o tester.o subtree.o \
		  clouderror.o formatprob.o
           HDRS = cloud.h clouderror.h
       INCLUDES = -I.. -I../zdbm -I../util
LOCAL_LIBRARIES = -L../zdbm -lzdbm -L../util -lutil
        DEPLIBS = ../zdbm/libzdbm.a ../util/libutil.a


NormalLibraryTarget(cloud,$(OBJS))
DependTarget()
LintTarget()

uninstall::

