[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / usr.bin / signify

File: [local] / src / usr.bin / signify / Makefile (download)

Revision 1.1, Tue Dec 31 03:03:32 2013 UTC (10 years, 5 months ago) by tedu
Branch: MAIN

add signify, a tool to sign and verify signatures.
man page and error message help from espie
other feedback from deraadt djm mikeb

#	$OpenBSD: Makefile,v 1.1 2013/12/31 03:03:32 tedu Exp $

.PATH: ${.CURDIR}/../ssh
CPPFLAGS += -I${.CURDIR}/../ssh

SRCS=	signify.c
SRCS+=	ed25519.c fe25519.c ge25519.c sc25519.c smult_curve25519_ref.c
SRCS+=	blocks.c hash.c verify.c

PROG=	signify

LDADD=  -lutil
DPADD=  ${LIBUTIL}

COPTS+=	-Wall

.include <bsd.prog.mk>