######################################################################
# 
# Imakefile -- Imake rules for unlock index kludge$(PTSTOP).(grin)
# Dean Collins, Fri Nov 13 19:46:24 PST 1992
# 
######################################################################
#
# 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.
######################################################################


CDEBUGFLAGS = -g -W0,-dba -DDEBUG

         PTSTOP = ../..
           SRCS = danger.c
           OBJS = danger.o
           HDRS = danger.h
       INCLUDES = -I$(PTSTOP)/zdbm -I$(PTSTOP)/neb_cld -I$(PTSTOP)/config
LOCAL_LIBRARIES = -L$(PTSTOP)/zdbm -lzdbm -L$(PTSTOP)/neb_cld -lcloud -L$(PTSTOP)/config -lconfig
        DEBLIBS = $(PTSTOP)/zdbm/libzdbm.a $(PTSTOP)/neb_cld/libcloud.a $(PTSTOP)/config/libconfig.a

NormalProgramTarget(danger, $(OBJS), $(DEPLIBS), $(LOCAL_LIBRARIES), /**/)
DependTarget()
LintTarget()

/* You really shouldn't install 'danger' in BINDIR, but just in case... */
uninstall::
	$(RM) $(BINDIR)/danger
	@echo "uninstall in $(CURRENT_DIR) done"

