diff options
| author | Cem Keylan <cem@ckyln.com> | 2020-10-16 17:47:01 +0300 |
|---|---|---|
| committer | Cem Keylan <cem@ckyln.com> | 2020-10-16 17:47:01 +0300 |
| commit | 5d69c6a2661bba0a22f3ecfd517e2e9767a38346 (patch) | |
| tree | 1f479b2714e127835db7f33a3bfed4c38c52f883 /usr.bin/signify/Makefile | |
| parent | e2abcdca396661cbe0ae2ddb13d5c2b85682c13a (diff) | |
| download | otools-5d69c6a2661bba0a22f3ecfd517e2e9767a38346.tar.gz | |
add tools
Diffstat (limited to 'usr.bin/signify/Makefile')
| -rw-r--r-- | usr.bin/signify/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/usr.bin/signify/Makefile b/usr.bin/signify/Makefile new file mode 100644 index 0000000..de94571 --- /dev/null +++ b/usr.bin/signify/Makefile @@ -0,0 +1,16 @@ +# $OpenBSD: Makefile,v 1.12 2017/05/28 21:59:56 tedu Exp $ + +SRCS= signify.c +SRCS+= zsig.c +SRCS+= fe25519.c sc25519.c +SRCS+= mod_ed25519.c mod_ge25519.c +SRCS+= crypto_api.c + +PROG= signify + +LDADD= -lutil +DPADD= ${LIBUTIL} + +COPTS+= -Wall + +.include <bsd.prog.mk> |
