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