[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / usr.sbin / openssl

File: [local] / src / usr.sbin / openssl / Attic / Makefile (download)

Revision 1.6, Fri Dec 15 03:15:01 2000 UTC (23 years, 5 months ago) by beck
Branch: MAIN
CVS Tags: OPENBSD_3_1_BASE, OPENBSD_3_1, OPENBSD_3_0_BASE, OPENBSD_3_0, OPENBSD_2_9_BASE, OPENBSD_2_9
Changes since 1.5: +1 -1 lines

openssl-engine 0.9.6 merge

Note that the library changes will mean that you will need to blow away
/usr/obj/lib/libssl if you are building, or things will probably get mucked
up.

PROG=	openssl

BINOWN= root
BINGRP= bin
BINMODE= 555
BINDIR= /usr/sbin
LDADD=	-lssl -lcrypto
NOMAN= not yet kiddies

SSLEAYDIST= lib/libssl/src

SSLEAY_SRC= ${.CURDIR}/../../${SSLEAYDIST}/apps

.if ${MACHINE_ARCH} == "i386"
CFLAGS+= -g -DL_ENDIAN -DBN_ASM
.else
.if ${MACHINE_ARCH} == "arc"
CFLAGS+= -DL_ENDIAN
.else
.if ${MACHINE_ARCH} == "pmax"
CFLAGS+= -DL_ENDIAN
.else
.if ${MACHINE_ARCH} == "alpha"
# no ENDIAN stuff defined for alpha
.else
CFLAGS+= -DB_ENDIAN
.endif
.endif
.endif
.endif 

CFLAGS+= -DMONOLITH -DNO_IDEA -DTERMIOS -DANSI_SOURCE -DNO_RC5
CFLAGS+= -I/usr/include/ssl

SRCS=	verify.c asn1pars.c req.c dgst.c dh.c enc.c passwd.c gendh.c errstr.c\
	pkcs7.c crl2p7.c crl.c ca.c \
	rsa.c dsa.c dsaparam.c \
	x509.c genrsa.c gendsa.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 \
	app_rand.c ciphers.c nseq.c pkcs12.c pkcs8.c spkac.c smime.c \
	dhparam.c openssl.c rand.c rsautl.c

.PATH:	${SSLEAY_SRC}

.include<bsd.prog.mk>