Convert memset calls to OPENSSL_cleanse
[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 RC= windres
70 NM= nm
71 PERL= perl
72 TAR= tar
73 TARFLAGS= --no-recursion
74 MAKEDEPPROG=makedepend
75 LIBDIR=lib
76
77 # We let the C compiler driver to take care of .s files. This is done in
78 # order to be excused from maintaining a separate set of architecture
79 # dependent assembler flags. E.g. if you throw -mcpu=ultrasparc at SPARC
80 # gcc, then the driver will automatically translate it to -xarch=v8plus
81 # and pass it down to assembler.
82 AS=$(CC) -c
83 ASFLAG=$(CFLAG)
84
85 # For x86 assembler: Set PROCESSOR to 386 if you want to support
86 # the 80386.
87 PROCESSOR=
88
89 # CPUID module collects small commonly used assembler snippets
90 CPUID_OBJ= 
91 BN_ASM= bn_asm.o
92 EC_ASM=
93 DES_ENC= des_enc.o fcrypt_b.o
94 AES_ENC= aes_core.o aes_cbc.o
95 BF_ENC= bf_enc.o
96 CAST_ENC= c_enc.o
97 RC4_ENC= rc4_enc.o
98 RC5_ENC= rc5_enc.o
99 MD5_ASM_OBJ= 
100 SHA1_ASM_OBJ= 
101 RMD160_ASM_OBJ= 
102 WP_ASM_OBJ=
103 CMLL_ENC=
104 MODES_ASM_OBJ=
105 ENGINES_ASM_OBJ=
106 PERLASM_SCHEME=
107
108 # KRB5 stuff
109 KRB5_INCLUDES=
110 LIBKRB5=
111
112 # Zlib stuff
113 ZLIB_INCLUDE=
114 LIBZLIB=
115
116 # TOP level FIPS install directory.
117 FIPSDIR=
118
119 # This is the location of fipscanister.o and friends.
120 # The FIPS module build will place it $(INSTALLTOP)/lib
121 # but since $(INSTALLTOP) can only take the default value
122 # when the module is built it will be in /usr/local/ssl/lib
123 # $(INSTALLTOP) for this build may be different so hard
124 # code the path.
125
126 FIPSLIBDIR=
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
133 FIPSCANLIB=
134
135 # Shared library base address. Currently only used on Windows.
136 #
137
138 BASEADDR=
139
140 DIRS=   crypto ssl engines apps test tools
141 ENGDIRS= ccgost
142 SHLIBDIRS= crypto ssl
143
144 # dirs in crypto to build
145 SDIRS=  \
146         objects \
147         md2 md4 md5 sha mdc2 hmac ripemd whrlpool \
148         des aes rc2 rc4 rc5 idea bf cast camellia seed modes \
149         bn ec rsa dsa ecdsa dh ecdh dso engine \
150         buffer bio stack lhash rand err \
151         evp asn1 pem x509 x509v3 conf txt_db pkcs7 pkcs12 comp ocsp ui krb5 \
152         cms pqueue ts jpake srp store cmac
153 # keep in mind that the above list is adjusted by ./Configure
154 # according to no-xxx arguments...
155
156 # tests to perform.  "alltests" is a special word indicating that all tests
157 # should be performed.
158 TESTS = alltests
159
160 MAKEFILE= Makefile
161
162 MANDIR=$(OPENSSLDIR)/man
163 MAN1=1
164 MAN3=3
165 MANSUFFIX=
166 HTMLSUFFIX=html
167 HTMLDIR=$(OPENSSLDIR)/html
168 SHELL=/bin/sh
169
170 TOP=    .
171 ONEDIRS=out tmp
172 EDIRS=  times doc bugs util include certs ms shlib mt demos perl sf dep VMS
173 WDIRS=  windows
174 LIBS=   libcrypto.a libssl.a
175 SHARED_CRYPTO=libcrypto$(SHLIB_EXT)
176 SHARED_SSL=libssl$(SHLIB_EXT)
177 SHARED_LIBS=
178 SHARED_LIBS_LINK_EXTS=
179 SHARED_LDFLAGS=
180
181 GENERAL=        Makefile
182 BASENAME=       openssl
183 NAME=           $(BASENAME)-$(VERSION)
184 TARFILE=        ../$(NAME).tar
185 EXHEADER=       e_os2.h
186 HEADER=         e_os.h
187
188 all: Makefile build_all
189
190 # as we stick to -e, CLEARENV ensures that local variables in lower
191 # Makefiles remain local and variable. $${VAR+VAR} is tribute to Korn
192 # shell, which [annoyingly enough] terminates unset with error if VAR
193 # is not present:-( TOP= && unset TOP is tribute to HP-UX /bin/sh,
194 # which terminates unset with error if no variable was present:-(
195 CLEARENV=       TOP= && unset TOP $${LIB+LIB} $${LIBS+LIBS}     \
196                 $${INCLUDE+INCLUDE} $${INCLUDES+INCLUDES}       \
197                 $${DIR+DIR} $${DIRS+DIRS} $${SRC+SRC}           \
198                 $${LIBSRC+LIBSRC} $${LIBOBJ+LIBOBJ} $${ALL+ALL} \
199                 $${EXHEADER+EXHEADER} $${HEADER+HEADER}         \
200                 $${GENERAL+GENERAL} $${CFLAGS+CFLAGS}           \
201                 $${ASFLAGS+ASFLAGS} $${AFLAGS+AFLAGS}           \
202                 $${LDCMD+LDCMD} $${LDFLAGS+LDFLAGS} $${SCRIPTS+SCRIPTS} \
203                 $${SHAREDCMD+SHAREDCMD} $${SHAREDFLAGS+SHAREDFLAGS}     \
204                 $${SHARED_LIB+SHARED_LIB} $${LIBEXTRAS+LIBEXTRAS}
205
206 # LC_ALL=C ensures that error [and other] messages are delivered in
207 # same language for uniform treatment.
208 BUILDENV=       LC_ALL=C PLATFORM='$(PLATFORM)' PROCESSOR='$(PROCESSOR)'\
209                 CC='$(CC)' CFLAG='$(CFLAG)'                     \
210                 AS='$(CC)' ASFLAG='$(CFLAG) -c'                 \
211                 AR='$(AR)' NM='$(NM)' RANLIB='$(RANLIB)'        \
212                 RC='$(RC)'                                      \
213                 CROSS_COMPILE='$(CROSS_COMPILE)'        \
214                 PERL='$(PERL)' ENGDIRS='$(ENGDIRS)'             \
215                 SDIRS='$(SDIRS)' LIBRPATH='$(INSTALLTOP)/$(LIBDIR)'     \
216                 INSTALL_PREFIX='$(INSTALL_PREFIX)'              \
217                 INSTALLTOP='$(INSTALLTOP)' OPENSSLDIR='$(OPENSSLDIR)'   \
218                 LIBDIR='$(LIBDIR)'                              \
219                 MAKEDEPEND='$$$${TOP}/util/domd $$$${TOP} -MD $(MAKEDEPPROG)' \
220                 DEPFLAG='-DOPENSSL_NO_DEPRECATED $(DEPFLAG)'    \
221                 MAKEDEPPROG='$(MAKEDEPPROG)'                    \
222                 SHARED_LDFLAGS='$(SHARED_LDFLAGS)'              \
223                 KRB5_INCLUDES='$(KRB5_INCLUDES)' LIBKRB5='$(LIBKRB5)'   \
224                 ZLIB_INCLUDE='$(ZLIB_INCLUDE)' LIBZLIB='$(LIBZLIB)'     \
225                 EXE_EXT='$(EXE_EXT)' SHARED_LIBS='$(SHARED_LIBS)'       \
226                 SHLIB_EXT='$(SHLIB_EXT)' SHLIB_TARGET='$(SHLIB_TARGET)' \
227                 PEX_LIBS='$(PEX_LIBS)' EX_LIBS='$(EX_LIBS)'     \
228                 CPUID_OBJ='$(CPUID_OBJ)' BN_ASM='$(BN_ASM)'     \
229                 EC_ASM='$(EC_ASM)' DES_ENC='$(DES_ENC)'         \
230                 AES_ENC='$(AES_ENC)' CMLL_ENC='$(CMLL_ENC)'     \
231                 BF_ENC='$(BF_ENC)' CAST_ENC='$(CAST_ENC)'       \
232                 RC4_ENC='$(RC4_ENC)' RC5_ENC='$(RC5_ENC)'       \
233                 SHA1_ASM_OBJ='$(SHA1_ASM_OBJ)'                  \
234                 MD5_ASM_OBJ='$(MD5_ASM_OBJ)'                    \
235                 RMD160_ASM_OBJ='$(RMD160_ASM_OBJ)'              \
236                 WP_ASM_OBJ='$(WP_ASM_OBJ)'                      \
237                 MODES_ASM_OBJ='$(MODES_ASM_OBJ)'                \
238                 ENGINES_ASM_OBJ='$(ENGINES_ASM_OBJ)'            \
239                 PERLASM_SCHEME='$(PERLASM_SCHEME)'              \
240                 FIPSLIBDIR='${FIPSLIBDIR}'                      \
241                 FIPSDIR='${FIPSDIR}'                            \
242                 FIPSCANLIB="$${FIPSCANLIB:-$(FIPSCANLIB)}"      \
243                 THIS=$${THIS:-$@} MAKEFILE=Makefile MAKEOVERRIDES=
244 # MAKEOVERRIDES= effectively "equalizes" GNU-ish and SysV-ish make flavors,
245 # which in turn eliminates ambiguities in variable treatment with -e.
246
247 # BUILD_CMD is a generic macro to build a given target in a given
248 # subdirectory.  The target must be given through the shell variable
249 # `target' and the subdirectory to build in must be given through `dir'.
250 # This macro shouldn't be used directly, use RECURSIVE_BUILD_CMD or
251 # BUILD_ONE_CMD instead.
252 #
253 # BUILD_ONE_CMD is a macro to build a given target in a given
254 # subdirectory if that subdirectory is part of $(DIRS).  It requires
255 # exactly the same shell variables as BUILD_CMD.
256 #
257 # RECURSIVE_BUILD_CMD is a macro to build a given target in all
258 # subdirectories defined in $(DIRS).  It requires that the target
259 # is given through the shell variable `target'.
260 BUILD_CMD=  if [ -d "$$dir" ]; then \
261             (   cd $$dir && echo "making $$target in $$dir..." && \
262                 $(CLEARENV) && $(MAKE) -e $(BUILDENV) TOP=.. DIR=$$dir $$target \
263             ) || exit 1; \
264             fi
265 RECURSIVE_BUILD_CMD=for dir in $(DIRS); do $(BUILD_CMD); done
266 BUILD_ONE_CMD=\
267         if expr " $(DIRS) " : ".* $$dir " >/dev/null 2>&1; then \
268                 $(BUILD_CMD); \
269         fi
270
271 reflect:
272         @[ -n "$(THIS)" ] && $(CLEARENV) && $(MAKE) $(THIS) -e $(BUILDENV)
273
274 sub_all: build_all
275
276 build_all: build_libs build_apps build_tests build_tools
277
278 build_libs: build_libcrypto build_libssl openssl.pc
279
280 build_libcrypto: build_crypto build_engines libcrypto.pc
281 build_libssl: build_ssl libssl.pc
282
283 build_crypto:
284         @dir=crypto; target=all; $(BUILD_ONE_CMD)
285 build_ssl: build_crypto
286         @dir=ssl; target=all; $(BUILD_ONE_CMD)
287 build_engines: build_crypto
288         @dir=engines; target=all; $(BUILD_ONE_CMD)
289 build_apps: build_libs
290         @dir=apps; target=all; $(BUILD_ONE_CMD)
291 build_tests: build_libs
292         @dir=test; target=all; $(BUILD_ONE_CMD)
293 build_tools: build_libs
294         @dir=tools; target=all; $(BUILD_ONE_CMD)
295
296 all_testapps: build_libs build_testapps
297 build_testapps:
298         @dir=crypto; target=testapps; $(BUILD_ONE_CMD)
299
300 fips_premain_dso$(EXE_EXT): libcrypto.a
301         [ -z "$(FIPSCANLIB)" ] || $(CC) $(CFLAG) -Iinclude \
302                 -DFINGERPRINT_PREMAIN_DSO_LOAD -o $@  \
303                 $(FIPSLIBDIR)fips_premain.c $(FIPSLIBDIR)fipscanister.o \
304                 libcrypto.a $(EX_LIBS)
305
306 libcrypto$(SHLIB_EXT): libcrypto.a fips_premain_dso$(EXE_EXT)
307         @if [ "$(SHLIB_TARGET)" != "" ]; then \
308                 if [ "$(FIPSCANLIB)" = "libcrypto" ]; then \
309                         FIPSLD_LIBCRYPTO=libcrypto.a ; \
310                         FIPSLD_CC="$(CC)"; CC=$(FIPSDIR)/bin/fipsld; \
311                         export CC FIPSLD_CC FIPSLD_LIBCRYPTO; \
312                 fi; \
313                 $(MAKE) -e SHLIBDIRS=crypto  CC="$${CC:-$(CC)}" build-shared && \
314                 (touch -c fips_premain_dso$(EXE_EXT) || :); \
315         else \
316                 echo "There's no support for shared libraries on this platform" >&2; \
317                 exit 1; \
318         fi
319
320 libssl$(SHLIB_EXT): libcrypto$(SHLIB_EXT) libssl.a
321         @if [ "$(SHLIB_TARGET)" != "" ]; then \
322                 $(MAKE) SHLIBDIRS=ssl SHLIBDEPS='-lcrypto' build-shared; \
323         else \
324                 echo "There's no support for shared libraries on this platform" >&2; \
325                 exit 1; \
326         fi
327
328 clean-shared:
329         @set -e; for i in $(SHLIBDIRS); do \
330                 if [ -n "$(SHARED_LIBS_LINK_EXTS)" ]; then \
331                         tmp="$(SHARED_LIBS_LINK_EXTS)"; \
332                         for j in $${tmp:-x}; do \
333                                 ( set -x; rm -f lib$$i$$j ); \
334                         done; \
335                 fi; \
336                 ( set -x; rm -f lib$$i$(SHLIB_EXT) ); \
337                 if expr "$(PLATFORM)" : "Cygwin" >/dev/null; then \
338                         ( set -x; rm -f cyg$$i$(SHLIB_EXT) lib$$i$(SHLIB_EXT).a ); \
339                 fi; \
340         done
341
342 link-shared:
343         @ set -e; for i in $(SHLIBDIRS); do \
344                 $(MAKE) -f $(HERE)/Makefile.shared -e $(BUILDENV) \
345                         LIBNAME=$$i LIBVERSION=$(SHLIB_MAJOR).$(SHLIB_MINOR) \
346                         LIBCOMPATVERSIONS=";$(SHLIB_VERSION_HISTORY)" \
347                         symlink.$(SHLIB_TARGET); \
348                 libs="$$libs -l$$i"; \
349         done
350
351 build-shared: do_$(SHLIB_TARGET) link-shared
352
353 do_$(SHLIB_TARGET):
354         @ set -e; libs='-L. $(SHLIBDEPS)'; for i in $(SHLIBDIRS); do \
355                 if [ "$$i" = "ssl" -a -n "$(LIBKRB5)" ]; then \
356                         libs="$(LIBKRB5) $$libs"; \
357                 fi; \
358                 $(CLEARENV) && $(MAKE) -f Makefile.shared -e $(BUILDENV) \
359                         LIBNAME=$$i LIBVERSION=$(SHLIB_MAJOR).$(SHLIB_MINOR) \
360                         LIBCOMPATVERSIONS=";$(SHLIB_VERSION_HISTORY)" \
361                         LIBDEPS="$$libs $(EX_LIBS)" \
362                         link_a.$(SHLIB_TARGET); \
363                 libs="-l$$i $$libs"; \
364         done
365
366 libcrypto.pc: Makefile
367         @ ( echo 'prefix=$(INSTALLTOP)'; \
368             echo 'exec_prefix=$${prefix}'; \
369             echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
370             echo 'includedir=$${prefix}/include'; \
371             echo ''; \
372             echo 'Name: OpenSSL-libcrypto'; \
373             echo 'Description: OpenSSL cryptography library'; \
374             echo 'Version: '$(VERSION); \
375             echo 'Requires: '; \
376             echo 'Libs: -L$${libdir} -lcrypto'; \
377             echo 'Libs.private: $(EX_LIBS)'; \
378             echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libcrypto.pc
379
380 libssl.pc: Makefile
381         @ ( echo 'prefix=$(INSTALLTOP)'; \
382             echo 'exec_prefix=$${prefix}'; \
383             echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
384             echo 'includedir=$${prefix}/include'; \
385             echo ''; \
386             echo 'Name: OpenSSL-libssl'; \
387             echo 'Description: Secure Sockets Layer and cryptography libraries'; \
388             echo 'Version: '$(VERSION); \
389             echo 'Requires.private: libcrypto'; \
390             echo 'Libs: -L$${libdir} -lssl'; \
391             echo 'Libs.private: $(EX_LIBS)'; \
392             echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libssl.pc
393
394 openssl.pc: Makefile
395         @ ( echo 'prefix=$(INSTALLTOP)'; \
396             echo 'exec_prefix=$${prefix}'; \
397             echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
398             echo 'includedir=$${prefix}/include'; \
399             echo ''; \
400             echo 'Name: OpenSSL'; \
401             echo 'Description: Secure Sockets Layer and cryptography libraries and tools'; \
402             echo 'Version: '$(VERSION); \
403             echo 'Requires: libssl libcrypto' ) > openssl.pc
404
405 Makefile: Makefile.org Configure config
406         @echo "Makefile is older than Makefile.org, Configure or config."
407         @echo "Reconfigure the source tree (via './config' or 'perl Configure'), please."
408         @false
409
410 libclean:
411         rm -f *.map *.so *.so.* *.dylib *.dll engines/*.so engines/*.dll engines/*.dylib *.a engines/*.a */lib */*/lib
412
413 clean:  libclean
414         rm -f shlib/*.o *.o core a.out fluff rehash.time testlog make.log cctest cctest.c
415         @set -e; target=clean; $(RECURSIVE_BUILD_CMD)
416         rm -f $(LIBS)
417         rm -f openssl.pc libssl.pc libcrypto.pc
418         rm -f speed.* .pure
419         rm -f $(TARFILE)
420         @set -e; for i in $(ONEDIRS) ;\
421         do \
422         rm -fr $$i/*; \
423         done
424
425 makefile.one: files
426         $(PERL) util/mk1mf.pl >makefile.one; \
427         sh util/do_ms.sh
428
429 files:
430         $(PERL) $(TOP)/util/files.pl Makefile > $(TOP)/MINFO
431         @set -e; target=files; $(RECURSIVE_BUILD_CMD)
432
433 links:
434         @$(PERL) $(TOP)/util/mkdir-p.pl include/openssl
435         @$(PERL) $(TOP)/util/mklink.pl include/openssl $(EXHEADER)
436         @set -e; target=links; $(RECURSIVE_BUILD_CMD)
437
438 gentests:
439         @(cd test && echo "generating dummy tests (if needed)..." && \
440         $(CLEARENV) && $(MAKE) -e $(BUILDENV) TESTS='$(TESTS)' OPENSSL_DEBUG_MEMORY=on generate );
441
442 dclean:
443         rm -rf *.bak include/openssl certs/.0
444         @set -e; target=dclean; $(RECURSIVE_BUILD_CMD)
445
446 rehash: rehash.time
447 rehash.time: certs apps
448         @if [ -z "$(CROSS_COMPILE)" ]; then \
449                 (OPENSSL="`pwd`/util/opensslwrap.sh"; \
450                 [ -x "apps/openssl.exe" ] && OPENSSL="apps/openssl.exe" || :; \
451                 OPENSSL_DEBUG_MEMORY=on; \
452                 export OPENSSL OPENSSL_DEBUG_MEMORY; \
453                 $(PERL) tools/c_rehash certs/demo) && \
454                 touch rehash.time; \
455         else :; fi
456
457 test:   tests
458
459 tests: rehash
460         @(cd test && echo "testing..." && \
461         $(CLEARENV) && $(MAKE) -e $(BUILDENV) TOP=.. TESTS='$(TESTS)' OPENSSL_DEBUG_MEMORY=on OPENSSL_CONF=../apps/openssl.cnf tests );
462         OPENSSL_CONF=apps/openssl.cnf util/opensslwrap.sh version -a
463
464 report:
465         @$(PERL) util/selftest.pl
466
467 update: errors stacks util/libeay.num util/ssleay.num TABLE
468         @set -e; target=update; $(RECURSIVE_BUILD_CMD)
469
470 depend:
471         @set -e; target=depend; $(RECURSIVE_BUILD_CMD)
472
473 lint:
474         @set -e; target=lint; $(RECURSIVE_BUILD_CMD)
475
476 tags:
477         rm -f TAGS
478         find . -name '[^.]*.[ch]' | xargs etags -a
479
480 errors:
481         $(PERL) util/ck_errf.pl -strict */*.c */*/*.c
482         $(PERL) util/mkerr.pl -recurse -write
483         (cd engines; $(MAKE) PERL=$(PERL) errors)
484
485 stacks:
486         $(PERL) util/mkstack.pl -write
487
488 util/libeay.num::
489         $(PERL) util/mkdef.pl crypto update
490
491 util/ssleay.num::
492         $(PERL) util/mkdef.pl ssl update
493
494 TABLE: Configure
495         (echo 'Output of `Configure TABLE'"':"; \
496         $(PERL) Configure TABLE) > TABLE
497
498 # Build distribution tar-file. As the list of files returned by "find" is
499 # pretty long, on several platforms a "too many arguments" error or similar
500 # would occur. Therefore the list of files is temporarily stored into a file
501 # and read directly, requiring GNU-Tar. Call "make TAR=gtar dist" if the normal
502 # tar does not support the --files-from option.
503 TAR_COMMAND=$(TAR) $(TARFLAGS) --files-from $(TARFILE).list \
504                                --owner 0 --group 0 \
505                                --transform 's|^|$(NAME)/|' \
506                                -cvf -
507
508 $(TARFILE).list:
509         find * \! -name STATUS \! -name TABLE \! -name '*.o' \! -name '*.a' \
510                \! -name '*.so' \! -name '*.so.*'  \! -name 'openssl' \
511                \( \! -name '*test' -o -name bctest -o -name pod2mantest \) \
512                \! -name '.#*' \! -name '*~' \! -type l \
513             | sort > $(TARFILE).list
514
515 tar: $(TARFILE).list
516         find . -type d -print | xargs chmod 755
517         find . -type f -print | xargs chmod a+r
518         find . -type f -perm -0100 -print | xargs chmod a+x
519         $(TAR_COMMAND) | gzip --best > $(TARFILE).gz
520         rm -f $(TARFILE).list
521         ls -l $(TARFILE).gz
522
523 tar-snap: $(TARFILE).list
524         $(TAR_COMMAND) > $(TARFILE)
525         rm -f $(TARFILE).list
526         ls -l $(TARFILE)
527
528 dist:   
529         $(PERL) Configure dist
530         @$(MAKE) SDIRS='$(SDIRS)' clean
531         @$(MAKE) TAR='$(TAR)' TARFLAGS='$(TARFLAGS)' $(DISTTARVARS) tar
532
533 install: all install_docs install_sw
534
535 install_sw:
536         @$(PERL) $(TOP)/util/mkdir-p.pl $(INSTALL_PREFIX)$(INSTALLTOP)/bin \
537                 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR) \
538                 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines \
539                 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig \
540                 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl \
541                 $(INSTALL_PREFIX)$(OPENSSLDIR)/misc \
542                 $(INSTALL_PREFIX)$(OPENSSLDIR)/certs \
543                 $(INSTALL_PREFIX)$(OPENSSLDIR)/private
544         @set -e; headerlist="$(EXHEADER)"; for i in $$headerlist;\
545         do \
546         (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
547         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
548         done;
549         @set -e; target=install; $(RECURSIVE_BUILD_CMD)
550         @set -e; liblist="$(LIBS)"; for i in $$liblist ;\
551         do \
552                 if [ -f "$$i" ]; then \
553                 (       echo installing $$i; \
554                         cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
555                         $(RANLIB) $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
556                         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
557                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i ); \
558                 fi; \
559         done;
560         @set -e; if [ -n "$(SHARED_LIBS)" ]; then \
561                 tmp="$(SHARED_LIBS)"; \
562                 for i in $${tmp:-x}; \
563                 do \
564                         if [ -f "$$i" -o -f "$$i.a" ]; then \
565                         (       echo installing $$i; \
566                                 if expr "$(PLATFORM)" : "Cygwin" >/dev/null; then \
567                                         c=`echo $$i | sed 's/^lib\(.*\)\.dll\.a/cyg\1-$(SHLIB_VERSION_NUMBER).dll/'`; \
568                                         cp $$c $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
569                                         chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
570                                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c; \
571                                         cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
572                                         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
573                                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i; \
574                                 else \
575                                         cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
576                                         chmod 555 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
577                                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i; \
578                                 fi ); \
579                                 if expr $(PLATFORM) : 'mingw' > /dev/null; then \
580                                 (       case $$i in \
581                                                 *crypto*) i=libeay32.dll;; \
582                                                 *ssl*)    i=ssleay32.dll;; \
583                                         esac; \
584                                         echo installing $$i; \
585                                         cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \
586                                         chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \
587                                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i ); \
588                                 fi; \
589                         fi; \
590                 done; \
591                 (       here="`pwd`"; \
592                         cd $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR); \
593                         $(MAKE) -f $$here/Makefile HERE="$$here" link-shared ); \
594                 if [ "$(INSTALLTOP)" != "/usr" ]; then \
595                         echo 'OpenSSL shared libraries have been installed in:'; \
596                         echo '  $(INSTALLTOP)'; \
597                         echo ''; \
598                         sed -e '1,/^$$/d' doc/openssl-shared.txt; \
599                 fi; \
600         fi
601         cp libcrypto.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
602         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libcrypto.pc
603         cp libssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
604         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libssl.pc
605         cp openssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
606         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/openssl.pc
607
608 install_html_docs:
609         here="`pwd`"; \
610         filecase=; \
611         case "$(PLATFORM)" in DJGPP|Cygwin*|mingw*|darwin*-*-cc) \
612                 filecase=-i; \
613         esac; \
614         for subdir in apps crypto ssl; do \
615                 mkdir -p $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir; \
616                 for i in doc/$$subdir/*.pod; do \
617                         fn=`basename $$i .pod`; \
618                         echo "installing html/$$fn.$(HTMLSUFFIX)"; \
619                         cat $$i \
620                         | sed -r 's/L<([^)]*)(\([0-9]\))?\|([^)]*)(\([0-9]\))?>/L<\1|\3>/g' \
621                         | pod2html --podroot=doc --htmlroot=.. --podpath=apps:crypto:ssl \
622                         | sed -r 's/<!DOCTYPE.*//g' \
623                         > $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir/$$fn.$(HTMLSUFFIX); \
624                         $(PERL) util/extract-names.pl < $$i | \
625                                 grep -v $$filecase "^$$fn\$$" | \
626                                 (cd $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir; \
627                                  while read n; do \
628                                         PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$(HTMLSUFFIX) "$$n".$(HTMLSUFFIX); \
629                                  done); \
630                 done; \
631         done
632
633 install_docs:
634         @$(PERL) $(TOP)/util/mkdir-p.pl \
635                 $(INSTALL_PREFIX)$(MANDIR)/man1 \
636                 $(INSTALL_PREFIX)$(MANDIR)/man3 \
637                 $(INSTALL_PREFIX)$(MANDIR)/man5 \
638                 $(INSTALL_PREFIX)$(MANDIR)/man7
639         @pod2man="`cd ./util; ./pod2mantest $(PERL)`"; \
640         here="`pwd`"; \
641         filecase=; \
642         case "$(PLATFORM)" in DJGPP|Cygwin*|mingw*|darwin*-*-cc) \
643                 filecase=-i; \
644         esac; \
645         set -e; for i in doc/apps/*.pod; do \
646                 fn=`basename $$i .pod`; \
647                 sec=`$(PERL) util/extract-section.pl 1 < $$i`; \
648                 echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
649                 (cd `$(PERL) util/dirname.pl $$i`; \
650                 sh -c "$$pod2man \
651                         --section=$$sec --center=OpenSSL \
652                         --release=$(VERSION) `basename $$i`") \
653                         >  $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
654                 $(PERL) util/extract-names.pl < $$i | \
655                         (grep -v $$filecase "^$$fn\$$"; true) | \
656                         (grep -v "[     ]"; true) | \
657                         (cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
658                          while read n; do \
659                                 PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
660                          done); \
661         done; \
662         set -e; for i in doc/crypto/*.pod doc/ssl/*.pod; do \
663                 fn=`basename $$i .pod`; \
664                 sec=`$(PERL) util/extract-section.pl 3 < $$i`; \
665                 echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
666                 (cd `$(PERL) util/dirname.pl $$i`; \
667                 sh -c "$$pod2man \
668                         --section=$$sec --center=OpenSSL \
669                         --release=$(VERSION) `basename $$i`") \
670                         >  $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
671                 $(PERL) util/extract-names.pl < $$i | \
672                         (grep -v $$filecase "^$$fn\$$"; true) | \
673                         (grep -v "[     ]"; true) | \
674                         (cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
675                          while read n; do \
676                                 PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
677                          done); \
678         done
679
680 # DO NOT DELETE THIS LINE -- make depend depends on it.