blob: 0726704266d24b4d4d6544656d725ef8364d748f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Copyright (c) 1990 The Regents of the University of California.
# All rights reserved.
#
# from @(#)Makefile 8.1 (Berkeley) 6/1/93
# $Id: Makefile,v 1.1 1995/12/14 06:52:36 tholo Exp $
PROG= registerd
SRCS= registerd.c des_rw.c
.PATH: ${.CURDIR}/../../usr.bin/rlogin
CFLAGS+=-DKERBEROS -I${.CURDIR}/../register
DPADD= ${LIBKDB} ${LIBKRB} ${LIBDES}
LDADD= -lkdb -lkrb -ldes
MAN= registerd.8
BINDIR= /usr/libexec
.include <bsd.prog.mk>
|