From: deraadt Date: Wed, 8 Jan 2014 04:33:23 +0000 (+0000) Subject: enable building of signify in the ramdisks X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=087cc252c1d9a8e846e17d72758277ee19389fde;p=openbsd enable building of signify in the ramdisks --- diff --git a/distrib/special/signify/Makefile b/distrib/special/signify/Makefile new file mode 100644 index 00000000000..d02b306bb0f --- /dev/null +++ b/distrib/special/signify/Makefile @@ -0,0 +1,19 @@ +# $OpenBSD: Makefile,v 1.1 2014/01/08 04:33:23 deraadt Exp $ + +.PATH: ${.CURDIR}/../../../usr.bin/signify +.PATH: ${.CURDIR}/../../../usr.bin/ssh +CPPFLAGS += -I${.CURDIR}/../../../usr.bin/ssh + +SRCS= signify.c +SRCS+= fe25519.c sc25519.c smult_curve25519_ref.c +SRCS+= mod_ed25519.c mod_ge25519.c +SRCS+= crypto_api.c + +PROG= signify + +LDADD= -lutil +DPADD= ${LIBUTIL} + +COPTS+= -Wall -DVERIFYONLY + +.include