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