mirror of
https://github.com/openssh/libopenssh
synced 2026-04-16 09:45:53 +00:00
19 lines
279 B
Makefile
19 lines
279 B
Makefile
# $OpenBSD: Makefile,v 1.6 2009/05/28 16:50:16 andreas Exp $
|
|
|
|
.PATH: ${.CURDIR}/..
|
|
|
|
PROG= ssh-keysign
|
|
BINOWN= root
|
|
|
|
BINMODE?=4555
|
|
|
|
BINDIR= /usr/libexec
|
|
MAN= ssh-keysign.8
|
|
|
|
SRCS= ssh-keysign.c readconf.c
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
LDADD+= -lcrypto -lz
|
|
DPADD+= ${LIBCRYPTO} ${LIBZ}
|