Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/usr.bin/openssl Monolithic `openssl' program build glue, fro...
details: https://anonhg.NetBSD.org/src/rev/3ce89daed901
branches: trunk
changeset: 487984:3ce89daed901
user: thorpej <thorpej%NetBSD.org@localhost>
date: Fri Jun 16 06:29:40 2000 +0000
description:
Monolithic `openssl' program build glue, from cryptosrc-intl.
diffstat:
usr.bin/openssl/Makefile | 111 +++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 111 insertions(+), 0 deletions(-)
diffs (115 lines):
diff -r bf4dd8604c59 -r 3ce89daed901 usr.bin/openssl/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/usr.bin/openssl/Makefile Fri Jun 16 06:29:40 2000 +0000
@@ -0,0 +1,111 @@
+# $NetBSD: Makefile,v 1.1.1.1 2000/06/16 06:29:40 thorpej Exp $
+
+.include <bsd.own.mk>
+
+# RCSid:
+# $Id: Makefile,v 1.1.1.1 2000/06/16 06:29:40 thorpej Exp $
+#
+# @(#) Copyright (c) 1995 Simon J. Gerraty
+#
+# This file is provided in the hope that it will
+# be of use. There is absolutely NO WARRANTY.
+# Permission to copy, redistribute or otherwise
+# use this file is hereby granted provided that
+# the above copyright notice and this notice are
+# left intact.
+#
+# Please send copies of changes and bug-fixes to:
+# sjg%quick.com.au@localhost
+#
+
+PROG= openssl
+
+SRCS= openssl.c
+SRCS+= verify.c asn1pars.c req.c dgst.c dh.c enc.c gendh.c gendsa.c \
+ errstr.c ca.c pkcs12.c pkcs7.c pkcs8.c crl2p7.c crl.c dsa.c \
+ dsaparam.c x509.c s_server.c s_client.c speed.c s_time.c apps.c \
+ s_cb.c s_socket.c version.c sess_id.c ciphers.c nseq.c
+
+LDADD+= -lssl -lcrypto
+
+CPPFLAGS+= -DMONOLITH -DUSE_SSL
+MKMAN= no
+
+CRYPTODIST= ${.CURDIR}/../../dist
+.include "../../Makefile.openssl"
+.PATH: ${OPENSSLSRC}/apps
+
+#LINKS= openssl verify \
+# openssl asn1parse \
+# openssl req \
+# openssl dgst \
+# openssl dh \
+# openssl enc \
+# openssl gendh \
+# openssl gendsa \
+# openssl errstr \
+# openssl ca \
+# openssl crl \
+# openssl dsa \
+# openssl dsaparam \
+# openssl x509 \
+# openssl s_server \
+# openssl s_client \
+# openssl sess_id \
+# openssl ciphers \
+# openssl s_filter \
+# openssl speed \
+# openssl hashdir \
+# openssl s_time \
+# openssl s_mult \
+# openssl version \
+# openssl pkcs7 \
+# openssl crl2pkcs7 \
+# openssl md2 \
+# openssl sha \
+# openssl sha1 \
+# openssl base64 \
+# openssl des \
+# openssl des3 \
+# openssl rc4 \
+# openssl rc2 \
+# openssl des-ecb \
+# openssl des-ede \
+# openssl des-ede3 \
+# openssl des-cbc \
+# openssl des-ede-cbc \
+# openssl des-ede3-cbc \
+# openssl des-cfb \
+# openssl des-ede-cfb \
+# openssl des-ede3-cfb \
+# openssl des-ofb \
+# openssl des-ede-ofb \
+# openssl des-ede3-ofb \
+# openssl rc2-cbc \
+# openssl rc2-ecb \
+# openssl rc2-cfb \
+# openssl rc2-ofb \
+
+.if PATENTEDOPENSSLSRC
+SRCS+= rsa.c genrsa.c
+#LINKS+= openssl rsa \
+# openssl rsa-cbc \
+# openssl rsa-ecb \
+# openssl rsa-cfb \
+# openssl rsa-ofb
+.endif
+
+ssleay.o: ssleay.c
+ ${CC} ${CFLAGS} -UMONOLITH -o ${.TARGET} -c ${.IMPSRC}
+
+FILES= openssl.cnf
+FILESDIR=/etc/openssl
+
+.include <bsd.prog.mk>
+
+.if ${MKSHARE} != "no"
+FILES= CA.sh CA.pl der_chop
+FILESDIR=/usr/share/examples/openssl
+.endif
+
+.include <bsd.files.mk>
Home |
Main Index |
Thread Index |
Old Index