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