summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/ssh-agent/Makefile
blob: b81d25e05c979650a55e9505b8d2d42bd05d05d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#	$OpenBSD: Makefile,v 1.26 2017/12/10 19:37:57 deraadt Exp $

.PATH:		${.CURDIR}/..

SRCS=	ssh-agent.c ssh-pkcs11-client.c
SRCS+=	addrmatch.c atomicio.c authfile.c bitmap.c blocks.c bufaux.c buffer.c \
	chacha.c cipher-chachapoly.c cipher.c compat.c digest-openssl.c \
	ed25519.c fatal.c fe25519.c ge25519.c hash.c key.c krl.c log.c match.c \
	misc.c poly1305.c readpass.c sc25519.c ssh-dss.c ssh-ecdsa.c \
	ssh-ed25519.c ssh-rsa.c sshbuf-getput-basic.c sshbuf-getput-crypto.c \
	sshbuf-misc.c sshbuf.c ssherr.c sshkey.c uidswap.c verify.c xmalloc.c

PROG=	ssh-agent
BINOWN=	root
BINGRP=	_sshagnt

BINMODE?=2555

BINDIR=	/usr/bin

.include <bsd.prog.mk>

LDADD+=	-lcrypto -lutil
DPADD+=	${LIBCRYPTO} ${LIBUTIL}