NetBSD/usr.bin/rlogin/Makefile

18 lines
337 B
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.10 1997/06/28 23:43:36 tls Exp $
1995-03-21 10:58:28 +03:00
# @(#)Makefile 8.1 (Berkeley) 7/19/93
1993-03-21 12:45:37 +03:00
PROG= rlogin
SRCS= rlogin.c
1997-02-21 10:52:37 +03:00
1997-01-09 23:18:21 +03:00
.if defined(KERBEROS)
SRCS+= kcmd.c
1997-01-09 23:18:21 +03:00
DPADD= ${LIBKSTREAM} ${LIBKRB} ${LIBDES}
CFLAGS+= -DKERBEROS -DCRYPT
LDADD= -lkstream -lkrb -ldes
.endif
1993-03-21 12:45:37 +03:00
BINOWN= root
BINMODE=4555
1995-03-21 10:58:28 +03:00
#INSTALLFLAGS=-fschg
1993-03-21 12:45:37 +03:00
.include <bsd.prog.mk>