]> git.ipfire.org Git - thirdparty/openssl.git/blame - Makefile.org
Fix unused variable warning
[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
99aab161 68RANLIB= ranlib
cbfb39d1 69NM= nm
99aab161 70PERL= perl
2dbb3ccd 71TAR= tar
63977104 72TARFLAGS= --no-recursion
cf1b7d96 73MAKEDEPPROG=makedepend
6727565a 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.
f072785e 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
6019cdd3 91EC_ASM=
67ea999d 92DES_ENC= des_enc.o fcrypt_b.o
0ddd3ea2 93AES_ENC= aes_core.o aes_cbc.o
67ea999d
AP
94BF_ENC= bf_enc.o
95CAST_ENC= c_enc.o
96RC4_ENC= rc4_enc.o
97RC5_ENC= rc5_enc.o
98MD5_ASM_OBJ=
99SHA1_ASM_OBJ=
100RMD160_ASM_OBJ=
ed26604a 101WP_ASM_OBJ=
6a8517f2 102CMLL_ENC=
8a1c92ce 103MODES_ASM_OBJ=
ed28aef8 104ENGINES_ASM_OBJ=
fa8e921f 105PERLASM_SCHEME=
58964a49 106
f9b3bff6
RL
107# KRB5 stuff
108KRB5_INCLUDES=
c1269c81 109LIBKRB5=
f9b3bff6 110
ad2695b1
DSH
111# Zlib stuff
112ZLIB_INCLUDE=
113LIBZLIB=
114
1ab2f7f1
DSH
115# This is the location of fipscanister.o and friends.
116# The FIPS module build will place it $(INSTALLTOP)/lib
117# but since $(INSTALLTOP) can only take the default value
118# when the module is built it will be in /usr/local/ssl/lib
5084af28 119# $(INSTALLTOP) for this build may be different so hard
1ab2f7f1
DSH
120# code the path.
121
122FIPSLIBDIR=/usr/local/ssl/$(LIBDIR)/
123
1ab2f7f1 124# The location of the library which contains fipscanister.o
f072785e
DSH
125# normally it will be libcrypto. If not compiling in FIPS mode
126# at all this is empty making it a useful test for a FIPS compile.
1ab2f7f1
DSH
127
128FIPSCANLIB=
129
130# Shared library base address. Currently only used on Windows.
131#
132
133BASEADDR=
134
71a5f534 135DIRS= crypto ssl engines apps test tools
ef236ec3 136ENGDIRS= ccgost
0973910f
UM
137SHLIBDIRS= crypto ssl
138
d02b48c6
RE
139# dirs in crypto to build
140SDIRS= \
d87b79bf 141 objects \
d1593e6b 142 md2 md4 md5 sha mdc2 hmac ripemd whrlpool \
5d48a66a 143 des aes rc2 rc4 rc5 idea bf cast camellia seed modes \
67ea999d 144 bn ec rsa dsa ecdsa dh ecdh dso engine \
d87b79bf 145 buffer bio stack lhash rand err \
a5db6fa5 146 evp asn1 pem x509 x509v3 conf txt_db pkcs7 pkcs12 comp ocsp ui krb5 \
edc032b5 147 cms pqueue ts jpake srp store cmac
02c31fa4
AP
148# keep in mind that the above list is adjusted by ./Configure
149# according to no-xxx arguments...
d02b48c6 150
f777408f
RL
151# tests to perform. "alltests" is a special word indicating that all tests
152# should be performed.
153TESTS = alltests
154
42ba5d23 155MAKEFILE= Makefile
d02b48c6 156
e1c55191 157MANDIR=$(OPENSSLDIR)/man
d02b48c6
RE
158MAN1=1
159MAN3=3
1cc087fe 160MANSUFFIX=
60cdb821
UM
161HTMLSUFFIX=html
162HTMLDIR=$(OPENSSLDIR)/html
d02b48c6
RE
163SHELL=/bin/sh
164
58964a49 165TOP= .
d02b48c6 166ONEDIRS=out tmp
7d7d2cbc 167EDIRS= times doc bugs util include certs ms shlib mt demos perl sf dep VMS
58964a49 168WDIRS= windows
b436a982 169LIBS= libcrypto.a libssl.a
a22fb399
RL
170SHARED_CRYPTO=libcrypto$(SHLIB_EXT)
171SHARED_SSL=libssl$(SHLIB_EXT)
172SHARED_LIBS=
173SHARED_LIBS_LINK_EXTS=
a5595fde 174SHARED_LDFLAGS=
58964a49
RE
175
176GENERAL= Makefile
9ce5db45 177BASENAME= openssl
58964a49
RE
178NAME= $(BASENAME)-$(VERSION)
179TARFILE= $(NAME).tar
180WTARFILE= $(NAME)-win.tar
cf1b7d96 181EXHEADER= e_os2.h
58964a49 182HEADER= e_os.h
d02b48c6 183
0962fbbf 184all: Makefile build_all openssl.pc libssl.pc libcrypto.pc
d02b48c6 185
02c31fa4 186# as we stick to -e, CLEARENV ensures that local variables in lower
a41b0aad
AP
187# Makefiles remain local and variable. $${VAR+VAR} is tribute to Korn
188# shell, which [annoyingly enough] terminates unset with error if VAR
189# is not present:-( TOP= && unset TOP is tribute to HP-UX /bin/sh,
190# which terminates unset with error if no variable was present:-(
191CLEARENV= TOP= && unset TOP $${LIB+LIB} $${LIBS+LIBS} \
02c31fa4
AP
192 $${INCLUDE+INCLUDE} $${INCLUDES+INCLUDES} \
193 $${DIR+DIR} $${DIRS+DIRS} $${SRC+SRC} \
194 $${LIBSRC+LIBSRC} $${LIBOBJ+LIBOBJ} $${ALL+ALL} \
195 $${EXHEADER+EXHEADER} $${HEADER+HEADER} \
196 $${GENERAL+GENERAL} $${CFLAGS+CFLAGS} \
197 $${ASFLAGS+ASFLAGS} $${AFLAGS+AFLAGS} \
dce1cc2a 198 $${LDCMD+LDCMD} $${LDFLAGS+LDFLAGS} $${SCRIPTS+SCRIPTS} \
2f3c39bc 199 $${SHAREDCMD+SHAREDCMD} $${SHAREDFLAGS+SHAREDFLAGS} \
02c31fa4
AP
200 $${SHARED_LIB+SHARED_LIB} $${LIBEXTRAS+LIBEXTRAS}
201
a370537b
AP
202BUILDENV= PLATFORM='$(PLATFORM)' PROCESSOR='$(PROCESSOR)' \
203 CC='$(CC)' CFLAG='$(CFLAG)' \
f072785e 204 AS='$(CC)' ASFLAG='$(CFLAG) -c' \
a370537b 205 AR='$(AR)' NM='$(NM)' RANLIB='$(RANLIB)' \
34775923 206 CROSS_COMPILE='$(CROSS_COMPILE)' \
ef236ec3 207 PERL='$(PERL)' ENGDIRS='$(ENGDIRS)' \
6727565a 208 SDIRS='$(SDIRS)' LIBRPATH='$(INSTALLTOP)/$(LIBDIR)' \
a370537b
AP
209 INSTALL_PREFIX='$(INSTALL_PREFIX)' \
210 INSTALLTOP='$(INSTALLTOP)' OPENSSLDIR='$(OPENSSLDIR)' \
19c5314f 211 LIBDIR='$(LIBDIR)' \
a370537b
AP
212 MAKEDEPEND='$$$${TOP}/util/domd $$$${TOP} -MD $(MAKEDEPPROG)' \
213 DEPFLAG='-DOPENSSL_NO_DEPRECATED $(DEPFLAG)' \
214 MAKEDEPPROG='$(MAKEDEPPROG)' \
215 SHARED_LDFLAGS='$(SHARED_LDFLAGS)' \
216 KRB5_INCLUDES='$(KRB5_INCLUDES)' LIBKRB5='$(LIBKRB5)' \
cc7399e7 217 ZLIB_INCLUDE='$(ZLIB_INCLUDE)' LIBZLIB='$(LIBZLIB)' \
a370537b
AP
218 EXE_EXT='$(EXE_EXT)' SHARED_LIBS='$(SHARED_LIBS)' \
219 SHLIB_EXT='$(SHLIB_EXT)' SHLIB_TARGET='$(SHLIB_TARGET)' \
220 PEX_LIBS='$(PEX_LIBS)' EX_LIBS='$(EX_LIBS)' \
6019cdd3
AP
221 CPUID_OBJ='$(CPUID_OBJ)' BN_ASM='$(BN_ASM)' \
222 EC_ASM='$(EC_ASM)' DES_ENC='$(DES_ENC)' \
a370537b
AP
223 AES_ENC='$(AES_ENC)' CMLL_ENC='$(CMLL_ENC)' \
224 BF_ENC='$(BF_ENC)' CAST_ENC='$(CAST_ENC)' \
225 RC4_ENC='$(RC4_ENC)' RC5_ENC='$(RC5_ENC)' \
226 SHA1_ASM_OBJ='$(SHA1_ASM_OBJ)' \
227 MD5_ASM_OBJ='$(MD5_ASM_OBJ)' \
228 RMD160_ASM_OBJ='$(RMD160_ASM_OBJ)' \
229 WP_ASM_OBJ='$(WP_ASM_OBJ)' \
8a1c92ce 230 MODES_ASM_OBJ='$(MODES_ASM_OBJ)' \
ed28aef8 231 ENGINES_ASM_OBJ='$(ENGINES_ASM_OBJ)' \
a370537b 232 PERLASM_SCHEME='$(PERLASM_SCHEME)' \
1ab2f7f1
DSH
233 FIPSLIBDIR='${FIPSLIBDIR}' \
234 FIPSCANLIB="$${FIPSCANLIB:-$(FIPSCANLIB)}" \
1ab2f7f1 235 FIPS_EX_OBJ='${FIPS_EX_OBJ}' \
02c31fa4
AP
236 THIS=$${THIS:-$@} MAKEFILE=Makefile MAKEOVERRIDES=
237# MAKEOVERRIDES= effectively "equalizes" GNU-ish and SysV-ish make flavors,
238# which in turn eliminates ambiguities in variable treatment with -e.
d0590fe6 239
b480283c
RL
240# BUILD_CMD is a generic macro to build a given target in a given
241# subdirectory. The target must be given through the shell variable
242# `target' and the subdirectory to build in must be given through `dir'.
243# This macro shouldn't be used directly, use RECURSIVE_BUILD_CMD or
244# BUILD_ONE_CMD instead.
245#
246# BUILD_ONE_CMD is a macro to build a given target in a given
247# subdirectory if that subdirectory is part of $(DIRS). It requires
248# exactly the same shell variables as BUILD_CMD.
249#
250# RECURSIVE_BUILD_CMD is a macro to build a given target in all
251# subdirectories defined in $(DIRS). It requires that the target
252# is given through the shell variable `target'.
02c31fa4
AP
253BUILD_CMD= if [ -d "$$dir" ]; then \
254 ( cd $$dir && echo "making $$target in $$dir..." && \
255 $(CLEARENV) && $(MAKE) -e $(BUILDENV) TOP=.. DIR=$$dir $$target \
256 ) || exit 1; \
257 fi
258RECURSIVE_BUILD_CMD=for dir in $(DIRS); do $(BUILD_CMD); done
f5ce5e14 259BUILD_ONE_CMD=\
b3b201b6 260 if expr " $(DIRS) " : ".* $$dir " >/dev/null 2>&1; then \
f5ce5e14
RL
261 $(BUILD_CMD); \
262 fi
88c80b3e 263
734540f8 264reflect:
02c31fa4 265 @[ -n "$(THIS)" ] && $(CLEARENV) && $(MAKE) $(THIS) -e $(BUILDENV)
734540f8 266
1ab2f7f1
DSH
267FIPS_EX_OBJ= ../crypto/aes/aes_cfb.o \
268 ../crypto/aes/aes_ecb.o \
269 ../crypto/aes/aes_ofb.o \
270 ../crypto/bn/bn_add.o \
271 ../crypto/bn/bn_blind.o \
272 ../crypto/bn/bn_ctx.o \
273 ../crypto/bn/bn_div.o \
274 ../crypto/bn/bn_exp2.o \
275 ../crypto/bn/bn_exp.o \
276 ../crypto/bn/bn_gcd.o \
fe26d066 277 ../crypto/bn/bn_gf2m.o \
1ab2f7f1
DSH
278 ../crypto/bn/bn_lib.o \
279 ../crypto/bn/bn_mod.o \
280 ../crypto/bn/bn_mont.o \
281 ../crypto/bn/bn_mul.o \
fe26d066 282 ../crypto/bn/bn_nist.o \
1ab2f7f1
DSH
283 ../crypto/bn/bn_prime.o \
284 ../crypto/bn/bn_rand.o \
285 ../crypto/bn/bn_recp.o \
286 ../crypto/bn/bn_shift.o \
287 ../crypto/bn/bn_sqr.o \
288 ../crypto/bn/bn_word.o \
289 ../crypto/bn/bn_x931p.o \
290 ../crypto/buffer/buf_str.o \
399aa6b5 291 ../crypto/cmac/cmac.o \
1ab2f7f1
DSH
292 ../crypto/cryptlib.o \
293 ../crypto/des/cfb64ede.o \
294 ../crypto/des/cfb64enc.o \
295 ../crypto/des/cfb_enc.o \
296 ../crypto/des/ecb3_enc.o \
297 ../crypto/des/ofb64ede.o \
298 ../crypto/des/fcrypt.o \
299 ../crypto/des/set_key.o \
300 ../crypto/dh/dh_check.o \
301 ../crypto/dh/dh_gen.o \
302 ../crypto/dh/dh_key.o \
303 ../crypto/dsa/dsa_gen.o \
304 ../crypto/dsa/dsa_key.o \
305 ../crypto/dsa/dsa_ossl.o \
fe26d066
DSH
306 ../crypto/ec/ec_curve.o \
307 ../crypto/ec/ec_cvt.o \
308 ../crypto/ec/ec_key.o \
309 ../crypto/ec/ec_lib.o \
310 ../crypto/ec/ecp_mont.o \
311 ../crypto/ec/ec_mult.o \
312 ../crypto/ec/ecp_nist.o \
313 ../crypto/ec/ecp_smpl.o \
314 ../crypto/ec/ec2_mult.o \
315 ../crypto/ec/ec2_smpl.o \
8857b380
DSH
316 ../crypto/ecdh/ech_key.o \
317 ../crypto/ecdh/ech_ossl.o \
fe26d066 318 ../crypto/ecdsa/ecs_ossl.o \
1ab2f7f1
DSH
319 ../crypto/evp/e_aes.o \
320 ../crypto/evp/e_des3.o \
9ebc37e6 321 ../crypto/evp/e_null.o \
1ab2f7f1 322 ../crypto/evp/m_sha1.o \
bce1af77
DSH
323 ../crypto/evp/m_dss1.o \
324 ../crypto/evp/m_dss.o \
325 ../crypto/evp/m_ecdsa.o \
1ab2f7f1 326 ../crypto/hmac/hmac.o \
7a4ec19a 327 ../crypto/modes/cbc128.o \
23916810 328 ../crypto/modes/ccm128.o \
1ab2f7f1
DSH
329 ../crypto/modes/cfb128.o \
330 ../crypto/modes/ctr128.o \
f4001a0d 331 ../crypto/modes/gcm128.o \
1ab2f7f1 332 ../crypto/modes/ofb128.o \
114c8e22 333 ../crypto/modes/xts128.o \
1ab2f7f1
DSH
334 ../crypto/rsa/rsa_eay.o \
335 ../crypto/rsa/rsa_gen.o \
336 ../crypto/rsa/rsa_crpt.o \
337 ../crypto/rsa/rsa_none.o \
338 ../crypto/rsa/rsa_oaep.o \
339 ../crypto/rsa/rsa_pk1.o \
340 ../crypto/rsa/rsa_pss.o \
341 ../crypto/rsa/rsa_ssl.o \
342 ../crypto/rsa/rsa_x931.o \
c2a45931 343 ../crypto/rsa/rsa_x931g.o \
1ab2f7f1
DSH
344 ../crypto/sha/sha1dgst.o \
345 ../crypto/sha/sha256.o \
346 ../crypto/sha/sha512.o \
d5df1b3f 347 ../crypto/thr_id.o \
1ab2f7f1
DSH
348 ../crypto/uid.o
349
4c82171a 350sub_all: build_all
c3f22253 351
88c80b3e
RL
352build_all: build_libs build_apps build_tests build_tools
353
f072785e 354build_libs: build_crypto build_ssl build_engines
88c80b3e
RL
355
356build_crypto:
f072785e 357 @dir=crypto; target=all; $(BUILD_ONE_CMD)
c3f22253 358build_ssl: build_crypto
f5ce5e14 359 @dir=ssl; target=all; $(BUILD_ONE_CMD)
c3f22253 360build_engines: build_crypto
ed28aef8 361 @dir=engines; target=all; AS='$(CC) -c'; export AS; $(BUILD_ONE_CMD)
c3f22253
RS
362
363build_apps: build_libs
f5ce5e14 364 @dir=apps; target=all; $(BUILD_ONE_CMD)
c3f22253 365build_tests: build_libs
f5ce5e14 366 @dir=test; target=all; $(BUILD_ONE_CMD)
c3f22253 367build_tools: build_libs
f5ce5e14 368 @dir=tools; target=all; $(BUILD_ONE_CMD)
ba5477eb
RL
369
370all_testapps: build_libs build_testapps
371build_testapps:
f5ce5e14 372 @dir=crypto; target=testapps; $(BUILD_ONE_CMD)
b436a982 373
f072785e 374libcrypto$(SHLIB_EXT): libcrypto.a
f4316c36 375 @if [ "$(SHLIB_TARGET)" != "" ]; then \
225c2721
DSH
376 if [ "$(FIPSCANLIB)" = "libcrypto" ]; then \
377 FIPSLD_CC="$(CC)"; CC=fips/fipsld; \
378 export CC FIPSLD_CC; \
379 fi; \
24e20db4 380 $(MAKE) -e SHLIBDIRS=crypto CC="$${CC:-$(CC)}" build-shared; \
f4316c36
RL
381 else \
382 echo "There's no support for shared libraries on this platform" >&2; \
d0590fe6 383 exit 1; \
f4316c36 384 fi
0f180d1d 385
a22fb399 386libssl$(SHLIB_EXT): libcrypto$(SHLIB_EXT) libssl.a
f4316c36 387 @if [ "$(SHLIB_TARGET)" != "" ]; then \
5ddcb866 388 $(MAKE) SHLIBDIRS=ssl SHLIBDEPS='-lcrypto' build-shared; \
f4316c36
RL
389 else \
390 echo "There's no support for shared libraries on this platform" >&2; \
d0590fe6 391 exit 1; \
f4316c36 392 fi
b436a982
RL
393
394clean-shared:
cfd06a62 395 @set -e; for i in $(SHLIBDIRS); do \
a22fb399
RL
396 if [ -n "$(SHARED_LIBS_LINK_EXTS)" ]; then \
397 tmp="$(SHARED_LIBS_LINK_EXTS)"; \
398 for j in $${tmp:-x}; do \
399 ( set -x; rm -f lib$$i$$j ); \
400 done; \
401 fi; \
402 ( set -x; rm -f lib$$i$(SHLIB_EXT) ); \
b3ef742c 403 if expr "$(PLATFORM)" : "Cygwin" >/dev/null; then \
1fe198b6
RL
404 ( set -x; rm -f cyg$$i$(SHLIB_EXT) lib$$i$(SHLIB_EXT).a ); \
405 fi; \
b436a982 406 done
d02b48c6 407
a22fb399 408link-shared:
a370537b 409 @ set -e; for i in $(SHLIBDIRS); do \
755c5b33 410 $(MAKE) -f $(HERE)/Makefile.shared -e $(BUILDENV) \
a370537b
AP
411 LIBNAME=$$i LIBVERSION=$(SHLIB_MAJOR).$(SHLIB_MINOR) \
412 LIBCOMPATVERSIONS=";$(SHLIB_VERSION_HISTORY)" \
30afcc07 413 symlink.$(SHLIB_TARGET); \
6b86bad5 414 libs="$$libs -l$$i"; \
0fd44e2d
RL
415 done
416
30afcc07
RL
417build-shared: do_$(SHLIB_TARGET) link-shared
418
419do_$(SHLIB_TARGET):
a370537b 420 @ set -e; libs='-L. $(SHLIBDEPS)'; for i in $(SHLIBDIRS); do \
e075341d 421 if [ "$$i" = "ssl" -a -n "$(LIBKRB5)" ]; then \
c1269c81
RL
422 libs="$(LIBKRB5) $$libs"; \
423 fi; \
02c31fa4 424 $(CLEARENV) && $(MAKE) -f Makefile.shared -e $(BUILDENV) \
a370537b
AP
425 LIBNAME=$$i LIBVERSION=$(SHLIB_MAJOR).$(SHLIB_MINOR) \
426 LIBCOMPATVERSIONS=";$(SHLIB_VERSION_HISTORY)" \
30afcc07
RL
427 LIBDEPS="$$libs $(EX_LIBS)" \
428 link_a.$(SHLIB_TARGET); \
c1269c81 429 libs="-l$$i $$libs"; \
a3fffd64
RL
430 done
431
0962fbbf
RL
432libcrypto.pc: Makefile
433 @ ( echo 'prefix=$(INSTALLTOP)'; \
434 echo 'exec_prefix=$${prefix}'; \
6727565a 435 echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
0962fbbf
RL
436 echo 'includedir=$${prefix}/include'; \
437 echo ''; \
438 echo 'Name: OpenSSL-libcrypto'; \
439 echo 'Description: OpenSSL cryptography library'; \
440 echo 'Version: '$(VERSION); \
441 echo 'Requires: '; \
04296664
DSH
442 echo 'Libs: -L$${libdir} -lcrypto'; \
443 echo 'Libs.private: $(EX_LIBS)'; \
0962fbbf
RL
444 echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libcrypto.pc
445
446libssl.pc: Makefile
447 @ ( echo 'prefix=$(INSTALLTOP)'; \
448 echo 'exec_prefix=$${prefix}'; \
6727565a 449 echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
0962fbbf
RL
450 echo 'includedir=$${prefix}/include'; \
451 echo ''; \
e6479c76 452 echo 'Name: OpenSSL-libssl'; \
0962fbbf
RL
453 echo 'Description: Secure Sockets Layer and cryptography libraries'; \
454 echo 'Version: '$(VERSION); \
e6479c76
MF
455 echo 'Requires.private: libcrypto'; \
456 echo 'Libs: -L$${libdir} -lssl'; \
04296664 457 echo 'Libs.private: $(EX_LIBS)'; \
0962fbbf
RL
458 echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libssl.pc
459
42ba5d23 460openssl.pc: Makefile
56824b96
RL
461 @ ( echo 'prefix=$(INSTALLTOP)'; \
462 echo 'exec_prefix=$${prefix}'; \
6727565a 463 echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
56824b96
RL
464 echo 'includedir=$${prefix}/include'; \
465 echo ''; \
466 echo 'Name: OpenSSL'; \
467 echo 'Description: Secure Sockets Layer and cryptography libraries and tools'; \
468 echo 'Version: '$(VERSION); \
e6479c76 469 echo 'Requires: libssl libcrypto' ) > openssl.pc
56824b96 470
c7199e62
BL
471Makefile: Makefile.org Configure config
472 @echo "Makefile is older than Makefile.org, Configure or config."
49b81422 473 @echo "Reconfigure the source tree (via './config' or 'perl Configure'), please."
9535d202
BL
474 @false
475
dfeab068 476libclean:
acb2f06a 477 rm -f *.map *.so *.so.* *.dylib *.dll engines/*.so engines/*.dll engines/*.dylib *.a engines/*.a */lib */*/lib
dfeab068 478
7841edc9 479clean: libclean
0431941e 480 rm -f shlib/*.o *.o core a.out fluff rehash.time testlog make.log cctest cctest.c
5ab65c50 481 rm -rf *.bak include/openssl certs/.0
02c31fa4 482 @set -e; target=clean; $(RECURSIVE_BUILD_CMD)
34ccd24d 483 rm -f $(LIBS) tags TAGS
0962fbbf 484 rm -f openssl.pc libssl.pc libcrypto.pc
7841edc9 485 rm -f speed.* .pure
bb8f3c58 486 rm -f $(TARFILE)
cfd06a62 487 @set -e; for i in $(ONEDIRS) ;\
d02b48c6 488 do \
bb8f3c58 489 rm -fr $$i/*; \
d02b48c6
RE
490 done
491
492makefile.one: files
99aab161 493 $(PERL) util/mk1mf.pl >makefile.one; \
d02b48c6
RE
494 sh util/do_ms.sh
495
bacad008 496files:
42ba5d23 497 $(PERL) $(TOP)/util/files.pl Makefile > $(TOP)/MINFO
02c31fa4 498 @set -e; target=files; $(RECURSIVE_BUILD_CMD)
d02b48c6
RE
499
500links:
6576774b 501 @$(PERL) $(TOP)/util/mkdir-p.pl include/openssl
41d2a336 502 @$(PERL) $(TOP)/util/mklink.pl include/openssl $(EXHEADER)
02c31fa4 503 @set -e; target=links; $(RECURSIVE_BUILD_CMD)
d02b48c6 504
1cc67fa8
RL
505gentests:
506 @(cd test && echo "generating dummy tests (if needed)..." && \
a370537b 507 $(CLEARENV) && $(MAKE) -e $(BUILDENV) TESTS='$(TESTS)' OPENSSL_DEBUG_MEMORY=on generate );
1cc67fa8 508
d02b48c6 509dclean:
02c31fa4 510 @set -e; target=dclean; $(RECURSIVE_BUILD_CMD)
d02b48c6 511
0431941e
DSH
512rehash: rehash.time
513rehash.time: certs apps
34775923 514 @if [ -z "$(CROSS_COMPILE)" ]; then \
0431941e
DSH
515 (OPENSSL="`pwd`/util/opensslwrap.sh"; \
516 [ -x "apps/openssl.exe" ] && OPENSSL="apps/openssl.exe" || :; \
517 OPENSSL_DEBUG_MEMORY=on; \
518 export OPENSSL OPENSSL_DEBUG_MEMORY; \
fefc111a 519 $(PERL) tools/c_rehash certs/demo) && \
0431941e
DSH
520 touch rehash.time; \
521 else :; fi
522
58964a49 523test: tests
d02b48c6 524
0431941e 525tests: rehash
bb8f3c58 526 @(cd test && echo "testing..." && \
220bd849
DSH
527 $(CLEARENV) && $(MAKE) -e $(BUILDENV) TOP=.. TESTS='$(TESTS)' OPENSSL_DEBUG_MEMORY=on OPENSSL_CONF=../apps/openssl.cnf tests );
528 OPENSSL_CONF=apps/openssl.cnf util/opensslwrap.sh version -a
d02b48c6 529
d7f0ab5f
UM
530report:
531 @$(PERL) util/selftest.pl
532
d02b48c6 533depend:
02c31fa4 534 @set -e; target=depend; $(RECURSIVE_BUILD_CMD)
d02b48c6
RE
535
536lint:
02c31fa4 537 @set -e; target=lint; $(RECURSIVE_BUILD_CMD)
d02b48c6 538
34ccd24d
RS
539tags TAGS: FORCE
540 rm -f TAGS tags
541 -ctags -R .
542 -etags -R .
543
544FORCE:
d02b48c6
RE
545
546errors:
797c61aa 547 $(PERL) util/ck_errf.pl -strict */*.c */*/*.c
f6485909 548 $(PERL) util/mkerr.pl -recurse -write
506fec1a 549 (cd engines; $(MAKE) PERL=$(PERL) errors)
d02b48c6 550
a6fbcb42
DSH
551stacks:
552 $(PERL) util/mkstack.pl -write
553
7740a1c6 554util/libeay.num::
f6485909 555 $(PERL) util/mkdef.pl crypto update
7740a1c6
BM
556
557util/ssleay.num::
f6485909 558 $(PERL) util/mkdef.pl ssl update
7740a1c6 559
1d00800e 560crypto/objects/obj_dat.h: crypto/objects/obj_dat.pl crypto/objects/obj_mac.h
f6485909 561 $(PERL) crypto/objects/obj_dat.pl crypto/objects/obj_mac.h crypto/objects/obj_dat.h
0357422d 562crypto/objects/obj_mac.h: crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num
f6485909 563 $(PERL) crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num crypto/objects/obj_mac.h
a19c9f17 564crypto/objects/obj_xref.h: crypto/objects/objxref.pl crypto/objects/obj_xref.txt crypto/objects/obj_mac.num
aaa29f9e 565 $(PERL) crypto/objects/objxref.pl crypto/objects/obj_mac.num crypto/objects/obj_xref.txt >crypto/objects/obj_xref.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
11cd2397
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
a6fbcb42 578update: errors stacks util/libeay.num util/ssleay.num crypto/objects/obj_dat.h crypto/objects/obj_xref.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 608 @$(MAKE) dist_pem_h
a370537b
AP
609 @$(MAKE) SDIRS='$(SDIRS)' clean
610 @$(MAKE) TAR='$(TAR)' TARFLAGS='$(TARFLAGS)' tar
d02b48c6
RE
611
612dist_pem_h:
02c31fa4 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 \
6727565a
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;
02c31fa4 631 @set -e; target=install; $(RECURSIVE_BUILD_CMD)
d341e402 632 @set -e; liblist="$(LIBS)"; for i in $$liblist ;\
d02b48c6 633 do \
b436a982
RL
634 if [ -f "$$i" ]; then \
635 ( echo installing $$i; \
6727565a
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; \
65370f9b 648 if expr "$(PLATFORM)" : "Cygwin" >/dev/null; then \
447aa490 649 c=`echo $$i | sed 's/^lib\(.*\)\.dll\.a/cyg\1-$(SHLIB_VERSION_NUMBER).dll/'`; \
7104c376
RL
650 cp $$c $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
651 chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
30c08f2e 652 mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c; \
6727565a
DSH
653 cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
654 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
655 mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i; \
65370f9b
AP
656 else \
657 cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
658 chmod 555 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
659 mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i; \
1fe198b6 660 fi ); \
4c1a6e00
LJ
661 if expr $(PLATFORM) : 'mingw' > /dev/null; then \
662 ( case $$i in \
663 *crypto*) i=libeay32.dll;; \
664 *ssl*) i=ssleay32.dll;; \
665 esac; \
666 echo installing $$i; \
667 cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \
668 chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \
669 mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i ); \
670 fi; \
2c975b50 671 fi; \
a22fb399
RL
672 done; \
673 ( here="`pwd`"; \
72a9776a 674 cd $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR); \
4c3a2d64 675 $(MAKE) -f $$here/Makefile HERE="$$here" link-shared ); \
e68cb95d
RL
676 if [ "$(INSTALLTOP)" != "/usr" ]; then \
677 echo 'OpenSSL shared libraries have been installed in:'; \
678 echo ' $(INSTALLTOP)'; \
679 echo ''; \
c0cc5c30 680 sed -e '1,/^$$/d' doc/openssl-shared.txt; \
e68cb95d 681 fi; \
a22fb399 682 fi
6727565a
DSH
683 cp libcrypto.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
684 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libcrypto.pc
685 cp libssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
686 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libssl.pc
687 cp openssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
688 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/openssl.pc
e6e7b5f3 689
60cdb821
UM
690install_html_docs:
691 here="`pwd`"; \
82d9185a 692 filecase=; \
457f7b14 693 case "$(PLATFORM)" in DJGPP|Cygwin*|mingw*|darwin*-*-cc) \
82d9185a
JR
694 filecase=-i; \
695 esac; \
60cdb821
UM
696 for subdir in apps crypto ssl; do \
697 mkdir -p $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir; \
698 for i in doc/$$subdir/*.pod; do \
699 fn=`basename $$i .pod`; \
700 echo "installing html/$$fn.$(HTMLSUFFIX)"; \
701 cat $$i \
702 | sed -r 's/L<([^)]*)(\([0-9]\))?\|([^)]*)(\([0-9]\))?>/L<\1|\3>/g' \
690a2b1f 703 | pod2html --podroot=doc --htmlroot=.. --podpath=$$subdir:apps:crypto:ssl \
60cdb821
UM
704 | sed -r 's/<!DOCTYPE.*//g' \
705 > $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir/$$fn.$(HTMLSUFFIX); \
706 $(PERL) util/extract-names.pl < $$i | \
707 grep -v $$filecase "^$$fn\$$" | \
708 (cd $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir; \
709 while read n; do \
220bd849 710 PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$(HTMLSUFFIX) "$$n".$(HTMLSUFFIX); \
60cdb821
UM
711 done); \
712 done; \
713 done
714
e6e7b5f3
BM
715install_docs:
716 @$(PERL) $(TOP)/util/mkdir-p.pl \
e1c55191
UM
717 $(INSTALL_PREFIX)$(MANDIR)/man1 \
718 $(INSTALL_PREFIX)$(MANDIR)/man3 \
719 $(INSTALL_PREFIX)$(MANDIR)/man5 \
720 $(INSTALL_PREFIX)$(MANDIR)/man7
ec9f67f6
RL
721 here="`pwd`"; \
722 filecase=; \
457f7b14 723 case "$(PLATFORM)" in DJGPP|Cygwin*|mingw*|darwin*-*-cc) \
ec9f67f6 724 filecase=-i; \
b3ef742c 725 esac; \
cfd06a62 726 set -e; for i in doc/apps/*.pod; do \
c6ce792f 727 fn=`basename $$i .pod`; \
401ee37a 728 sec=`$(PERL) util/extract-section.pl 1 < $$i`; \
1cc087fe 729 echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
d13363af 730 (cd `$(PERL) util/dirname.pl $$i`; \
a4a93411 731 pod2man \
2962243d 732 --section=$$sec --center=OpenSSL \
a4a93411 733 --release=$(VERSION) `basename $$i`) \
1cc087fe 734 > $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
ec9f67f6 735 $(PERL) util/extract-names.pl < $$i | \
f6098f2d
RL
736 (grep -v $$filecase "^$$fn\$$"; true) | \
737 (grep -v "[ ]"; true) | \
ec9f67f6
RL
738 (cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
739 while read n; do \
220bd849 740 PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
ec9f67f6 741 done); \
f6f99618 742 done; \
cfd06a62 743 set -e; for i in doc/crypto/*.pod doc/ssl/*.pod; do \
c6ce792f 744 fn=`basename $$i .pod`; \
401ee37a 745 sec=`$(PERL) util/extract-section.pl 3 < $$i`; \
1cc087fe 746 echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
d13363af 747 (cd `$(PERL) util/dirname.pl $$i`; \
a4a93411 748 pod2man \
2962243d 749 --section=$$sec --center=OpenSSL \
a4a93411 750 --release=$(VERSION) `basename $$i`) \
1cc087fe 751 > $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
ec9f67f6 752 $(PERL) util/extract-names.pl < $$i | \
f6098f2d
RL
753 (grep -v $$filecase "^$$fn\$$"; true) | \
754 (grep -v "[ ]"; true) | \
ec9f67f6
RL
755 (cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
756 while read n; do \
220bd849 757 PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
ec9f67f6 758 done); \
c6ce792f 759 done
d02b48c6
RE
760
761# DO NOT DELETE THIS LINE -- make depend depends on it.