Implement internally opaque bn access from dsa
[openssl.git] / Makefile.org
1 ##
2 ## Makefile for OpenSSL
3 ##
4
5 VERSION=
6 MAJOR=
7 MINOR=
8 SHLIB_VERSION_NUMBER=
9 SHLIB_VERSION_HISTORY=
10 SHLIB_MAJOR=
11 SHLIB_MINOR=
12 SHLIB_EXT=
13 PLATFORM=dist
14 OPTIONS=
15 CONFIGURE_ARGS=
16 SHLIB_TARGET=
17
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.
21 HERE=.
22
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.
26 INSTALL_PREFIX=
27 INSTALLTOP=/usr/local/ssl
28
29 # Do not edit this manually. Use Configure --openssldir=DIR do change this!
30 OPENSSLDIR=/usr/local/ssl
31
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
36 #           system defines as well, i.e. _REENTERANT for Solaris 2.[34]
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
41 #           one.  32 bytes will be read from this when the random
42 #           number generator is initalised.
43 # SSL_FORBID_ENULL - define if you want the server to be not able to use the
44 #           NULL encryption ciphers.
45 #
46 # LOCK_DEBUG - turns on lots of lock debug output :-)
47 # REF_CHECK - turn on some xyz_free() assertions.
48 # REF_PRINT - prints some stuff on structure free.
49 # CRYPTO_MDEBUG - turns on my 'memory leak' detecting stuff
50 # MFUNC - Make all Malloc/Free/Realloc calls call
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
56 # Do not define B_ENDIAN or L_ENDIAN if 'unsigned long' == 8.  It must
57 # equal 4.
58 # PKCS1_CHECK - pkcs1 tests.
59
60 CC= cc
61 CFLAG= -O
62 DEPFLAG= 
63 PEX_LIBS= 
64 EX_LIBS= 
65 EXE_EXT= 
66 ARFLAGS=
67 AR=ar $(ARFLAGS) r
68 RANLIB= ranlib
69 NM= nm
70 PERL= perl
71 TAR= tar
72 TARFLAGS= --no-recursion
73 MAKEDEPPROG=makedepend
74 LIBDIR=lib
75
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.
81 AS=$(CC) -c
82 ASFLAG=$(CFLAG)
83
84 # For x86 assembler: Set PROCESSOR to 386 if you want to support
85 # the 80386.
86 PROCESSOR=
87
88 # CPUID module collects small commonly used assembler snippets
89 CPUID_OBJ= 
90 BN_ASM= bn_asm.o
91 EC_ASM=
92 DES_ENC= des_enc.o fcrypt_b.o
93 AES_ENC= aes_core.o aes_cbc.o
94 BF_ENC= bf_enc.o
95 CAST_ENC= c_enc.o
96 RC4_ENC= rc4_enc.o
97 RC5_ENC= rc5_enc.o
98 MD5_ASM_OBJ= 
99 SHA1_ASM_OBJ= 
100 RMD160_ASM_OBJ= 
101 WP_ASM_OBJ=
102 CMLL_ENC=
103 MODES_ASM_OBJ=
104 ENGINES_ASM_OBJ=
105 PERLASM_SCHEME=
106
107 # KRB5 stuff
108 KRB5_INCLUDES=
109 LIBKRB5=
110
111 # Zlib stuff
112 ZLIB_INCLUDE=
113 LIBZLIB=
114
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
119 # $(INSTALLTOP) for this build may be different so hard
120 # code the path.
121
122 FIPSLIBDIR=/usr/local/ssl/$(LIBDIR)/
123
124 # The location of the library which contains fipscanister.o
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.
127
128 FIPSCANLIB=
129
130 # Shared library base address. Currently only used on Windows.
131 #
132
133 BASEADDR=
134
135 DIRS=   crypto ssl engines apps test tools
136 ENGDIRS= ccgost
137 SHLIBDIRS= crypto ssl
138
139 # dirs in crypto to build
140 SDIRS=  \
141         objects \
142         md2 md4 md5 sha mdc2 hmac ripemd whrlpool \
143         des aes rc2 rc4 rc5 idea bf cast camellia seed modes \
144         bn ec rsa dsa ecdsa dh ecdh dso engine \
145         buffer bio stack lhash rand err \
146         evp asn1 pem x509 x509v3 conf txt_db pkcs7 pkcs12 comp ocsp ui krb5 \
147         cms pqueue ts jpake srp store cmac
148 # keep in mind that the above list is adjusted by ./Configure
149 # according to no-xxx arguments...
150
151 # tests to perform.  "alltests" is a special word indicating that all tests
152 # should be performed.
153 TESTS = alltests
154
155 MAKEFILE= Makefile
156
157 MANDIR=$(OPENSSLDIR)/man
158 MAN1=1
159 MAN3=3
160 MANSUFFIX=
161 HTMLSUFFIX=html
162 HTMLDIR=$(OPENSSLDIR)/html
163 SHELL=/bin/sh
164
165 TOP=    .
166 ONEDIRS=out tmp
167 EDIRS=  times doc bugs util include certs ms shlib mt demos perl sf dep VMS
168 WDIRS=  windows
169 LIBS=   libcrypto.a libssl.a
170 SHARED_CRYPTO=libcrypto$(SHLIB_EXT)
171 SHARED_SSL=libssl$(SHLIB_EXT)
172 SHARED_LIBS=
173 SHARED_LIBS_LINK_EXTS=
174 SHARED_LDFLAGS=
175
176 GENERAL=        Makefile
177 BASENAME=       openssl
178 NAME=           $(BASENAME)-$(VERSION)
179 TARFILE=        $(NAME).tar
180 WTARFILE=       $(NAME)-win.tar
181 EXHEADER=       e_os2.h
182 HEADER=         e_os.h
183
184 all: Makefile build_all openssl.pc libssl.pc libcrypto.pc
185
186 # as we stick to -e, CLEARENV ensures that local variables in lower
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:-(
191 CLEARENV=       TOP= && unset TOP $${LIB+LIB} $${LIBS+LIBS}     \
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}           \
198                 $${LDCMD+LDCMD} $${LDFLAGS+LDFLAGS} $${SCRIPTS+SCRIPTS} \
199                 $${SHAREDCMD+SHAREDCMD} $${SHAREDFLAGS+SHAREDFLAGS}     \
200                 $${SHARED_LIB+SHARED_LIB} $${LIBEXTRAS+LIBEXTRAS}
201
202 BUILDENV=       PLATFORM='$(PLATFORM)' PROCESSOR='$(PROCESSOR)' \
203                 CC='$(CC)' CFLAG='$(CFLAG)'                     \
204                 AS='$(CC)' ASFLAG='$(CFLAG) -c'                 \
205                 AR='$(AR)' NM='$(NM)' RANLIB='$(RANLIB)'        \
206                 CROSS_COMPILE='$(CROSS_COMPILE)'        \
207                 PERL='$(PERL)' ENGDIRS='$(ENGDIRS)'             \
208                 SDIRS='$(SDIRS)' LIBRPATH='$(INSTALLTOP)/$(LIBDIR)'     \
209                 INSTALL_PREFIX='$(INSTALL_PREFIX)'              \
210                 INSTALLTOP='$(INSTALLTOP)' OPENSSLDIR='$(OPENSSLDIR)'   \
211                 LIBDIR='$(LIBDIR)'                              \
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)'   \
217                 ZLIB_INCLUDE='$(ZLIB_INCLUDE)' LIBZLIB='$(LIBZLIB)'     \
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)'     \
221                 CPUID_OBJ='$(CPUID_OBJ)' BN_ASM='$(BN_ASM)'     \
222                 EC_ASM='$(EC_ASM)' DES_ENC='$(DES_ENC)'         \
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)'                      \
230                 MODES_ASM_OBJ='$(MODES_ASM_OBJ)'                \
231                 ENGINES_ASM_OBJ='$(ENGINES_ASM_OBJ)'            \
232                 PERLASM_SCHEME='$(PERLASM_SCHEME)'              \
233                 FIPSLIBDIR='${FIPSLIBDIR}'                      \
234                 FIPSCANLIB="$${FIPSCANLIB:-$(FIPSCANLIB)}"      \
235                 FIPS_EX_OBJ='${FIPS_EX_OBJ}'    \
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.
239
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'.
253 BUILD_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
258 RECURSIVE_BUILD_CMD=for dir in $(DIRS); do $(BUILD_CMD); done
259 BUILD_ONE_CMD=\
260         if expr " $(DIRS) " : ".* $$dir " >/dev/null 2>&1; then \
261                 $(BUILD_CMD); \
262         fi
263
264 reflect:
265         @[ -n "$(THIS)" ] && $(CLEARENV) && $(MAKE) $(THIS) -e $(BUILDENV)
266
267 FIPS_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 \
277         ../crypto/bn/bn_gf2m.o \
278         ../crypto/bn/bn_lib.o \
279         ../crypto/bn/bn_mod.o \
280         ../crypto/bn/bn_mont.o \
281         ../crypto/bn/bn_mul.o \
282         ../crypto/bn/bn_nist.o \
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 \
291         ../crypto/cmac/cmac.o \
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 \
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 \
316         ../crypto/ecdh/ech_key.o \
317         ../crypto/ecdh/ech_ossl.o \
318         ../crypto/ecdsa/ecs_ossl.o \
319         ../crypto/evp/e_aes.o \
320         ../crypto/evp/e_des3.o \
321         ../crypto/evp/e_null.o \
322         ../crypto/evp/m_sha1.o \
323         ../crypto/evp/m_dss1.o \
324         ../crypto/evp/m_dss.o \
325         ../crypto/evp/m_ecdsa.o \
326         ../crypto/hmac/hmac.o \
327         ../crypto/modes/cbc128.o \
328         ../crypto/modes/ccm128.o \
329         ../crypto/modes/cfb128.o \
330         ../crypto/modes/ctr128.o \
331         ../crypto/modes/gcm128.o \
332         ../crypto/modes/ofb128.o \
333         ../crypto/modes/xts128.o \
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 \
343         ../crypto/rsa/rsa_x931g.o \
344         ../crypto/sha/sha1dgst.o \
345         ../crypto/sha/sha256.o \
346         ../crypto/sha/sha512.o \
347         ../crypto/thr_id.o \
348         ../crypto/uid.o
349
350 sub_all: build_all
351 build_all: build_libs build_apps build_tests build_tools
352
353 build_libs: build_crypto build_ssl build_engines
354
355 build_crypto:
356         @dir=crypto; target=all; $(BUILD_ONE_CMD)
357 build_ssl:
358         @dir=ssl; target=all; $(BUILD_ONE_CMD)
359 build_engines:
360         @dir=engines; target=all; AS='$(CC) -c'; export AS; $(BUILD_ONE_CMD)
361 build_apps:
362         @dir=apps; target=all; $(BUILD_ONE_CMD)
363 build_tests:
364         @dir=test; target=all; $(BUILD_ONE_CMD)
365 build_tools:
366         @dir=tools; target=all; $(BUILD_ONE_CMD)
367
368 all_testapps: build_libs build_testapps
369 build_testapps:
370         @dir=crypto; target=testapps; $(BUILD_ONE_CMD)
371
372 libcrypto$(SHLIB_EXT): libcrypto.a
373         @if [ "$(SHLIB_TARGET)" != "" ]; then \
374                 if [ "$(FIPSCANLIB)" = "libcrypto" ]; then \
375                         FIPSLD_CC="$(CC)"; CC=fips/fipsld; \
376                         export CC FIPSLD_CC; \
377                 fi; \
378                 $(MAKE) -e SHLIBDIRS=crypto CC="$${CC:-$(CC)}" build-shared; \
379         else \
380                 echo "There's no support for shared libraries on this platform" >&2; \
381                 exit 1; \
382         fi
383
384 libssl$(SHLIB_EXT): libcrypto$(SHLIB_EXT) libssl.a
385         @if [ "$(SHLIB_TARGET)" != "" ]; then \
386                 $(MAKE) SHLIBDIRS=ssl SHLIBDEPS='-lcrypto' build-shared; \
387         else \
388                 echo "There's no support for shared libraries on this platform" >&2; \
389                 exit 1; \
390         fi
391
392 clean-shared:
393         @set -e; for i in $(SHLIBDIRS); do \
394                 if [ -n "$(SHARED_LIBS_LINK_EXTS)" ]; then \
395                         tmp="$(SHARED_LIBS_LINK_EXTS)"; \
396                         for j in $${tmp:-x}; do \
397                                 ( set -x; rm -f lib$$i$$j ); \
398                         done; \
399                 fi; \
400                 ( set -x; rm -f lib$$i$(SHLIB_EXT) ); \
401                 if expr "$(PLATFORM)" : "Cygwin" >/dev/null; then \
402                         ( set -x; rm -f cyg$$i$(SHLIB_EXT) lib$$i$(SHLIB_EXT).a ); \
403                 fi; \
404         done
405
406 link-shared:
407         @ set -e; for i in $(SHLIBDIRS); do \
408                 $(MAKE) -f $(HERE)/Makefile.shared -e $(BUILDENV) \
409                         LIBNAME=$$i LIBVERSION=$(SHLIB_MAJOR).$(SHLIB_MINOR) \
410                         LIBCOMPATVERSIONS=";$(SHLIB_VERSION_HISTORY)" \
411                         symlink.$(SHLIB_TARGET); \
412                 libs="$$libs -l$$i"; \
413         done
414
415 build-shared: do_$(SHLIB_TARGET) link-shared
416
417 do_$(SHLIB_TARGET):
418         @ set -e; libs='-L. $(SHLIBDEPS)'; for i in $(SHLIBDIRS); do \
419                 if [ "$$i" = "ssl" -a -n "$(LIBKRB5)" ]; then \
420                         libs="$(LIBKRB5) $$libs"; \
421                 fi; \
422                 $(CLEARENV) && $(MAKE) -f Makefile.shared -e $(BUILDENV) \
423                         LIBNAME=$$i LIBVERSION=$(SHLIB_MAJOR).$(SHLIB_MINOR) \
424                         LIBCOMPATVERSIONS=";$(SHLIB_VERSION_HISTORY)" \
425                         LIBDEPS="$$libs $(EX_LIBS)" \
426                         link_a.$(SHLIB_TARGET); \
427                 libs="-l$$i $$libs"; \
428         done
429
430 libcrypto.pc: Makefile
431         @ ( echo 'prefix=$(INSTALLTOP)'; \
432             echo 'exec_prefix=$${prefix}'; \
433             echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
434             echo 'includedir=$${prefix}/include'; \
435             echo ''; \
436             echo 'Name: OpenSSL-libcrypto'; \
437             echo 'Description: OpenSSL cryptography library'; \
438             echo 'Version: '$(VERSION); \
439             echo 'Requires: '; \
440             echo 'Libs: -L$${libdir} -lcrypto'; \
441             echo 'Libs.private: $(EX_LIBS)'; \
442             echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libcrypto.pc
443
444 libssl.pc: Makefile
445         @ ( echo 'prefix=$(INSTALLTOP)'; \
446             echo 'exec_prefix=$${prefix}'; \
447             echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
448             echo 'includedir=$${prefix}/include'; \
449             echo ''; \
450             echo 'Name: OpenSSL-libssl'; \
451             echo 'Description: Secure Sockets Layer and cryptography libraries'; \
452             echo 'Version: '$(VERSION); \
453             echo 'Requires.private: libcrypto'; \
454             echo 'Libs: -L$${libdir} -lssl'; \
455             echo 'Libs.private: $(EX_LIBS)'; \
456             echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libssl.pc
457
458 openssl.pc: Makefile
459         @ ( echo 'prefix=$(INSTALLTOP)'; \
460             echo 'exec_prefix=$${prefix}'; \
461             echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
462             echo 'includedir=$${prefix}/include'; \
463             echo ''; \
464             echo 'Name: OpenSSL'; \
465             echo 'Description: Secure Sockets Layer and cryptography libraries and tools'; \
466             echo 'Version: '$(VERSION); \
467             echo 'Requires: libssl libcrypto' ) > openssl.pc
468
469 Makefile: Makefile.org Configure config
470         @echo "Makefile is older than Makefile.org, Configure or config."
471         @echo "Reconfigure the source tree (via './config' or 'perl Configure'), please."
472         @false
473
474 libclean:
475         rm -f *.map *.so *.so.* *.dylib *.dll engines/*.so engines/*.dll engines/*.dylib *.a engines/*.a */lib */*/lib
476
477 clean:  libclean
478         rm -f shlib/*.o *.o core a.out fluff rehash.time testlog make.log cctest cctest.c
479         @set -e; target=clean; $(RECURSIVE_BUILD_CMD)
480         rm -f $(LIBS) tags TAGS
481         rm -f openssl.pc libssl.pc libcrypto.pc
482         rm -f speed.* .pure
483         rm -f $(TARFILE)
484         @set -e; for i in $(ONEDIRS) ;\
485         do \
486         rm -fr $$i/*; \
487         done
488
489 makefile.one: files
490         $(PERL) util/mk1mf.pl >makefile.one; \
491         sh util/do_ms.sh
492
493 files:
494         $(PERL) $(TOP)/util/files.pl Makefile > $(TOP)/MINFO
495         @set -e; target=files; $(RECURSIVE_BUILD_CMD)
496
497 links:
498         @$(PERL) $(TOP)/util/mkdir-p.pl include/openssl
499         @$(PERL) $(TOP)/util/mklink.pl include/openssl $(EXHEADER)
500         @set -e; target=links; $(RECURSIVE_BUILD_CMD)
501
502 gentests:
503         @(cd test && echo "generating dummy tests (if needed)..." && \
504         $(CLEARENV) && $(MAKE) -e $(BUILDENV) TESTS='$(TESTS)' OPENSSL_DEBUG_MEMORY=on generate );
505
506 dclean:
507         rm -rf *.bak include/openssl certs/.0
508         @set -e; target=dclean; $(RECURSIVE_BUILD_CMD)
509
510 rehash: rehash.time
511 rehash.time: certs apps
512         @if [ -z "$(CROSS_COMPILE)" ]; then \
513                 (OPENSSL="`pwd`/util/opensslwrap.sh"; \
514                 [ -x "apps/openssl.exe" ] && OPENSSL="apps/openssl.exe" || :; \
515                 OPENSSL_DEBUG_MEMORY=on; \
516                 export OPENSSL OPENSSL_DEBUG_MEMORY; \
517                 $(PERL) tools/c_rehash certs/demo) && \
518                 touch rehash.time; \
519         else :; fi
520
521 test:   tests
522
523 tests: rehash
524         @(cd test && echo "testing..." && \
525         $(CLEARENV) && $(MAKE) -e $(BUILDENV) TOP=.. TESTS='$(TESTS)' OPENSSL_DEBUG_MEMORY=on OPENSSL_CONF=../apps/openssl.cnf tests );
526         OPENSSL_CONF=apps/openssl.cnf util/opensslwrap.sh version -a
527
528 report:
529         @$(PERL) util/selftest.pl
530
531 depend:
532         @set -e; target=depend; $(RECURSIVE_BUILD_CMD)
533
534 lint:
535         @set -e; target=lint; $(RECURSIVE_BUILD_CMD)
536
537 tags TAGS: FORCE
538         rm -f TAGS tags
539         -ctags -R .
540         -etags -R .
541
542 FORCE:
543
544 errors:
545         $(PERL) util/ck_errf.pl -strict */*.c */*/*.c
546         $(PERL) util/mkerr.pl -recurse -write
547         (cd engines; $(MAKE) PERL=$(PERL) errors)
548
549 stacks:
550         $(PERL) util/mkstack.pl -write
551
552 util/libeay.num::
553         $(PERL) util/mkdef.pl crypto update
554
555 util/ssleay.num::
556         $(PERL) util/mkdef.pl ssl update
557
558 crypto/objects/obj_dat.h: crypto/objects/obj_dat.pl crypto/objects/obj_mac.h
559         $(PERL) crypto/objects/obj_dat.pl crypto/objects/obj_mac.h crypto/objects/obj_dat.h
560 crypto/objects/obj_mac.h: crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num
561         $(PERL) crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num crypto/objects/obj_mac.h
562 crypto/objects/obj_xref.h: crypto/objects/objxref.pl crypto/objects/obj_xref.txt crypto/objects/obj_mac.num
563         $(PERL) crypto/objects/objxref.pl crypto/objects/obj_mac.num crypto/objects/obj_xref.txt >crypto/objects/obj_xref.h
564
565 apps/openssl-vms.cnf: apps/openssl.cnf
566         $(PERL) VMS/VMSify-conf.pl < apps/openssl.cnf > apps/openssl-vms.cnf
567
568 crypto/bn/bn_prime.h: crypto/bn/bn_prime.pl
569         $(PERL) crypto/bn/bn_prime.pl >crypto/bn/bn_prime.h
570
571
572 TABLE: Configure
573         (echo 'Output of `Configure TABLE'"':"; \
574         $(PERL) Configure TABLE) > TABLE
575
576 update: 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
577
578 # Build distribution tar-file. As the list of files returned by "find" is
579 # pretty long, on several platforms a "too many arguments" error or similar
580 # would occur. Therefore the list of files is temporarily stored into a file
581 # and read directly, requiring GNU-Tar. Call "make TAR=gtar dist" if the normal
582 # tar does not support the --files-from option.
583 tar:
584         find . -type d -print | xargs chmod 755
585         find . -type f -print | xargs chmod a+r
586         find . -type f -perm -0100 -print | xargs chmod a+x
587         find * \! -path CVS/\* \! -path \*/CVS/\* \! -name CVS \! -name .cvsignore \! -name STATUS \! -name TABLE | sort > ../$(TARFILE).list; \
588         $(TAR) $(TARFLAGS) --files-from ../$(TARFILE).list -cvf - | \
589         tardy --user_number=0  --user_name=openssl \
590               --group_number=0 --group_name=openssl \
591               --prefix=openssl-$(VERSION) - |\
592         gzip --best >../$(TARFILE).gz; \
593         rm -f ../$(TARFILE).list; \
594         ls -l ../$(TARFILE).gz
595
596 tar-snap:
597         @$(TAR) $(TARFLAGS) -cvf - \
598                 `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` |\
599         tardy --user_number=0  --user_name=openssl \
600               --group_number=0 --group_name=openssl \
601               --prefix=openssl-$(VERSION) - > ../$(TARFILE);\
602         ls -l ../$(TARFILE)
603
604 dist:   
605         $(PERL) Configure dist
606         @$(MAKE) dist_pem_h
607         @$(MAKE) SDIRS='$(SDIRS)' clean
608         @$(MAKE) TAR='$(TAR)' TARFLAGS='$(TARFLAGS)' tar
609
610 dist_pem_h:
611         (cd crypto/pem; $(MAKE) -e $(BUILDENV) pem.h; $(MAKE) clean)
612
613 install: all install_docs install_sw
614
615 install_sw:
616         @$(PERL) $(TOP)/util/mkdir-p.pl $(INSTALL_PREFIX)$(INSTALLTOP)/bin \
617                 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR) \
618                 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines \
619                 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig \
620                 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl \
621                 $(INSTALL_PREFIX)$(OPENSSLDIR)/misc \
622                 $(INSTALL_PREFIX)$(OPENSSLDIR)/certs \
623                 $(INSTALL_PREFIX)$(OPENSSLDIR)/private
624         @set -e; headerlist="$(EXHEADER)"; for i in $$headerlist;\
625         do \
626         (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
627         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
628         done;
629         @set -e; target=install; $(RECURSIVE_BUILD_CMD)
630         @set -e; liblist="$(LIBS)"; for i in $$liblist ;\
631         do \
632                 if [ -f "$$i" ]; then \
633                 (       echo installing $$i; \
634                         cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
635                         $(RANLIB) $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
636                         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
637                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i ); \
638                 fi; \
639         done;
640         @set -e; if [ -n "$(SHARED_LIBS)" ]; then \
641                 tmp="$(SHARED_LIBS)"; \
642                 for i in $${tmp:-x}; \
643                 do \
644                         if [ -f "$$i" -o -f "$$i.a" ]; then \
645                         (       echo installing $$i; \
646                                 if expr "$(PLATFORM)" : "Cygwin" >/dev/null; then \
647                                         c=`echo $$i | sed 's/^lib\(.*\)\.dll\.a/cyg\1-$(SHLIB_VERSION_NUMBER).dll/'`; \
648                                         cp $$c $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
649                                         chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
650                                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c; \
651                                         cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
652                                         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
653                                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i; \
654                                 else \
655                                         cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
656                                         chmod 555 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
657                                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i; \
658                                 fi ); \
659                                 if expr $(PLATFORM) : 'mingw' > /dev/null; then \
660                                 (       case $$i in \
661                                                 *crypto*) i=libeay32.dll;; \
662                                                 *ssl*)    i=ssleay32.dll;; \
663                                         esac; \
664                                         echo installing $$i; \
665                                         cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \
666                                         chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \
667                                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i ); \
668                                 fi; \
669                         fi; \
670                 done; \
671                 (       here="`pwd`"; \
672                         cd $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR); \
673                         $(MAKE) -f $$here/Makefile HERE="$$here" link-shared ); \
674                 if [ "$(INSTALLTOP)" != "/usr" ]; then \
675                         echo 'OpenSSL shared libraries have been installed in:'; \
676                         echo '  $(INSTALLTOP)'; \
677                         echo ''; \
678                         sed -e '1,/^$$/d' doc/openssl-shared.txt; \
679                 fi; \
680         fi
681         cp libcrypto.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
682         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libcrypto.pc
683         cp libssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
684         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libssl.pc
685         cp openssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
686         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/openssl.pc
687
688 install_html_docs:
689         here="`pwd`"; \
690         filecase=; \
691         case "$(PLATFORM)" in DJGPP|Cygwin*|mingw*|darwin*-*-cc) \
692                 filecase=-i; \
693         esac; \
694         for subdir in apps crypto ssl; do \
695                 mkdir -p $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir; \
696                 for i in doc/$$subdir/*.pod; do \
697                         fn=`basename $$i .pod`; \
698                         echo "installing html/$$fn.$(HTMLSUFFIX)"; \
699                         cat $$i \
700                         | sed -r 's/L<([^)]*)(\([0-9]\))?\|([^)]*)(\([0-9]\))?>/L<\1|\3>/g' \
701                         | pod2html --podroot=doc --htmlroot=.. --podpath=$$subdir:apps:crypto:ssl \
702                         | sed -r 's/<!DOCTYPE.*//g' \
703                         > $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir/$$fn.$(HTMLSUFFIX); \
704                         $(PERL) util/extract-names.pl < $$i | \
705                                 grep -v $$filecase "^$$fn\$$" | \
706                                 (cd $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir; \
707                                  while read n; do \
708                                         PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$(HTMLSUFFIX) "$$n".$(HTMLSUFFIX); \
709                                  done); \
710                 done; \
711         done
712
713 install_docs:
714         @$(PERL) $(TOP)/util/mkdir-p.pl \
715                 $(INSTALL_PREFIX)$(MANDIR)/man1 \
716                 $(INSTALL_PREFIX)$(MANDIR)/man3 \
717                 $(INSTALL_PREFIX)$(MANDIR)/man5 \
718                 $(INSTALL_PREFIX)$(MANDIR)/man7
719         @pod2man="`cd ./util; ./pod2mantest $(PERL)`"; \
720         here="`pwd`"; \
721         filecase=; \
722         case "$(PLATFORM)" in DJGPP|Cygwin*|mingw*|darwin*-*-cc) \
723                 filecase=-i; \
724         esac; \
725         set -e; for i in doc/apps/*.pod; do \
726                 fn=`basename $$i .pod`; \
727                 sec=`$(PERL) util/extract-section.pl 1 < $$i`; \
728                 echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
729                 (cd `$(PERL) util/dirname.pl $$i`; \
730                 sh -c "$$pod2man \
731                         --section=$$sec --center=OpenSSL \
732                         --release=$(VERSION) `basename $$i`") \
733                         >  $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
734                 $(PERL) util/extract-names.pl < $$i | \
735                         (grep -v $$filecase "^$$fn\$$"; true) | \
736                         (grep -v "[     ]"; true) | \
737                         (cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
738                          while read n; do \
739                                 PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
740                          done); \
741         done; \
742         set -e; for i in doc/crypto/*.pod doc/ssl/*.pod; do \
743                 fn=`basename $$i .pod`; \
744                 sec=`$(PERL) util/extract-section.pl 3 < $$i`; \
745                 echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
746                 (cd `$(PERL) util/dirname.pl $$i`; \
747                 sh -c "$$pod2man \
748                         --section=$$sec --center=OpenSSL \
749                         --release=$(VERSION) `basename $$i`") \
750                         >  $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
751                 $(PERL) util/extract-names.pl < $$i | \
752                         (grep -v $$filecase "^$$fn\$$"; true) | \
753                         (grep -v "[     ]"; true) | \
754                         (cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
755                          while read n; do \
756                                 PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
757                          done); \
758         done
759
760 # DO NOT DELETE THIS LINE -- make depend depends on it.