Add enginesdir to libcrypto.pc pkg-config file
[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 'enginesdir=$${libdir}/engines'; \
372             echo ''; \
373             echo 'Name: OpenSSL-libcrypto'; \
374             echo 'Description: OpenSSL cryptography library'; \
375             echo 'Version: '$(VERSION); \
376             echo 'Requires: '; \
377             echo 'Libs: -L$${libdir} -lcrypto'; \
378             echo 'Libs.private: $(EX_LIBS)'; \
379             echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libcrypto.pc
380
381 libssl.pc: Makefile
382         @ ( echo 'prefix=$(INSTALLTOP)'; \
383             echo 'exec_prefix=$${prefix}'; \
384             echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
385             echo 'includedir=$${prefix}/include'; \
386             echo ''; \
387             echo 'Name: OpenSSL-libssl'; \
388             echo 'Description: Secure Sockets Layer and cryptography libraries'; \
389             echo 'Version: '$(VERSION); \
390             echo 'Requires.private: libcrypto'; \
391             echo 'Libs: -L$${libdir} -lssl'; \
392             echo 'Libs.private: $(EX_LIBS)'; \
393             echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libssl.pc
394
395 openssl.pc: Makefile
396         @ ( echo 'prefix=$(INSTALLTOP)'; \
397             echo 'exec_prefix=$${prefix}'; \
398             echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
399             echo 'includedir=$${prefix}/include'; \
400             echo ''; \
401             echo 'Name: OpenSSL'; \
402             echo 'Description: Secure Sockets Layer and cryptography libraries and tools'; \
403             echo 'Version: '$(VERSION); \
404             echo 'Requires: libssl libcrypto' ) > openssl.pc
405
406 Makefile: Makefile.org Configure config
407         @echo "Makefile is older than Makefile.org, Configure or config."
408         @echo "Reconfigure the source tree (via './config' or 'perl Configure'), please."
409         @false
410
411 libclean:
412         rm -f *.map *.so *.so.* *.dylib *.dll engines/*.so engines/*.dll engines/*.dylib *.a engines/*.a */lib */*/lib
413
414 clean:  libclean
415         rm -f shlib/*.o *.o core a.out fluff rehash.time testlog make.log cctest cctest.c
416         @set -e; target=clean; $(RECURSIVE_BUILD_CMD)
417         rm -f $(LIBS)
418         rm -f openssl.pc libssl.pc libcrypto.pc
419         rm -f speed.* .pure
420         rm -f $(TARFILE)
421         @set -e; for i in $(ONEDIRS) ;\
422         do \
423         rm -fr $$i/*; \
424         done
425
426 makefile.one: files
427         $(PERL) util/mk1mf.pl >makefile.one; \
428         sh util/do_ms.sh
429
430 files:
431         $(PERL) $(TOP)/util/files.pl Makefile > $(TOP)/MINFO
432         @set -e; target=files; $(RECURSIVE_BUILD_CMD)
433
434 links:
435         @$(PERL) $(TOP)/util/mkdir-p.pl include/openssl
436         @$(PERL) $(TOP)/util/mklink.pl include/openssl $(EXHEADER)
437         @set -e; target=links; $(RECURSIVE_BUILD_CMD)
438
439 gentests:
440         @(cd test && echo "generating dummy tests (if needed)..." && \
441         $(CLEARENV) && $(MAKE) -e $(BUILDENV) TESTS='$(TESTS)' OPENSSL_DEBUG_MEMORY=on generate );
442
443 dclean:
444         rm -rf *.bak include/openssl certs/.0
445         @set -e; target=dclean; $(RECURSIVE_BUILD_CMD)
446
447 rehash: rehash.time
448 rehash.time: certs apps
449         @if [ -z "$(CROSS_COMPILE)" ]; then \
450                 (OPENSSL="`pwd`/util/opensslwrap.sh"; \
451                 [ -x "apps/openssl.exe" ] && OPENSSL="apps/openssl.exe" || :; \
452                 OPENSSL_DEBUG_MEMORY=on; \
453                 export OPENSSL OPENSSL_DEBUG_MEMORY; \
454                 $(PERL) tools/c_rehash certs/demo) && \
455                 touch rehash.time; \
456         else :; fi
457
458 test:   tests
459
460 tests: rehash
461         @(cd test && echo "testing..." && \
462         $(CLEARENV) && $(MAKE) -e $(BUILDENV) TOP=.. TESTS='$(TESTS)' OPENSSL_DEBUG_MEMORY=on OPENSSL_CONF=../apps/openssl.cnf tests );
463         OPENSSL_CONF=apps/openssl.cnf util/opensslwrap.sh version -a
464
465 report:
466         @$(PERL) util/selftest.pl
467
468 update: errors stacks util/libeay.num util/ssleay.num TABLE
469         @set -e; target=update; $(RECURSIVE_BUILD_CMD)
470
471 depend:
472         @set -e; target=depend; $(RECURSIVE_BUILD_CMD)
473
474 lint:
475         @set -e; target=lint; $(RECURSIVE_BUILD_CMD)
476
477 tags:
478         rm -f TAGS
479         find . -name '[^.]*.[ch]' | xargs etags -a
480
481 errors:
482         $(PERL) util/ck_errf.pl -strict */*.c */*/*.c
483         $(PERL) util/mkerr.pl -recurse -write
484         (cd engines; $(MAKE) PERL=$(PERL) errors)
485
486 stacks:
487         $(PERL) util/mkstack.pl -write
488
489 util/libeay.num::
490         $(PERL) util/mkdef.pl crypto update
491
492 util/ssleay.num::
493         $(PERL) util/mkdef.pl ssl update
494
495 TABLE: Configure
496         (echo 'Output of `Configure TABLE'"':"; \
497         $(PERL) Configure TABLE) > TABLE
498
499 # Build distribution tar-file. As the list of files returned by "find" is
500 # pretty long, on several platforms a "too many arguments" error or similar
501 # would occur. Therefore the list of files is temporarily stored into a file
502 # and read directly, requiring GNU-Tar. Call "make TAR=gtar dist" if the normal
503 # tar does not support the --files-from option.
504 TAR_COMMAND=$(TAR) $(TARFLAGS) --files-from $(TARFILE).list \
505                                --owner 0 --group 0 \
506                                --transform 's|^|$(NAME)/|' \
507                                -cvf -
508
509 $(TARFILE).list:
510         find * \! -name STATUS \! -name TABLE \! -name '*.o' \! -name '*.a' \
511                \! -name '*.so' \! -name '*.so.*'  \! -name 'openssl' \
512                \( \! -name '*test' -o -name bctest -o -name pod2mantest \) \
513                \! -name '.#*' \! -name '*~' \! -type l \
514             | sort > $(TARFILE).list
515
516 tar: $(TARFILE).list
517         find . -type d -print | xargs chmod 755
518         find . -type f -print | xargs chmod a+r
519         find . -type f -perm -0100 -print | xargs chmod a+x
520         $(TAR_COMMAND) | gzip --best > $(TARFILE).gz
521         rm -f $(TARFILE).list
522         ls -l $(TARFILE).gz
523
524 tar-snap: $(TARFILE).list
525         $(TAR_COMMAND) > $(TARFILE)
526         rm -f $(TARFILE).list
527         ls -l $(TARFILE)
528
529 dist:   
530         $(PERL) Configure dist
531         @$(MAKE) SDIRS='$(SDIRS)' clean
532         @$(MAKE) TAR='$(TAR)' TARFLAGS='$(TARFLAGS)' $(DISTTARVARS) tar
533
534 install: all install_docs install_sw
535
536 install_sw:
537         @$(PERL) $(TOP)/util/mkdir-p.pl $(INSTALL_PREFIX)$(INSTALLTOP)/bin \
538                 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR) \
539                 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines \
540                 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig \
541                 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl \
542                 $(INSTALL_PREFIX)$(OPENSSLDIR)/misc \
543                 $(INSTALL_PREFIX)$(OPENSSLDIR)/certs \
544                 $(INSTALL_PREFIX)$(OPENSSLDIR)/private
545         @set -e; headerlist="$(EXHEADER)"; for i in $$headerlist;\
546         do \
547         (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
548         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
549         done;
550         @set -e; target=install; $(RECURSIVE_BUILD_CMD)
551         @set -e; liblist="$(LIBS)"; for i in $$liblist ;\
552         do \
553                 if [ -f "$$i" ]; then \
554                 (       echo installing $$i; \
555                         cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
556                         $(RANLIB) $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
557                         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
558                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i ); \
559                 fi; \
560         done;
561         @set -e; if [ -n "$(SHARED_LIBS)" ]; then \
562                 tmp="$(SHARED_LIBS)"; \
563                 for i in $${tmp:-x}; \
564                 do \
565                         if [ -f "$$i" -o -f "$$i.a" ]; then \
566                         (       echo installing $$i; \
567                                 if expr "$(PLATFORM)" : "Cygwin" >/dev/null; then \
568                                         c=`echo $$i | sed 's/^lib\(.*\)\.dll\.a/cyg\1-$(SHLIB_VERSION_NUMBER).dll/'`; \
569                                         cp $$c $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
570                                         chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
571                                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c; \
572                                         cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
573                                         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
574                                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i; \
575                                 else \
576                                         cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
577                                         chmod 555 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
578                                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i; \
579                                 fi ); \
580                                 if expr $(PLATFORM) : 'mingw' > /dev/null; then \
581                                 (       case $$i in \
582                                                 *crypto*) i=libeay32.dll;; \
583                                                 *ssl*)    i=ssleay32.dll;; \
584                                         esac; \
585                                         echo installing $$i; \
586                                         cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \
587                                         chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \
588                                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i ); \
589                                 fi; \
590                         fi; \
591                 done; \
592                 (       here="`pwd`"; \
593                         cd $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR); \
594                         $(MAKE) -f $$here/Makefile HERE="$$here" link-shared ); \
595                 if [ "$(INSTALLTOP)" != "/usr" ]; then \
596                         echo 'OpenSSL shared libraries have been installed in:'; \
597                         echo '  $(INSTALLTOP)'; \
598                         echo ''; \
599                         sed -e '1,/^$$/d' doc/openssl-shared.txt; \
600                 fi; \
601         fi
602         cp libcrypto.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
603         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libcrypto.pc
604         cp libssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
605         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libssl.pc
606         cp openssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
607         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/openssl.pc
608
609 install_html_docs:
610         here="`pwd`"; \
611         filecase=; \
612         case "$(PLATFORM)" in DJGPP|Cygwin*|mingw*|darwin*-*-cc) \
613                 filecase=-i; \
614         esac; \
615         for subdir in apps crypto ssl; do \
616                 mkdir -p $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir; \
617                 for i in doc/$$subdir/*.pod; do \
618                         fn=`basename $$i .pod`; \
619                         echo "installing html/$$fn.$(HTMLSUFFIX)"; \
620                         cat $$i \
621                         | sed -r 's/L<([^)]*)(\([0-9]\))?\|([^)]*)(\([0-9]\))?>/L<\1|\3>/g' \
622                         | pod2html --podroot=doc --htmlroot=.. --podpath=apps:crypto:ssl \
623                         | sed -r 's/<!DOCTYPE.*//g' \
624                         > $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir/$$fn.$(HTMLSUFFIX); \
625                         $(PERL) util/extract-names.pl < $$i | \
626                                 grep -v $$filecase "^$$fn\$$" | \
627                                 (cd $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir; \
628                                  while read n; do \
629                                         PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$(HTMLSUFFIX) "$$n".$(HTMLSUFFIX); \
630                                  done); \
631                 done; \
632         done
633
634 install_docs:
635         @$(PERL) $(TOP)/util/mkdir-p.pl \
636                 $(INSTALL_PREFIX)$(MANDIR)/man1 \
637                 $(INSTALL_PREFIX)$(MANDIR)/man3 \
638                 $(INSTALL_PREFIX)$(MANDIR)/man5 \
639                 $(INSTALL_PREFIX)$(MANDIR)/man7
640         @pod2man="`cd ./util; ./pod2mantest $(PERL)`"; \
641         here="`pwd`"; \
642         filecase=; \
643         case "$(PLATFORM)" in DJGPP|Cygwin*|mingw*|darwin*-*-cc) \
644                 filecase=-i; \
645         esac; \
646         set -e; for i in doc/apps/*.pod; do \
647                 fn=`basename $$i .pod`; \
648                 sec=`$(PERL) util/extract-section.pl 1 < $$i`; \
649                 echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
650                 (cd `$(PERL) util/dirname.pl $$i`; \
651                 sh -c "$$pod2man \
652                         --section=$$sec --center=OpenSSL \
653                         --release=$(VERSION) `basename $$i`") \
654                         >  $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
655                 $(PERL) util/extract-names.pl < $$i | \
656                         (grep -v $$filecase "^$$fn\$$"; true) | \
657                         (grep -v "[     ]"; true) | \
658                         (cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
659                          while read n; do \
660                                 PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
661                          done); \
662         done; \
663         set -e; for i in doc/crypto/*.pod doc/ssl/*.pod; do \
664                 fn=`basename $$i .pod`; \
665                 sec=`$(PERL) util/extract-section.pl 3 < $$i`; \
666                 echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
667                 (cd `$(PERL) util/dirname.pl $$i`; \
668                 sh -c "$$pod2man \
669                         --section=$$sec --center=OpenSSL \
670                         --release=$(VERSION) `basename $$i`") \
671                         >  $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
672                 $(PERL) util/extract-names.pl < $$i | \
673                         (grep -v $$filecase "^$$fn\$$"; true) | \
674                         (grep -v "[     ]"; true) | \
675                         (cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
676                          while read n; do \
677                                 PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
678                          done); \
679         done
680
681 # DO NOT DELETE THIS LINE -- make depend depends on it.