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