]> git.ipfire.org Git - thirdparty/openssl.git/blame - Makefile.org
Make engines compile on VMS for ia64 as well.
[thirdparty/openssl.git] / Makefile.org
CommitLineData
d56128f0
RE
1##
2## Makefile for OpenSSL
3##
4
0973910f
UM
5VERSION=
6MAJOR=
7MINOR=
b436a982
RL
8SHLIB_VERSION_NUMBER=
9SHLIB_VERSION_HISTORY=
10SHLIB_MAJOR=
11SHLIB_MINOR=
a22fb399 12SHLIB_EXT=
d56128f0 13PLATFORM=dist
31ff97b2 14OPTIONS=
c59cb511 15CONFIGURE_ARGS=
b436a982
RL
16SHLIB_TARGET=
17
30c08f2e
RL
18# HERE indicates where this Makefile lives. This can be used to indicate
19# where sub-Makefiles are expected to be. Currently has very limited usage,
20# and should probably not be bothered with at all.
21HERE=.
22
e5f3045f
BM
23# INSTALL_PREFIX is for package builders so that they can configure
24# for, say, /usr/ and yet have everything installed to /tmp/somedir/usr/.
25# Normally it is left empty.
26INSTALL_PREFIX=
462ba4f6
UM
27INSTALLTOP=/usr/local/ssl
28
29# Do not edit this manually. Use Configure --openssldir=DIR do change this!
30OPENSSLDIR=/usr/local/ssl
d56128f0 31
d02b48c6
RE
32# NO_IDEA - Define to build without the IDEA algorithm
33# NO_RC4 - Define to build without the RC4 algorithm
34# NO_RC2 - Define to build without the RC2 algorithm
35# THREADS - Define when building with threads, you will probably also need any
58964a49 36# system defines as well, i.e. _REENTERANT for Solaris 2.[34]
d02b48c6
RE
37# TERMIO - Define the termio terminal subsystem, needed if sgtty is missing.
38# TERMIOS - Define the termios terminal subsystem, Silicon Graphics.
39# LONGCRYPT - Define to use HPUX 10.x's long password modification to crypt(3).
40# DEVRANDOM - Give this the value of the 'random device' if your OS supports
58964a49
RE
41# one. 32 bytes will be read from this when the random
42# number generator is initalised.
baf748ba 43# SSL_FORBID_ENULL - define if you want the server to be not able to use the
58964a49 44# NULL encryption ciphers.
d02b48c6
RE
45#
46# LOCK_DEBUG - turns on lots of lock debug output :-)
47# REF_CHECK - turn on some xyz_free() assertions.
58964a49 48# REF_PRINT - prints some stuff on structure free.
d02b48c6
RE
49# CRYPTO_MDEBUG - turns on my 'memory leak' detecting stuff
50# MFUNC - Make all Malloc/Free/Realloc calls call
58964a49
RE
51# CRYPTO_malloc/CRYPTO_free/CRYPTO_realloc which can be setup to
52# call application defined callbacks via CRYPTO_set_mem_functions()
53# MD5_ASM needs to be defined to use the x86 assembler for MD5
54# SHA1_ASM needs to be defined to use the x86 assembler for SHA1
55# RMD160_ASM needs to be defined to use the x86 assembler for RIPEMD160
dfeab068
RE
56# Do not define B_ENDIAN or L_ENDIAN if 'unsigned long' == 8. It must
57# equal 4.
58# PKCS1_CHECK - pkcs1 tests.
d02b48c6 59
67ea999d
AP
60CC= cc
61CFLAG= -O
f5d7a031 62DEPFLAG=
bc29d0e5 63PEX_LIBS=
651d0aff 64EX_LIBS=
967d95f0 65EXE_EXT=
179add2b
RL
66ARFLAGS=
67AR=ar $(ARFLAGS) r
d83dde61 68ARD=ar $(ARFLAGS) d
99aab161
UM
69RANLIB= ranlib
70PERL= perl
2dbb3ccd 71TAR= tar
63977104 72TARFLAGS= --no-recursion
cf1b7d96 73MAKEDEPPROG=makedepend
985b5ee7 74LIBDIR=lib
d02b48c6 75
3cc9a89d
AP
76# We let the C compiler driver to take care of .s files. This is done in
77# order to be excused from maintaining a separate set of architecture
78# dependent assembler flags. E.g. if you throw -mcpu=ultrasparc at SPARC
79# gcc, then the driver will automatically translate it to -xarch=v8plus
80# and pass it down to assembler.
81AS=$(CC) -c
01fc834b 82ASFLAG=$(CFLAG)
3cc9a89d 83
14e21f86
AP
84# For x86 assembler: Set PROCESSOR to 386 if you want to support
85# the 80386.
86PROCESSOR=
87
88# CPUID module collects small commonly used assembler snippets
89CPUID_OBJ=
dfeab068 90BN_ASM= bn_asm.o
67ea999d 91DES_ENC= des_enc.o fcrypt_b.o
ed65fab9 92AES_ASM_OBJ=aes_core.o aes_cbc.o
67ea999d
AP
93BF_ENC= bf_enc.o
94CAST_ENC= c_enc.o
95RC4_ENC= rc4_enc.o
96RC5_ENC= rc5_enc.o
97MD5_ASM_OBJ=
98SHA1_ASM_OBJ=
99RMD160_ASM_OBJ=
58964a49 100
f9b3bff6
RL
101# KRB5 stuff
102KRB5_INCLUDES=
c1269c81 103LIBKRB5=
f9b3bff6 104
7614f0e5
DSH
105# Zlib stuff
106ZLIB_INCLUDE=
107LIBZLIB=
108
d83dde61
DSH
109# This is the location of fipscanister.o and friends.
110# The FIPS module build will place it $(INSTALLTOP)/lib
111# but since $(INSTALLTOP) can only take the default value
112# when the module is built it will be in /usr/local/ssl/lib
113# $(INSTALLTOP) for this build make be different so hard
114# code the path.
115
985b5ee7 116FIPSLIBDIR=/usr/local/ssl/$(LIBDIR)/
d83dde61
DSH
117
118# This is set to "y" if fipscanister.o is compiled internally as
119# opposed to coming from an external validated location.
120
121FIPSCANISTERINTERNAL=n
122
123# The location of the library which contains fipscanister.o
124# normally it will be libcrypto unless fipsdso is set in which
125# case it will be libfips. If not compiling in FIPS mode at all
126# this is empty making it a useful test for a FIPS compile.
127
128FIPSCANLIB=
129
130# Shared library base address. Currently only used on Windows.
131#
132
133BASEADDR=
134
135DIRS= crypto fips ssl engines apps test tools
136SHLIBDIRS= crypto ssl fips
0973910f 137
d02b48c6
RE
138# dirs in crypto to build
139SDIRS= \
d87b79bf 140 objects \
3009458e 141 md2 md4 md5 sha mdc2 hmac ripemd \
c3cc4662 142 des aes rc2 rc4 rc5 idea bf cast camellia seed \
67ea999d 143 bn ec rsa dsa ecdsa dh ecdh dso engine \
d87b79bf 144 buffer bio stack lhash rand err \
a5db6fa5 145 evp asn1 pem x509 x509v3 conf txt_db pkcs7 pkcs12 comp ocsp ui krb5 \
2124e869 146 store cms pqueue jpake
a24b7eeb
AP
147# keep in mind that the above list is adjusted by ./Configure
148# according to no-xxx arguments...
d02b48c6 149
f777408f
RL
150# tests to perform. "alltests" is a special word indicating that all tests
151# should be performed.
152TESTS = alltests
153
42ba5d23 154MAKEFILE= Makefile
d02b48c6 155
e1c55191 156MANDIR=$(OPENSSLDIR)/man
d02b48c6
RE
157MAN1=1
158MAN3=3
1cc087fe 159MANSUFFIX=
d02b48c6
RE
160SHELL=/bin/sh
161
58964a49 162TOP= .
d02b48c6 163ONEDIRS=out tmp
7d7d2cbc 164EDIRS= times doc bugs util include certs ms shlib mt demos perl sf dep VMS
58964a49 165WDIRS= windows
b436a982 166LIBS= libcrypto.a libssl.a
a22fb399
RL
167SHARED_CRYPTO=libcrypto$(SHLIB_EXT)
168SHARED_SSL=libssl$(SHLIB_EXT)
d83dde61 169SHARED_FIPS=
a22fb399
RL
170SHARED_LIBS=
171SHARED_LIBS_LINK_EXTS=
a5595fde 172SHARED_LDFLAGS=
58964a49
RE
173
174GENERAL= Makefile
9ce5db45 175BASENAME= openssl
58964a49
RE
176NAME= $(BASENAME)-$(VERSION)
177TARFILE= $(NAME).tar
178WTARFILE= $(NAME)-win.tar
cf1b7d96 179EXHEADER= e_os2.h
58964a49 180HEADER= e_os.h
d02b48c6 181
ef8a18f4 182all: Makefile build_all openssl.pc libssl.pc libcrypto.pc
d02b48c6 183
a24b7eeb
AP
184# as we stick to -e, CLEARENV ensures that local variables in lower
185# Makefiles remain local and variable. $${VAR+VAR} is tribute to Korn
186# shell, which [annoyingly enough] terminates unset with error if VAR
187# is not present:-( TOP= && unset TOP is tribute to HP-UX /bin/sh,
188# which terminates unset with error if no variable was present:-(
189CLEARENV= TOP= && unset TOP $${LIB+LIB} $${LIBS+LIBS} \
190 $${INCLUDE+INCLUDE} $${INCLUDES+INCLUDES} \
191 $${DIR+DIR} $${DIRS+DIRS} $${SRC+SRC} \
192 $${LIBSRC+LIBSRC} $${LIBOBJ+LIBOBJ} $${ALL+ALL} \
193 $${EXHEADER+EXHEADER} $${HEADER+HEADER} \
194 $${GENERAL+GENERAL} $${CFLAGS+CFLAGS} \
195 $${ASFLAGS+ASFLAGS} $${AFLAGS+AFLAGS} \
196 $${LDCMD+LDCMD} $${LDFLAGS+LDFLAGS} \
197 $${SHAREDCMD+SHAREDCMD} $${SHAREDFLAGS+SHAREDFLAGS} \
198 $${SHARED_LIB+SHARED_LIB} $${LIBEXTRAS+LIBEXTRAS}
199
d0590fe6 200BUILDENV= PLATFORM='${PLATFORM}' PROCESSOR='${PROCESSOR}' \
d0590fe6 201 CC='${CC}' CFLAG='${CFLAG}' \
33c3ecf7 202 AS='${CC}' ASFLAG='${CFLAG} -c' \
d0590fe6 203 AR='${AR}' PERL='${PERL}' RANLIB='${RANLIB}' \
985b5ee7 204 SDIRS='${SDIRS}' LIBRPATH='${INSTALLTOP}/$(LIBDIR)' \
7844ff73 205 INSTALL_PREFIX='${INSTALL_PREFIX}' \
7abbffc3 206 INSTALLTOP='${INSTALLTOP}' OPENSSLDIR='${OPENSSLDIR}' \
a24b7eeb 207 MAKEDEPEND='$$$${TOP}/util/domd $$$${TOP} -MD ${MAKEDEPPROG}' \
ce92b6eb
AP
208 DEPFLAG='-DOPENSSL_NO_DEPRECATED ${DEPFLAG}' \
209 MAKEDEPPROG='${MAKEDEPPROG}' \
a24b7eeb 210 SHARED_LDFLAGS='${SHARED_LDFLAGS}' \
d0590fe6
AP
211 KRB5_INCLUDES='${KRB5_INCLUDES}' LIBKRB5='${LIBKRB5}' \
212 EXE_EXT='${EXE_EXT}' SHARED_LIBS='${SHARED_LIBS}' \
213 SHLIB_EXT='${SHLIB_EXT}' SHLIB_TARGET='${SHLIB_TARGET}' \
214 PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' \
14e21f86 215 CPUID_OBJ='${CPUID_OBJ}' \
d0590fe6
AP
216 BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' \
217 AES_ASM_OBJ='${AES_ASM_OBJ}' \
218 BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' \
219 RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' \
220 SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' \
221 MD5_ASM_OBJ='${MD5_ASM_OBJ}' \
7abbffc3 222 RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' \
1ff7b649
AP
223 FIPSLIBDIR='${FIPSLIBDIR}' \
224 FIPSCANLIB="$${FIPSCANLIB:-$(FIPSCANLIB)}" \
d83dde61
DSH
225 FIPSCANISTERINTERNAL='${FIPSCANISTERINTERNAL}' \
226 FIPS_EX_OBJ='${FIPS_EX_OBJ}' \
a24b7eeb
AP
227 THIS=$${THIS:-$@} MAKEFILE=Makefile MAKEOVERRIDES=
228# MAKEOVERRIDES= effectively "equalizes" GNU-ish and SysV-ish make flavors,
229# which in turn eliminates ambiguities in variable treatment with -e.
d0590fe6 230
6b5f5e35
RL
231# BUILD_CMD is a generic macro to build a given target in a given
232# subdirectory. The target must be given through the shell variable
233# `target' and the subdirectory to build in must be given through `dir'.
234# This macro shouldn't be used directly, use RECURSIVE_BUILD_CMD or
235# BUILD_ONE_CMD instead.
236#
237# BUILD_ONE_CMD is a macro to build a given target in a given
238# subdirectory if that subdirectory is part of $(DIRS). It requires
239# exactly the same shell variables as BUILD_CMD.
240#
241# RECURSIVE_BUILD_CMD is a macro to build a given target in all
242# subdirectories defined in $(DIRS). It requires that the target
243# is given through the shell variable `target'.
a24b7eeb 244BUILD_CMD= if [ -d "$$dir" ]; then \
1ff7b649
AP
245 ( [ $$target != all -a -z "$(FIPSCANLIB)" ] && FIPSCANLIB=/dev/null; \
246 cd $$dir && echo "making $$target in $$dir..." && \
a24b7eeb
AP
247 $(CLEARENV) && $(MAKE) -e $(BUILDENV) TOP=.. DIR=$$dir $$target \
248 ) || exit 1; \
249 fi
250RECURSIVE_BUILD_CMD=for dir in $(DIRS); do $(BUILD_CMD); done
6b5f5e35
RL
251BUILD_ONE_CMD=\
252 if echo " $(DIRS) " | grep " $$dir " >/dev/null 2>/dev/null; then \
253 $(BUILD_CMD); \
254 fi
88c80b3e 255
734540f8 256reflect:
a24b7eeb 257 @[ -n "$(THIS)" ] && $(CLEARENV) && $(MAKE) $(THIS) -e $(BUILDENV)
734540f8 258
d83dde61
DSH
259FIPS_EX_OBJ= ../crypto/aes/aes_cfb.o \
260 ../crypto/aes/aes_ecb.o \
261 ../crypto/aes/aes_ofb.o \
262 ../crypto/bn/bn_add.o \
263 ../crypto/bn/bn_blind.o \
264 ../crypto/bn/bn_ctx.o \
265 ../crypto/bn/bn_div.o \
266 ../crypto/bn/bn_exp2.o \
267 ../crypto/bn/bn_exp.o \
268 ../crypto/bn/bn_gcd.o \
269 ../crypto/bn/bn_lib.o \
270 ../crypto/bn/bn_mod.o \
271 ../crypto/bn/bn_mont.o \
272 ../crypto/bn/bn_mul.o \
273 ../crypto/bn/bn_prime.o \
274 ../crypto/bn/bn_rand.o \
275 ../crypto/bn/bn_recp.o \
276 ../crypto/bn/bn_shift.o \
277 ../crypto/bn/bn_sqr.o \
278 ../crypto/bn/bn_word.o \
279 ../crypto/bn/bn_x931p.o \
280 ../crypto/buffer/buf_str.o \
281 ../crypto/cryptlib.o \
282 ../crypto/des/cfb64ede.o \
283 ../crypto/des/cfb64enc.o \
284 ../crypto/des/cfb_enc.o \
285 ../crypto/des/ecb3_enc.o \
286 ../crypto/des/ecb_enc.o \
287 ../crypto/des/ofb64ede.o \
288 ../crypto/des/ofb64enc.o \
289 ../crypto/des/fcrypt.o \
290 ../crypto/des/set_key.o \
291 ../crypto/dsa/dsa_utl.o \
292 ../crypto/dsa/dsa_sign.o \
293 ../crypto/dsa/dsa_vrf.o \
294 ../crypto/err/err.o \
295 ../crypto/evp/digest.o \
296 ../crypto/evp/enc_min.o \
297 ../crypto/evp/e_aes.o \
298 ../crypto/evp/e_des3.o \
299 ../crypto/evp/p_sign.o \
300 ../crypto/evp/p_verify.o \
301 ../crypto/mem_clr.o \
302 ../crypto/mem.o \
303 ../crypto/rand/md_rand.o \
304 ../crypto/rand/rand_egd.o \
305 ../crypto/rand/randfile.o \
306 ../crypto/rand/rand_lib.o \
307 ../crypto/rand/rand_os2.o \
308 ../crypto/rand/rand_unix.o \
309 ../crypto/rand/rand_win.o \
310 ../crypto/rsa/rsa_lib.o \
311 ../crypto/rsa/rsa_none.o \
312 ../crypto/rsa/rsa_oaep.o \
313 ../crypto/rsa/rsa_pk1.o \
314 ../crypto/rsa/rsa_pss.o \
315 ../crypto/rsa/rsa_ssl.o \
316 ../crypto/rsa/rsa_x931.o \
317 ../crypto/sha/sha1dgst.o \
318 ../crypto/sha/sha256.o \
319 ../crypto/sha/sha512.o \
320 ../crypto/uid.o
321
4c82171a 322sub_all: build_all
88c80b3e
RL
323build_all: build_libs build_apps build_tests build_tools
324
d83dde61 325build_libs: build_crypto build_fips build_ssl build_shared build_engines
88c80b3e
RL
326
327build_crypto:
d83dde61
DSH
328 if [ -n "$(FIPSCANLIB)" ]; then \
329 EXCL_OBJ='$(AES_ASM_OBJ) $(BN_ASM) $(DES_ENC) $(CPUID_OBJ) $(SHA1_ASM_OBJ) $(FIPS_EX_OBJ)' ; export EXCL_OBJ ; \
330 ARX='$(PERL) $${TOP}/util/arx.pl $(AR)' ; \
331 else \
332 ARX='${AR}' ; \
333 fi ; export ARX ; \
334 dir=crypto; target=all; $(BUILD_ONE_CMD)
335build_fips:
336 @dir=fips; target=all; [ -z "$(FIPSCANLIB)" ] || $(BUILD_ONE_CMD)
88c80b3e 337build_ssl:
6b5f5e35 338 @dir=ssl; target=all; $(BUILD_ONE_CMD)
506fec1a 339build_engines:
6b5f5e35 340 @dir=engines; target=all; $(BUILD_ONE_CMD)
88c80b3e 341build_apps:
6b5f5e35 342 @dir=apps; target=all; $(BUILD_ONE_CMD)
88c80b3e 343build_tests:
6b5f5e35 344 @dir=test; target=all; $(BUILD_ONE_CMD)
88c80b3e 345build_tools:
6b5f5e35 346 @dir=tools; target=all; $(BUILD_ONE_CMD)
ba5477eb
RL
347
348all_testapps: build_libs build_testapps
349build_testapps:
6b5f5e35 350 @dir=crypto; target=testapps; $(BUILD_ONE_CMD)
b436a982 351
d83dde61
DSH
352build_shared: $(SHARED_LIBS)
353libcrypto$(SHLIB_EXT): libcrypto.a $(SHARED_FIPS)
f4316c36 354 @if [ "$(SHLIB_TARGET)" != "" ]; then \
d83dde61
DSH
355 if [ "$(FIPSCANLIB)" = "libfips" ]; then \
356 $(ARD) libcrypto.a fipscanister.o ; \
357 $(MAKE) SHLIBDIRS='crypto' SHLIBDEPS='-lfips' build-shared; \
358 $(AR) libcrypto.a fips/fipscanister.o ; \
359 else \
360 if [ "$(FIPSCANLIB)" = "libcrypto" ]; then \
0dc1b3c1 361 FIPSLD_CC="$(CC)"; CC=fips/fipsld; \
d83dde61
DSH
362 export CC FIPSLD_CC; \
363 fi; \
364 $(MAKE) -e SHLIBDIRS='crypto' build-shared; \
365 fi \
f4316c36
RL
366 else \
367 echo "There's no support for shared libraries on this platform" >&2; \
d0590fe6 368 exit 1; \
f4316c36 369 fi
0f180d1d 370
a22fb399 371libssl$(SHLIB_EXT): libcrypto$(SHLIB_EXT) libssl.a
f4316c36 372 @if [ "$(SHLIB_TARGET)" != "" ]; then \
d83dde61
DSH
373 shlibdeps=-lcrypto; \
374 [ "$(FIPSCANLIB)" = "libfips" ] && shlibdeps="$$shlibdeps -lfips"; \
375 $(MAKE) SHLIBDIRS=ssl SHLIBDEPS="$$shlibdeps" build-shared; \
376 else \
377 echo "There's no support for shared libraries on this platform" >&2 ; \
378 exit 1; \
379 fi
380
381fips/fipscanister.o: build_fips
382libfips$(SHLIB_EXT): fips/fipscanister.o
383 @if [ "$(SHLIB_TARGET)" != "" ]; then \
0dc1b3c1 384 FIPSLD_CC="$(CC)"; CC=fips/fipsld; export CC FIPSLD_CC; \
d83dde61
DSH
385 $(MAKE) -f Makefile.shared -e $(BUILDENV) \
386 CC=$${CC} LIBNAME=fips THIS=$@ \
387 LIBEXTRAS=fips/fipscanister.o \
388 LIBDEPS="$(EX_LIBS)" \
389 LIBVERSION=${SHLIB_MAJOR}.${SHLIB_MINOR} \
390 link_o.$(SHLIB_TARGET) || { rm -f $@; exit 1; } \
f4316c36
RL
391 else \
392 echo "There's no support for shared libraries on this platform" >&2; \
d0590fe6 393 exit 1; \
f4316c36 394 fi
b436a982 395
d83dde61
DSH
396libfips.a:
397 dir=fips; target=all; $(BUILD_ONE_CMD)
398
b436a982 399clean-shared:
cfd06a62 400 @set -e; for i in $(SHLIBDIRS); do \
a22fb399
RL
401 if [ -n "$(SHARED_LIBS_LINK_EXTS)" ]; then \
402 tmp="$(SHARED_LIBS_LINK_EXTS)"; \
403 for j in $${tmp:-x}; do \
404 ( set -x; rm -f lib$$i$$j ); \
405 done; \
406 fi; \
407 ( set -x; rm -f lib$$i$(SHLIB_EXT) ); \
49e04548 408 if [ "$(PLATFORM)" = "Cygwin" ]; then \
1fe198b6
RL
409 ( set -x; rm -f cyg$$i$(SHLIB_EXT) lib$$i$(SHLIB_EXT).a ); \
410 fi; \
b436a982 411 done
d02b48c6 412
a22fb399 413link-shared:
cfd06a62 414 @ set -e; for i in ${SHLIBDIRS}; do \
3bfe024d 415 $(MAKE) -f $(HERE)/Makefile.shared -e $(BUILDENV) \
30afcc07
RL
416 LIBNAME=$$i LIBVERSION=${SHLIB_MAJOR}.${SHLIB_MINOR} \
417 LIBCOMPATVERSIONS=";${SHLIB_VERSION_HISTORY}" \
418 symlink.$(SHLIB_TARGET); \
6b86bad5 419 libs="$$libs -l$$i"; \
0fd44e2d
RL
420 done
421
30afcc07
RL
422build-shared: do_$(SHLIB_TARGET) link-shared
423
424do_$(SHLIB_TARGET):
cfd06a62 425 @ set -e; libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \
c1269c81
RL
426 if [ "${SHLIBDIRS}" = "ssl" -a -n "$(LIBKRB5)" ]; then \
427 libs="$(LIBKRB5) $$libs"; \
428 fi; \
a24b7eeb 429 $(CLEARENV) && $(MAKE) -f Makefile.shared -e $(BUILDENV) \
30afcc07
RL
430 LIBNAME=$$i LIBVERSION=${SHLIB_MAJOR}.${SHLIB_MINOR} \
431 LIBCOMPATVERSIONS=";${SHLIB_VERSION_HISTORY}" \
432 LIBDEPS="$$libs $(EX_LIBS)" \
433 link_a.$(SHLIB_TARGET); \
c1269c81 434 libs="-l$$i $$libs"; \
a3fffd64
RL
435 done
436
ef8a18f4
RL
437libcrypto.pc: Makefile
438 @ ( echo 'prefix=$(INSTALLTOP)'; \
439 echo 'exec_prefix=$${prefix}'; \
985b5ee7 440 echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
ef8a18f4
RL
441 echo 'includedir=$${prefix}/include'; \
442 echo ''; \
443 echo 'Name: OpenSSL-libcrypto'; \
444 echo 'Description: OpenSSL cryptography library'; \
445 echo 'Version: '$(VERSION); \
446 echo 'Requires: '; \
447 echo 'Libs: -L$${libdir} -lcrypto $(EX_LIBS)'; \
448 echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libcrypto.pc
449
450libssl.pc: Makefile
451 @ ( echo 'prefix=$(INSTALLTOP)'; \
452 echo 'exec_prefix=$${prefix}'; \
985b5ee7 453 echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
ef8a18f4
RL
454 echo 'includedir=$${prefix}/include'; \
455 echo ''; \
456 echo 'Name: OpenSSL'; \
457 echo 'Description: Secure Sockets Layer and cryptography libraries'; \
458 echo 'Version: '$(VERSION); \
459 echo 'Requires: '; \
460 echo 'Libs: -L$${libdir} -lssl -lcrypto $(EX_LIBS)'; \
461 echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libssl.pc
462
42ba5d23 463openssl.pc: Makefile
56824b96
RL
464 @ ( echo 'prefix=$(INSTALLTOP)'; \
465 echo 'exec_prefix=$${prefix}'; \
985b5ee7 466 echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
56824b96
RL
467 echo 'includedir=$${prefix}/include'; \
468 echo ''; \
469 echo 'Name: OpenSSL'; \
470 echo 'Description: Secure Sockets Layer and cryptography libraries and tools'; \
471 echo 'Version: '$(VERSION); \
472 echo 'Requires: '; \
473 echo 'Libs: -L$${libdir} -lssl -lcrypto $(EX_LIBS)'; \
49be7042 474 echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > openssl.pc
56824b96 475
c7199e62
BL
476Makefile: Makefile.org Configure config
477 @echo "Makefile is older than Makefile.org, Configure or config."
49b81422 478 @echo "Reconfigure the source tree (via './config' or 'perl Configure'), please."
9535d202
BL
479 @false
480
dfeab068 481libclean:
15da07d4 482 rm -f *.map *.so *.so.* *.dll engines/*.so engines/*.dll *.a engines/*.a */lib */*/lib
dfeab068 483
7841edc9
RL
484clean: libclean
485 rm -f shlib/*.o *.o core a.out fluff rehash.time testlog make.log cctest cctest.c
a24b7eeb
AP
486 @set -e; target=clean; $(RECURSIVE_BUILD_CMD)
487 rm -f $(LIBS)
ef8a18f4 488 rm -f openssl.pc libssl.pc libcrypto.pc
7841edc9 489 rm -f speed.* .pure
bb8f3c58 490 rm -f $(TARFILE)
cfd06a62 491 @set -e; for i in $(ONEDIRS) ;\
d02b48c6 492 do \
bb8f3c58 493 rm -fr $$i/*; \
d02b48c6
RE
494 done
495
496makefile.one: files
99aab161 497 $(PERL) util/mk1mf.pl >makefile.one; \
d02b48c6
RE
498 sh util/do_ms.sh
499
bacad008 500files:
42ba5d23 501 $(PERL) $(TOP)/util/files.pl Makefile > $(TOP)/MINFO
a24b7eeb 502 @set -e; target=files; $(RECURSIVE_BUILD_CMD)
d02b48c6
RE
503
504links:
6576774b 505 @$(PERL) $(TOP)/util/mkdir-p.pl include/openssl
41d2a336 506 @$(PERL) $(TOP)/util/mklink.pl include/openssl $(EXHEADER)
a24b7eeb 507 @set -e; target=links; $(RECURSIVE_BUILD_CMD)
b7650eb2
DSH
508 @if [ -z "$(FIPSCANLIB)" ]; then \
509 set -e; target=links; dir=fips ; $(BUILD_CMD) ; \
98448a53 510 fi
d02b48c6 511
1cc67fa8
RL
512gentests:
513 @(cd test && echo "generating dummy tests (if needed)..." && \
a24b7eeb 514 $(CLEARENV) && $(MAKE) -e $(BUILDENV) TESTS='${TESTS}' OPENSSL_DEBUG_MEMORY=on generate );
1cc67fa8 515
d02b48c6 516dclean:
bb8f3c58 517 rm -f *.bak
a24b7eeb 518 @set -e; target=dclean; $(RECURSIVE_BUILD_CMD)
d02b48c6 519
e6e7b5f3
BM
520rehash: rehash.time
521rehash.time: certs
62d27939
AP
522 @(OPENSSL="`pwd`/util/opensslwrap.sh"; \
523 OPENSSL_DEBUG_MEMORY=on; \
69c922f5 524 export OPENSSL OPENSSL_DEBUG_MEMORY; \
69c922f5 525 $(PERL) tools/c_rehash certs)
3ebf0be1 526 touch rehash.time
d02b48c6 527
58964a49 528test: tests
d02b48c6 529
73bfb9ad 530tests: rehash
bb8f3c58 531 @(cd test && echo "testing..." && \
a24b7eeb 532 $(CLEARENV) && $(MAKE) -e $(BUILDENV) TOP=.. TESTS='${TESTS}' OPENSSL_DEBUG_MEMORY=on tests );
62d27939 533 util/opensslwrap.sh version -a
d02b48c6 534
d7f0ab5f
UM
535report:
536 @$(PERL) util/selftest.pl
537
d02b48c6 538depend:
a24b7eeb 539 @set -e; target=depend; $(RECURSIVE_BUILD_CMD)
d02b48c6
RE
540
541lint:
a24b7eeb 542 @set -e; target=lint; $(RECURSIVE_BUILD_CMD)
d02b48c6
RE
543
544tags:
a273a282
BL
545 rm -f TAGS
546 find . -name '[^.]*.[ch]' | xargs etags -a
d02b48c6
RE
547
548errors:
f6485909 549 $(PERL) util/mkerr.pl -recurse -write
506fec1a 550 (cd engines; $(MAKE) PERL=$(PERL) errors)
fbeaa3c4 551 $(PERL) util/ck_errf.pl */*.c */*/*.c
d02b48c6 552
e41c8d6a 553stacks:
f6485909 554 $(PERL) util/mkstack.pl -write
e41c8d6a 555
7740a1c6 556util/libeay.num::
f6485909 557 $(PERL) util/mkdef.pl crypto update
7740a1c6
BM
558
559util/ssleay.num::
f6485909 560 $(PERL) util/mkdef.pl ssl update
7740a1c6 561
1d00800e 562crypto/objects/obj_dat.h: crypto/objects/obj_dat.pl crypto/objects/obj_mac.h
f6485909 563 $(PERL) crypto/objects/obj_dat.pl crypto/objects/obj_mac.h crypto/objects/obj_dat.h
0357422d 564crypto/objects/obj_mac.h: crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num
f6485909 565 $(PERL) crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num crypto/objects/obj_mac.h
49e747e6 566
2faa930b
RL
567apps/openssl-vms.cnf: apps/openssl.cnf
568 $(PERL) VMS/VMSify-conf.pl < apps/openssl.cnf > apps/openssl-vms.cnf
569
d8e64093
RL
570crypto/bn/bn_prime.h: crypto/bn/bn_prime.pl
571 $(PERL) crypto/bn/bn_prime.pl >crypto/bn/bn_prime.h
572
573
62c419d6 574TABLE: Configure
2330e18b 575 (echo 'Output of `Configure TABLE'"':"; \
f6485909 576 $(PERL) Configure TABLE) > TABLE
7740a1c6 577
d8e64093 578update: errors stacks util/libeay.num util/ssleay.num crypto/objects/obj_dat.h apps/openssl-vms.cnf crypto/bn/bn_prime.h TABLE depend
7740a1c6 579
f9de8446
LJ
580# Build distribution tar-file. As the list of files returned by "find" is
581# pretty long, on several platforms a "too many arguments" error or similar
582# would occur. Therefore the list of files is temporarily stored into a file
583# and read directly, requiring GNU-Tar. Call "make TAR=gtar dist" if the normal
584# tar does not support the --files-from option.
d02b48c6 585tar:
756b9a00
LJ
586 find . -type d -print | xargs chmod 755
587 find . -type f -print | xargs chmod a+r
588 find . -type f -perm -0100 -print | xargs chmod a+x
f9de8446
LJ
589 find * \! -path CVS/\* \! -path \*/CVS/\* \! -name CVS \! -name .cvsignore \! -name STATUS \! -name TABLE | sort > ../$(TARFILE).list; \
590 $(TAR) $(TARFLAGS) --files-from ../$(TARFILE).list -cvf - | \
5a061129 591 tardy --user_number=0 --user_name=openssl \
9ce5db45
RE
592 --group_number=0 --group_name=openssl \
593 --prefix=openssl-$(VERSION) - |\
651d0aff 594 gzip --best >../$(TARFILE).gz; \
f9de8446 595 rm -f ../$(TARFILE).list; \
651d0aff 596 ls -l ../$(TARFILE).gz
d02b48c6 597
41d2a336
RL
598tar-snap:
599 @$(TAR) $(TARFLAGS) -cvf - \
3a7cef3e 600 `find * \! -path CVS/\* \! -path \*/CVS/\* \! -name CVS \! -name .cvsignore \! -name STATUS \! -name TABLE \! -name '*.o' \! -name '*.a' \! -name '*.so' \! -name '*.so.*' \! -name 'openssl' \! -name '*test' \! -name '.#*' \! -name '*~' | sort` |\
41d2a336
RL
601 tardy --user_number=0 --user_name=openssl \
602 --group_number=0 --group_name=openssl \
603 --prefix=openssl-$(VERSION) - > ../$(TARFILE);\
604 ls -l ../$(TARFILE)
605
58964a49 606dist:
99aab161 607 $(PERL) Configure dist
d02b48c6
RE
608 @$(MAKE) dist_pem_h
609 @$(MAKE) SDIRS='${SDIRS}' clean
870d3d55 610 @$(MAKE) TAR='${TAR}' TARFLAGS='${TARFLAGS}' tar
d02b48c6
RE
611
612dist_pem_h:
a24b7eeb 613 (cd crypto/pem; $(MAKE) -e $(BUILDENV) pem.h; $(MAKE) clean)
d02b48c6 614
28a80034
RL
615install: all install_docs install_sw
616
617install_sw:
f0588887 618 @$(PERL) $(TOP)/util/mkdir-p.pl $(INSTALL_PREFIX)$(INSTALLTOP)/bin \
985b5ee7
DSH
619 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR) \
620 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines \
621 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig \
f0588887
BM
622 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl \
623 $(INSTALL_PREFIX)$(OPENSSLDIR)/misc \
624 $(INSTALL_PREFIX)$(OPENSSLDIR)/certs \
8d472bdd 625 $(INSTALL_PREFIX)$(OPENSSLDIR)/private
a2ac429d 626 @set -e; headerlist="$(EXHEADER)"; for i in $$headerlist;\
2a4a0a34
BM
627 do \
628 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
629 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
630 done;
a24b7eeb 631 @set -e; target=install; $(RECURSIVE_BUILD_CMD)
cfd06a62 632 @set -e; for i in $(LIBS) ;\
d02b48c6 633 do \
b436a982
RL
634 if [ -f "$$i" ]; then \
635 ( echo installing $$i; \
985b5ee7
DSH
636 cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
637 $(RANLIB) $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
638 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
639 mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i ); \
2c975b50
LJ
640 fi; \
641 done;
cfd06a62 642 @set -e; if [ -n "$(SHARED_LIBS)" ]; then \
a22fb399
RL
643 tmp="$(SHARED_LIBS)"; \
644 for i in $${tmp:-x}; \
645 do \
1fe198b6 646 if [ -f "$$i" -o -f "$$i.a" ]; then \
a22fb399 647 ( echo installing $$i; \
49e04548 648 if [ "$(PLATFORM)" != "Cygwin" ]; then \
985b5ee7
DSH
649 cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
650 chmod 555 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
651 mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i; \
1fe198b6 652 else \
15da07d4 653 c=`echo $$i | sed 's/^lib\(.*\)\.dll\.a/cyg\1-$(SHLIB_VERSION_NUMBER).dll/'`; \
7104c376
RL
654 cp $$c $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
655 chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
30c08f2e 656 mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c; \
985b5ee7
DSH
657 cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
658 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
659 mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i; \
1fe198b6 660 fi ); \
2c975b50 661 fi; \
a22fb399
RL
662 done; \
663 ( here="`pwd`"; \
985b5ee7 664 cd $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR); \
4c3a2d64 665 $(MAKE) -f $$here/Makefile HERE="$$here" link-shared ); \
e68cb95d
RL
666 if [ "$(INSTALLTOP)" != "/usr" ]; then \
667 echo 'OpenSSL shared libraries have been installed in:'; \
668 echo ' $(INSTALLTOP)'; \
669 echo ''; \
c0cc5c30 670 sed -e '1,/^$$/d' doc/openssl-shared.txt; \
e68cb95d 671 fi; \
a22fb399 672 fi
985b5ee7
DSH
673 cp libcrypto.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
674 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libcrypto.pc
675 cp libssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
676 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libssl.pc
677 cp openssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
678 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/openssl.pc
e6e7b5f3
BM
679
680install_docs:
681 @$(PERL) $(TOP)/util/mkdir-p.pl \
e1c55191
UM
682 $(INSTALL_PREFIX)$(MANDIR)/man1 \
683 $(INSTALL_PREFIX)$(MANDIR)/man3 \
684 $(INSTALL_PREFIX)$(MANDIR)/man5 \
685 $(INSTALL_PREFIX)$(MANDIR)/man7
623e9e66 686 @pod2man="`cd util; ./pod2mantest $(PERL)`"; \
ec9f67f6
RL
687 here="`pwd`"; \
688 filecase=; \
94c1672e 689 if [ "$(PLATFORM)" = "DJGPP" -o "$(PLATFORM)" = "Cygwin" -o "$(PLATFORM)" = "mingw" ]; then \
ec9f67f6
RL
690 filecase=-i; \
691 fi; \
cfd06a62 692 set -e; for i in doc/apps/*.pod; do \
c6ce792f 693 fn=`basename $$i .pod`; \
401ee37a 694 sec=`$(PERL) util/extract-section.pl 1 < $$i`; \
1cc087fe 695 echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
d13363af 696 (cd `$(PERL) util/dirname.pl $$i`; \
623e9e66 697 sh -c "$$pod2man \
2962243d
RL
698 --section=$$sec --center=OpenSSL \
699 --release=$(VERSION) `basename $$i`") \
1cc087fe 700 > $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
ec9f67f6 701 $(PERL) util/extract-names.pl < $$i | \
a4ae7466
RL
702 (grep -v $$filecase "^$$fn\$$"; true) | \
703 (grep -v "[ ]"; true) | \
ec9f67f6
RL
704 (cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
705 while read n; do \
49096719 706 $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
ec9f67f6 707 done); \
f6f99618 708 done; \
cfd06a62 709 set -e; for i in doc/crypto/*.pod doc/ssl/*.pod; do \
c6ce792f 710 fn=`basename $$i .pod`; \
401ee37a 711 sec=`$(PERL) util/extract-section.pl 3 < $$i`; \
1cc087fe 712 echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
d13363af 713 (cd `$(PERL) util/dirname.pl $$i`; \
623e9e66 714 sh -c "$$pod2man \
2962243d
RL
715 --section=$$sec --center=OpenSSL \
716 --release=$(VERSION) `basename $$i`") \
1cc087fe 717 > $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
ec9f67f6 718 $(PERL) util/extract-names.pl < $$i | \
a4ae7466
RL
719 (grep -v $$filecase "^$$fn\$$"; true) | \
720 (grep -v "[ ]"; true) | \
ec9f67f6
RL
721 (cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
722 while read n; do \
49096719 723 $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
ec9f67f6 724 done); \
c6ce792f 725 done
d02b48c6
RE
726
727# DO NOT DELETE THIS LINE -- make depend depends on it.