summaryrefslogtreecommitdiff
path: root/src/usr.sbin/openssl/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/usr.sbin/openssl/Makefile')
-rw-r--r--src/usr.sbin/openssl/Makefile31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/usr.sbin/openssl/Makefile b/src/usr.sbin/openssl/Makefile
deleted file mode 100644
index 1d149f25d8..0000000000
--- a/src/usr.sbin/openssl/Makefile
+++ /dev/null
@@ -1,31 +0,0 @@
1# $OpenBSD: Makefile,v 1.31 2014/07/27 23:46:51 guenther Exp $
2
3PROG= openssl
4LDADD= -lssl -lcrypto
5DPADD= ${LIBSSL} ${LIBCRYPTO}
6MAN1= openssl.1
7
8CFLAGS+= -Wall -Werror
9CFLAGS+= -Wformat
10CFLAGS+= -Wformat-security
11CFLAGS+= -Wimplicit
12CFLAGS+= -Wreturn-type
13#CFLAGS+= -Wshadow
14CFLAGS+= -Wtrigraphs
15CFLAGS+= -Wuninitialized
16CFLAGS+= -Wunused
17
18CFLAGS+= -DLIBRESSL_INTERNAL
19
20SRCS= verify.c asn1pars.c req.c dgst.c dh.c enc.c passwd.c gendh.c errstr.c \
21 pkcs7.c crl2p7.c crl.c ca.c \
22 rsa.c rsautl.c dsa.c dsaparam.c ec.c ecparam.c \
23 x509.c genrsa.c gendsa.c genpkey.c s_server.c s_client.c speed.c \
24 s_time.c apps.c s_socket.c version.c sess_id.c \
25 ciphers.c nseq.c pkcs12.c pkcs8.c pkey.c pkeyparam.c pkeyutl.c \
26 spkac.c smime.c cms.c rand.c engine.c ocsp.c prime.c ts.c \
27 openssl.c s_cb.c dhparam.c
28
29.PATH: ${.CURDIR}/../../lib/libssl/src/apps
30
31.include <bsd.prog.mk>