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