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