artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bdb222f
)
enable building of signify in the ramdisks
author
deraadt
<deraadt@openbsd.org>
Wed, 8 Jan 2014 04:33:23 +0000
(
04:33
+0000)
committer
deraadt
<deraadt@openbsd.org>
Wed, 8 Jan 2014 04:33:23 +0000
(
04:33
+0000)
distrib/special/signify/Makefile
[new file with mode: 0644]
patch
|
blob
diff --git a/distrib/special/signify/Makefile
b/distrib/special/signify/Makefile
new file mode 100644
(file)
index 0000000..
d02b306
--- /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 <bsd.prog.mk>