#
# Imakefile for sendpass
#
# Written by:	Derek Atkins <warlord@MIT.EDU>
#
#

DBG=	-O

#if defined(sun) && defined(sparc)
HLIBS           = -lhesiod
#ifdef SOLARIS
SOCKLIBS        = -lsocket -lnsl -lucb -lelf
#endif
#endif

INCLUDES=	-I/usr/athena/include
DEFINES=	-DKERBEROS $(INCLUDES)
LIBS=	-lzephyr -lkrb -ldes -lcom_err $(HLIBS) $(SOCKLIBS)

SRCS=	sendpass.c
OBJS=	sendpass.o

NormalProgramTarget(sendpass,$(OBJS), , ,$(LIBS))

