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