]> git.ipfire.org Git - thirdparty/openssl.git/blob - Makefile.in
RT4272: Unit tests fail when DTLS disabled
[thirdparty/openssl.git] / Makefile.in
1 ##
2 ## Makefile for OpenSSL
3 ##
4 ## {- join("\n## ", @autowarntext) -}
5
6 VERSION={- $config{version} -}
7 MAJOR={- $config{major} -}
8 MINOR={- $config{minor} -}
9 SHLIB_VERSION_NUMBER={- $config{shlib_version_number} -}
10 SHLIB_VERSION_HISTORY={- $config{shlib_version_history} -}
11 SHLIB_MAJOR={- $config{shlib_major} -}
12 SHLIB_MINOR={- $config{shlib_minor} -}
13 SHLIB_EXT={- $target{shared_extension} -}
14 PLATFORM={- $config{target} -}
15 OPTIONS={- $config{options} -}
16 CONFIGURE_ARGS=({- join(", ",quotify_l(@{$config{perlargv}})) -})
17 SHLIB_TARGET={- $target{shared_target} -}
18
19 # HERE indicates where this Makefile lives. This can be used to indicate
20 # where sub-Makefiles are expected to be. Currently has very limited usage,
21 # and should probably not be bothered with at all.
22 HERE=.
23
24 # INSTALL_PREFIX is for package builders so that they can configure
25 # for, say, /usr/ and yet have everything installed to /tmp/somedir/usr/.
26 # Normally it is left empty.
27 INSTALL_PREFIX={- $config{install_prefix} -}
28
29 # Do not edit these manually. Use Configure with --prefix or --openssldir
30 # to change this! Short explanation in the top comment in Configure
31 INSTALLTOP={- $config{prefix} -}
32 OPENSSLDIR={- $config{openssldir} -}
33
34 # NO_IDEA - Define to build without the IDEA algorithm
35 # NO_RC4 - Define to build without the RC4 algorithm
36 # NO_RC2 - Define to build without the RC2 algorithm
37 # THREADS - Define when building with threads, you will probably also need any
38 # system defines as well, i.e. _REENTRANT for Solaris 2.[34]
39 # TERMIO - Define the termio terminal subsystem, needed if sgtty is missing.
40 # TERMIOS - Define the termios terminal subsystem, Silicon Graphics.
41 # LONGCRYPT - Define to use HPUX 10.x's long password modification to crypt(3).
42 # DEVRANDOM - Give this the value of the 'random device' if your OS supports
43 # one. 32 bytes will be read from this when the random
44 # number generator is initalised.
45 # SSL_FORBID_ENULL - define if you want the server to be not able to use the
46 # NULL encryption ciphers.
47 #
48 # LOCK_DEBUG - turns on lots of lock debug output :-)
49 # REF_CHECK - turn on some xyz_free() assertions.
50 # REF_PRINT - prints some stuff on structure free.
51 # MFUNC - Make all Malloc/Free/Realloc calls call
52 # CRYPTO_malloc/CRYPTO_free/CRYPTO_realloc which can be setup to
53 # call application defined callbacks via CRYPTO_set_mem_functions()
54 # MD5_ASM needs to be defined to use the x86 assembler for MD5
55 # SHA1_ASM needs to be defined to use the x86 assembler for SHA1
56 # RMD160_ASM needs to be defined to use the x86 assembler for RIPEMD160
57 # Do not define B_ENDIAN or L_ENDIAN if 'unsigned long' == 8. It must
58 # equal 4.
59 # PKCS1_CHECK - pkcs1 tests.
60
61 CROSS_COMPILE= {- $config{cross_compile_prefix} -}
62 CC= $(CROSS_COMPILE){- $target{cc} -}
63 CFLAG= {- $config{cflags} -}
64 DEPFLAG= {- $config{depflags} -}
65 PEX_LIBS= {- $config{prelflags} -}
66 EX_LIBS= {- $config{lflags} -}
67 EXE_EXT= {- $target{exe_extension} -}
68 ARFLAGS= {- $target{arflags} -}
69 AR=$(CROSS_COMPILE){- $target{ar} -} $(ARFLAGS) r
70 RANLIB= {- $target{ranlib} -}
71 NM= $(CROSS_COMPILE){- $target{nm} -}
72 PERL= {- $config{perl} -}
73 #RM= echo --
74 RM= rm -f
75 TAR= tar
76 TARFLAGS= --no-recursion
77 MAKEDEPPROG=$(CROSS_COMPILE){- $config{makedepprog} -}
78 LIBDIR={- $config{libdir} -}
79
80 # We let the C compiler driver to take care of .s files. This is done in
81 # order to be excused from maintaining a separate set of architecture
82 # dependent assembler flags. E.g. if you throw -mcpu=ultrasparc at SPARC
83 # gcc, then the driver will automatically translate it to -xarch=v8plus
84 # and pass it down to assembler.
85 AS=$(CC) -c
86 ASFLAG=$(CFLAG)
87
88 # For x86 assembler: Set PROCESSOR to 386 if you want to support
89 # the 80386.
90 PROCESSOR= {- $config{processor} -}
91
92 # CPUID module collects small commonly used assembler snippets
93 CPUID_OBJ= {- $target{cpuid_obj} -}
94 BN_ASM= {- $target{bn_obj} -}
95 EC_ASM= {- $target{ec_obj} -}
96 DES_ENC= {- $target{des_obj} -}
97 AES_ENC= {- $target{aes_obj} -}
98 BF_ENC= {- $target{bf_obj} -}
99 CAST_ENC= {- $target{cast_obj} -}
100 RC4_ENC= {- $target{rc4_obj} -}
101 RC5_ENC= {- $target{rc5_obj} -}
102 MD5_ASM_OBJ= {- $target{md5_obj} -}
103 SHA1_ASM_OBJ= {- $target{sha1_obj} -}
104 RMD160_ASM_OBJ= {- $target{rmd160_obj} -}
105 WP_ASM_OBJ= {- $target{wp_obj} -}
106 CMLL_ENC= {- $target{cmll_obj} -}
107 MODES_ASM_OBJ= {- $target{modes_obj} -}
108 PADLOCK_ASM_OBJ= {- $target{padlock_obj} -}
109 CHACHA_ENC= {- $target{chacha_obj} -}
110 POLY1305_ASM_OBJ= {- $target{poly1305_obj} -}
111 PERLASM_SCHEME= {- $target{perlasm_scheme} -}
112
113 # Zlib stuff
114 ZLIB_INCLUDE={- $withargs{zlib-include} -}
115 LIBZLIB={- $withargs{zlib-lib} -}
116
117 # This is the location of fipscanister.o and friends.
118 # The FIPS module build will place it $(INSTALLTOP)/lib
119 # but since $(INSTALLTOP) can only take the default value
120 # when the module is built it will be in /usr/local/ssl/lib
121 # $(INSTALLTOP) for this build may be different so hard
122 # code the path.
123
124 FIPSLIBDIR={- $config{fipslibdir} -}
125
126 # The location of the library which contains fipscanister.o
127 # normally it will be libcrypto. If not compiling in FIPS mode
128 # at all this is empty making it a useful test for a FIPS compile.
129
130 FIPSCANLIB={- $config{fips} ? "libcrypto" : "" -}
131
132 # Shared library base address. Currently only used on Windows.
133 #
134
135 BASEADDR={- $config{baseaddr} -}
136
137 DIRS= {- join(" ", @{$config{dirs}}) -}
138 SHLIBDIRS= crypto ssl
139 INSTALL_SUBS= engines apps tools
140
141 # dirs in crypto to build
142 SDIRS= {- join(" ", @{$config{sdirs}}) -}
143
144 # tests to perform. "alltests" is a special word indicating that all tests
145 # should be performed.
146 TESTS = alltests
147
148 MAKEFILE= Makefile
149
150 MANDIR=$(INSTALLTOP)/share/man
151 MAN1=1
152 MAN3=3
153 MANSUFFIX=
154 HTMLSUFFIX=html
155 HTMLDIR=$(INSTALLTOP)/share/doc/$(BASENAME)/html
156 SHELL=/bin/sh
157
158 TOP= .
159 LIBS= libcrypto.a libssl.a
160 SHARED_CRYPTO=libcrypto$(SHLIB_EXT)
161 SHARED_SSL=libssl$(SHLIB_EXT)
162 SHARED_LIBS={- '$(SHARED_CRYPTO) $(SHARED_SSL)' if (!$config{no_shared}) -}
163 SHARED_LIBS_LINK_EXTS={- $config{shared_link_extensions} -}
164 SHARED_LDFLAGS={- $target{shared_ldflag} -}
165
166 GENERAL= Makefile
167 BASENAME= openssl
168 NAME= $(BASENAME)-$(VERSION)
169 TARFILE= ../$(NAME).tar
170 HEADER= e_os.h
171
172 # Directories created on install if they don't exist.
173 INSTALLDIRS= \
174 $(INSTALL_PREFIX)$(INSTALLTOP)/bin \
175 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR) \
176 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines \
177 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig \
178 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl \
179 $(INSTALL_PREFIX)$(OPENSSLDIR)/misc \
180 $(INSTALL_PREFIX)$(OPENSSLDIR)/certs \
181 $(INSTALL_PREFIX)$(OPENSSLDIR)/private
182
183 all: Makefile build_all
184
185 # as we stick to -e, CLEARENV ensures that local variables in lower
186 # Makefiles remain local and variable. $${VAR+VAR} is tribute to Korn
187 # shell, which [annoyingly enough] terminates unset with error if VAR
188 # is not present:-( TOP= && unset TOP is tribute to HP-UX /bin/sh,
189 # which terminates unset with error if no variable was present:-(
190 CLEARENV= TOP= && unset TOP $${LIB+LIB} $${LIBS+LIBS} \
191 $${INCLUDE+INCLUDE} $${INCLUDES+INCLUDES} \
192 $${DIR+DIR} $${DIRS+DIRS} $${SRC+SRC} \
193 $${LIBSRC+LIBSRC} $${LIBOBJ+LIBOBJ} $${ALL+ALL} \
194 $${HEADER+HEADER} \
195 $${GENERAL+GENERAL} $${CFLAGS+CFLAGS} \
196 $${ASFLAGS+ASFLAGS} $${AFLAGS+AFLAGS} \
197 $${LDCMD+LDCMD} $${LDFLAGS+LDFLAGS} $${SCRIPTS+SCRIPTS} \
198 $${SHAREDCMD+SHAREDCMD} $${SHAREDFLAGS+SHAREDFLAGS} \
199 $${SHARED_LIB+SHARED_LIB} $${LIBEXTRAS+LIBEXTRAS}
200
201 # LC_ALL=C ensures that error [and other] messages are delivered in
202 # same language for uniform treatment.
203 BUILDENV= LC_ALL=C PLATFORM='$(PLATFORM)' PROCESSOR='$(PROCESSOR)'\
204 CC='$(CC)' CFLAG='$(CFLAG)' \
205 AS='$(CC)' ASFLAG='$(CFLAG) -c' \
206 AR='$(AR)' NM='$(NM)' RANLIB='$(RANLIB)' \
207 CROSS_COMPILE='$(CROSS_COMPILE)' \
208 PERL='$(PERL)' \
209 SDIRS='$(SDIRS)' LIBRPATH='$(INSTALLTOP)/$(LIBDIR)' \
210 INSTALL_PREFIX='$(INSTALL_PREFIX)' \
211 INSTALLTOP='$(INSTALLTOP)' OPENSSLDIR='$(OPENSSLDIR)' \
212 LIBDIR='$(LIBDIR)' \
213 MAKEDEPEND='$$$${TOP}/util/domd $$$${TOP} -MD $(MAKEDEPPROG)' \
214 DEPFLAG='$(DEPFLAG)' \
215 MAKEDEPPROG='$(MAKEDEPPROG)' \
216 SHARED_LDFLAGS='$(SHARED_LDFLAGS)' \
217 ZLIB_INCLUDE='$(ZLIB_INCLUDE)' LIBZLIB='$(LIBZLIB)' \
218 EXE_EXT='$(EXE_EXT)' SHARED_LIBS='$(SHARED_LIBS)' \
219 SHLIB_EXT='$(SHLIB_EXT)' SHLIB_TARGET='$(SHLIB_TARGET)' \
220 PEX_LIBS='$(PEX_LIBS)' EX_LIBS='$(EX_LIBS)' \
221 CPUID_OBJ='$(CPUID_OBJ)' BN_ASM='$(BN_ASM)' \
222 EC_ASM='$(EC_ASM)' DES_ENC='$(DES_ENC)' \
223 AES_ENC='$(AES_ENC)' CMLL_ENC='$(CMLL_ENC)' \
224 BF_ENC='$(BF_ENC)' CAST_ENC='$(CAST_ENC)' \
225 RC4_ENC='$(RC4_ENC)' RC5_ENC='$(RC5_ENC)' \
226 SHA1_ASM_OBJ='$(SHA1_ASM_OBJ)' \
227 MD5_ASM_OBJ='$(MD5_ASM_OBJ)' \
228 RMD160_ASM_OBJ='$(RMD160_ASM_OBJ)' \
229 WP_ASM_OBJ='$(WP_ASM_OBJ)' \
230 MODES_ASM_OBJ='$(MODES_ASM_OBJ)' \
231 PADLOCK_ASM_OBJ='$(PADLOCK_ASM_OBJ)' \
232 CHACHA_ENC='$(CHACHA_ENC)' \
233 POLY1305_ASM_OBJ='$(POLY1305_ASM_OBJ)' \
234 PERLASM_SCHEME='$(PERLASM_SCHEME)' \
235 FIPSLIBDIR='${FIPSLIBDIR}' \
236 FIPSCANLIB="$${FIPSCANLIB:-$(FIPSCANLIB)}" \
237 THIS=$${THIS:-$@} MAKEFILE=Makefile MAKEOVERRIDES=
238 # MAKEOVERRIDES= effectively "equalizes" GNU-ish and SysV-ish make flavors,
239 # which in turn eliminates ambiguities in variable treatment with -e.
240
241 # BUILD_CMD is a generic macro to build a given target in a given
242 # subdirectory. The target must be given through the shell variable
243 # `target' and the subdirectory to build in must be given through `dir'.
244 # This macro shouldn't be used directly, use RECURSIVE_BUILD_CMD or
245 # BUILD_ONE_CMD instead.
246 #
247 # RECURSIVE_BUILD_CMD is a macro to build a given target in all
248 # subdirectories defined in $(DIRS). It requires that the target
249 # is given through the shell variable `target'.
250 #
251 # BUILD_ONE_CMD is a macro to build a given target in a given
252 # subdirectory if that subdirectory is part of $(DIRS). It requires
253 # exactly the same shell variables as BUILD_CMD.
254 BUILD_CMD= if [ -d "$$dir" ]; then \
255 ( cd $$dir && echo "making $$target in $$dir..." && \
256 $(CLEARENV) && $(MAKE) -e $(BUILDENV) TOP=.. DIR=$$dir $$target \
257 ) || exit 1; \
258 fi
259 RECURSIVE_BUILD_CMD=for dir in $(DIRS); do $(BUILD_CMD); done
260 BUILD_ONE_CMD=\
261 if expr " $(DIRS) " : ".* $$dir " >/dev/null 2>&1; then \
262 $(BUILD_CMD); \
263 fi
264
265 reflect:
266 @[ -n "$(THIS)" ] && $(CLEARENV) && $(MAKE) $(THIS) -e $(BUILDENV)
267
268 sub_all: build_all
269
270 build_all: build_libs build_apps build_tests build_tools
271
272 build_libs: build_libcrypto build_libssl openssl.pc
273
274 build_libcrypto: build_crypto build_engines libcrypto.pc
275 build_libssl: build_ssl libssl.pc
276
277 build_crypto:
278 @dir=crypto; target=all; $(BUILD_ONE_CMD)
279 build_ssl: build_crypto
280 @dir=ssl; target=all; $(BUILD_ONE_CMD)
281 build_engines: build_crypto
282 @dir=engines; target=all; AS='$(CC) -c'; export AS; $(BUILD_ONE_CMD)
283
284 build_apps: build_libs
285 @dir=apps; target=all; $(BUILD_ONE_CMD)
286 build_tests: build_libs
287 @dir=test; target=all; $(BUILD_ONE_CMD)
288 build_tools: build_libs
289 @dir=tools; target=all; $(BUILD_ONE_CMD)
290
291 all_testapps: build_libs build_testapps
292 build_testapps:
293 @dir=crypto; target=testapps; $(BUILD_ONE_CMD)
294
295 libcrypto$(SHLIB_EXT): libcrypto.a
296 @if [ "$(SHLIB_TARGET)" != "" ]; then \
297 if [ "$(FIPSCANLIB)" = "libcrypto" ]; then \
298 FIPSLD_CC="$(CC)"; CC=fips/fipsld; \
299 export CC FIPSLD_CC; \
300 fi; \
301 $(MAKE) -e SHLIBDIRS=crypto CC="$${CC:-$(CC)}" build-shared; \
302 else \
303 echo "There's no support for shared libraries on this platform" >&2; \
304 exit 1; \
305 fi
306
307 libssl$(SHLIB_EXT): libcrypto$(SHLIB_EXT) libssl.a
308 @if [ "$(SHLIB_TARGET)" != "" ]; then \
309 $(MAKE) SHLIBDIRS=ssl SHLIBDEPS='-lcrypto' build-shared; \
310 else \
311 echo "There's no support for shared libraries on this platform" >&2; \
312 exit 1; \
313 fi
314
315 clean-shared:
316 @set -e; for i in $(SHLIBDIRS); do \
317 if [ -n "$(SHARED_LIBS_LINK_EXTS)" ]; then \
318 tmp="$(SHARED_LIBS_LINK_EXTS)"; \
319 for j in $${tmp:-x}; do \
320 ( set -x; rm -f lib$$i$$j ); \
321 done; \
322 fi; \
323 ( set -x; rm -f lib$$i$(SHLIB_EXT) ); \
324 if expr "$(PLATFORM)" : "Cygwin" >/dev/null; then \
325 ( set -x; rm -f cyg$$i$(SHLIB_EXT) lib$$i$(SHLIB_EXT).a ); \
326 fi; \
327 done
328
329 link-shared:
330 @ set -e; for i in $(SHLIBDIRS); do \
331 $(MAKE) -f $(HERE)/Makefile.shared -e $(BUILDENV) \
332 LIBNAME=$$i LIBVERSION=$(SHLIB_MAJOR).$(SHLIB_MINOR) \
333 LIBCOMPATVERSIONS=";$(SHLIB_VERSION_HISTORY)" \
334 symlink.$(SHLIB_TARGET); \
335 libs="$$libs -l$$i"; \
336 done
337
338 build-shared: do_$(SHLIB_TARGET) link-shared
339
340 do_$(SHLIB_TARGET):
341 @ set -e; libs='-L. $(SHLIBDEPS)'; for i in $(SHLIBDIRS); do \
342 $(CLEARENV) && $(MAKE) -f Makefile.shared -e $(BUILDENV) \
343 LIBNAME=$$i LIBVERSION=$(SHLIB_MAJOR).$(SHLIB_MINOR) \
344 LIBCOMPATVERSIONS=";$(SHLIB_VERSION_HISTORY)" \
345 LIBDEPS="$$libs $(EX_LIBS)" \
346 link_a.$(SHLIB_TARGET); \
347 libs="-l$$i $$libs"; \
348 done
349
350 libcrypto.pc: Makefile
351 @ ( echo 'prefix=$(INSTALLTOP)'; \
352 echo 'exec_prefix=$${prefix}'; \
353 echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
354 echo 'includedir=$${prefix}/include'; \
355 echo ''; \
356 echo 'Name: OpenSSL-libcrypto'; \
357 echo 'Description: OpenSSL cryptography library'; \
358 echo 'Version: '$(VERSION); \
359 echo 'Requires: '; \
360 echo 'Libs: -L$${libdir} -lcrypto'; \
361 echo 'Libs.private: $(EX_LIBS)'; \
362 echo 'Cflags: -I$${includedir}' ) > libcrypto.pc
363
364 libssl.pc: Makefile
365 @ ( echo 'prefix=$(INSTALLTOP)'; \
366 echo 'exec_prefix=$${prefix}'; \
367 echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
368 echo 'includedir=$${prefix}/include'; \
369 echo ''; \
370 echo 'Name: OpenSSL-libssl'; \
371 echo 'Description: Secure Sockets Layer and cryptography libraries'; \
372 echo 'Version: '$(VERSION); \
373 echo 'Requires.private: libcrypto'; \
374 echo 'Libs: -L$${libdir} -lssl'; \
375 echo 'Libs.private: $(EX_LIBS)'; \
376 echo 'Cflags: -I$${includedir}' ) > libssl.pc
377
378 openssl.pc: Makefile
379 @ ( echo 'prefix=$(INSTALLTOP)'; \
380 echo 'exec_prefix=$${prefix}'; \
381 echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
382 echo 'includedir=$${prefix}/include'; \
383 echo ''; \
384 echo 'Name: OpenSSL'; \
385 echo 'Description: Secure Sockets Layer and cryptography libraries and tools'; \
386 echo 'Version: '$(VERSION); \
387 echo 'Requires: libssl libcrypto' ) > openssl.pc
388
389 Makefile: Makefile.in Configure config
390 @echo "Makefile is older than Makefile.in, Configure or config."
391 @echo "Reconfigure the source tree (via './config' or 'perl Configure'), please."
392 @false
393
394 libclean:
395 rm -f *.map *.so *.so.* *.dylib *.dll engines/*.so engines/*.dll engines/*.dylib *.a engines/*.a */lib */*/lib
396
397 clean: libclean
398 rm -f */*/*.o */*.o *.o core a.out fluff rehash.time testlog make.log cctest cctest.c
399 rm -rf *.bak certs/.0
400 @set -e; target=clean; $(RECURSIVE_BUILD_CMD)
401 rm -f $(LIBS) tags TAGS
402 rm -f openssl.pc libssl.pc libcrypto.pc
403 rm -f speed.* .pure
404 rm -f $(TARFILE)
405
406 makefile.one: files
407 $(PERL) util/mk1mf.pl >makefile.one; \
408 sh util/do_ms.sh
409
410 files:
411 $(PERL) $(TOP)/util/files.pl Makefile > $(TOP)/MINFO
412 @set -e; target=files; $(RECURSIVE_BUILD_CMD)
413
414 gentests:
415 @(cd test && echo "generating dummy tests (if needed)..." && \
416 $(CLEARENV) && $(MAKE) -e $(BUILDENV) TESTS='$(TESTS)' OPENSSL_DEBUG_MEMORY=on generate );
417
418 rehash: rehash.time
419 rehash.time: certs build_apps build_tools
420 @if [ -z "$(CROSS_COMPILE)" ]; then \
421 (OPENSSL="`pwd`/util/opensslwrap.sh"; \
422 [ -x "apps/openssl.exe" ] && OPENSSL="apps/openssl.exe" || :; \
423 OPENSSL_DEBUG_MEMORY=on; OPENSSL_CONF=/dev/null ; \
424 export OPENSSL OPENSSL_DEBUG_MEMORY OPENSSL_CONF; \
425 $$OPENSSL rehash certs/demo \
426 || $(PERL) tools/c_rehash certs/demo) && \
427 touch rehash.time; \
428 else :; fi
429
430 test: tests
431
432
433 tests: rehash
434 @(cd test && echo "testing..." && \
435 $(CLEARENV) && $(MAKE) -e $(BUILDENV) TOP=.. TESTS='$(TESTS)' OPENSSL_DEBUG_MEMORY=on OPENSSL_CONF=../apps/openssl.cnf tests );
436 @if [ -z "$(CROSS_COMPILE)" ]; then \
437 OPENSSL_CONF=apps/openssl.cnf util/opensslwrap.sh version -a; \
438 fi
439
440 list-tests:
441 @(cd test && \
442 $(CLEARENV) && $(MAKE) -e $(BUILDENV) TOP=.. list-tests)
443
444 report:
445 @$(PERL) util/selftest.pl
446
447 tags TAGS: FORCE
448 rm -f TAGS tags
449 -ctags -R .
450 -etags `find . -name '*.[ch]' -o -name '*.pm'`
451
452 FORCE:
453
454 depend:
455 @set -e; target=depend; $(RECURSIVE_BUILD_CMD)
456
457 update: generate errors ordinals depend
458
459 generate:
460 (cd apps && $(MAKE) generate)
461 (cd crypto/bn && $(MAKE) generate)
462 (cd crypto/objects && $(MAKE) generate)
463
464 errors:
465 $(PERL) util/ck_errf.pl -strict */*.c */*/*.c
466 $(PERL) util/mkerr.pl -recurse -write
467 (cd engines; $(MAKE) PERL=$(PERL) errors)
468 (cd crypto/ct; $(MAKE) PERL=$(PERL) errors)
469
470 ordinals: util/libeay.num util/ssleay.num test_ordinals TABLE
471 util/libeay.num::
472 $(PERL) util/mkdef.pl crypto update
473 util/ssleay.num::
474 $(PERL) util/mkdef.pl ssl update
475 test_ordinals:
476 TOP=$(TOP) PERL=$(PERL) $(PERL) test/run_tests.pl test_ordinals
477
478 TABLE: Configure Configurations/*.conf
479 (echo 'Output of `Configure TABLE'"':"; \
480 $(PERL) Configure TABLE) > TABLE
481
482 # Build distribution tar-file. As the list of files returned by "find" is
483 # pretty long, on several platforms a "too many arguments" error or similar
484 # would occur. Therefore the list of files is temporarily stored into a file
485 # and read directly, requiring GNU-Tar. Call "make TAR=gtar dist" if the normal
486 # tar does not support the --files-from option.
487 TAR_COMMAND=$(TAR) $(TARFLAGS) --files-from $(TARFILE).list \
488 --owner 0 --group 0 \
489 --transform 's|^|$(NAME)/|' \
490 -cvf -
491
492 $(TARFILE).list:
493 git diff --quiet HEAD
494 git ls-files | sort > $(TARFILE).list
495
496 tar: $(TARFILE).list
497 find . -type d -print | xargs chmod 755
498 find . -type f -print | xargs chmod a+r
499 find . -type f -perm -0100 -print | xargs chmod a+x
500 $(TAR_COMMAND) | gzip --best > $(TARFILE).gz
501 rm -f $(TARFILE).list
502 ls -l $(TARFILE).gz
503
504 tar-snap: $(TARFILE).list
505 $(TAR_COMMAND) > $(TARFILE)
506 rm -f $(TARFILE).list
507 ls -l $(TARFILE)
508
509 dist:
510 $(PERL) Configure dist
511 @$(MAKE) SDIRS='$(SDIRS)' clean
512 @$(MAKE) TAR='$(TAR)' TARFLAGS='$(TARFLAGS)' $(DISTTARVARS) tar
513
514 install: all install_docs install_sw
515
516 uninstall: uninstall_sw uninstall_docs
517
518 install_sw:
519 @$(PERL) $(TOP)/util/mkdir-p.pl $(INSTALLDIRS)
520 @set -e; for i in include/openssl/*.h; do \
521 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$$i; \
522 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$$i ); \
523 done;
524 @set -e; target=install; for dir in $(INSTALL_SUBS); do $(BUILD_CMD); done
525 @set -e; liblist="$(LIBS)"; for i in $$liblist ;\
526 do \
527 if [ -f "$$i" ]; then \
528 ( echo installing $$i; \
529 cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
530 $(RANLIB) $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
531 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
532 mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i ); \
533 fi; \
534 done;
535 @set -e; if [ -n "$(SHARED_LIBS)" ]; then \
536 tmp="$(SHARED_LIBS)"; \
537 for i in $${tmp:-x}; \
538 do \
539 if [ -f "$$i" -o -f "$$i.a" ]; then \
540 ( echo installing $$i; \
541 if expr "$(PLATFORM)" : "Cygwin" >/dev/null; then \
542 c=`echo $$i | sed 's/^lib\(.*\)\.dll\.a/cyg\1-$(SHLIB_VERSION_NUMBER).dll/'`; \
543 cp $$c $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
544 chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
545 mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c; \
546 cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
547 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
548 mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i; \
549 else \
550 cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
551 chmod 555 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
552 mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i; \
553 fi ); \
554 if expr $(PLATFORM) : 'mingw' > /dev/null; then \
555 ( case $$i in \
556 *crypto*) i=libeay32.dll;; \
557 *ssl*) i=ssleay32.dll;; \
558 esac; \
559 echo installing $$i; \
560 cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \
561 chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \
562 mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i ); \
563 fi; \
564 fi; \
565 done; \
566 ( here="`pwd`"; \
567 cd $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR); \
568 $(MAKE) -f $$here/Makefile HERE="$$here" link-shared ); \
569 if [ "$(INSTALLTOP)" != "/usr" ]; then \
570 echo 'OpenSSL shared libraries have been installed in:'; \
571 echo ' $(INSTALLTOP)'; \
572 fi; \
573 fi
574 cp libcrypto.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
575 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libcrypto.pc
576 cp libssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
577 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libssl.pc
578 cp openssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
579 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/openssl.pc
580
581 uninstall_sw:
582 cd include/openssl && files=* && cd $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl && $(RM) $$files
583 @for i in $(LIBS) ;\
584 do \
585 test -f "$$i" && \
586 echo $(RM) $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i && \
587 $(RM) $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i; \
588 done;
589 @if [ -n "$(SHARED_LIBS)" ]; then \
590 tmp="$(SHARED_LIBS)"; \
591 for i in $${tmp:-x}; \
592 do \
593 if [ -f "$$i" -o -f "$$i.a" ]; then \
594 if expr "$(PLATFORM)" : "Cygwin" >/dev/null; then \
595 c=`echo $$i | sed 's/^lib\(.*\)\.dll\.a/cyg\1-$(SHLIB_VERSION_NUMBER).dll/'`; \
596 echo $(RM) $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c; \
597 $(RM) $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c; \
598 echo $(RM) $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i; \
599 $(RM) $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i; \
600 else \
601 echo $(RM) $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i; \
602 $(RM) $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i; \
603 fi; \
604 if expr $(PLATFORM) : 'mingw' > /dev/null; then \
605 case $$i in \
606 *crypto*) i=libeay32.dll;; \
607 *ssl*) i=ssleay32.dll;; \
608 esac; \
609 echo $(RM) $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i; \
610 $(RM) $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i; \
611 fi; \
612 fi; \
613 done; \
614 fi
615 $(RM) $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libcrypto.pc
616 $(RM) $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libssl.pc
617 $(RM) $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/openssl.pc
618 @target=uninstall; $(RECURSIVE_BUILD_CMD)
619
620 install_html_docs:
621 here="`pwd`"; \
622 filecase=; \
623 case "$(PLATFORM)" in DJGPP|Cygwin*|mingw*|darwin*-*-cc) \
624 filecase=-i; \
625 esac; \
626 for subdir in apps crypto ssl; do \
627 $(PERL) $(TOP)/util/mkdir-p $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir; \
628 for i in doc/$$subdir/*.pod; do \
629 fn=`basename $$i .pod`; \
630 echo "installing html/$$fn.$(HTMLSUFFIX)"; \
631 cat $$i \
632 | sed -r 's/L<([^)]*)(\([0-9]\))?\|([^)]*)(\([0-9]\))?>/L<\1|\3>/g' \
633 | pod2html --podroot=doc --htmlroot=.. --podpath=$$subdir:apps:crypto:ssl \
634 | sed -r 's/<!DOCTYPE.*//g' \
635 > $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir/$$fn.$(HTMLSUFFIX); \
636 $(PERL) util/extract-names.pl < $$i | \
637 grep -v $$filecase "^$$fn\$$" | \
638 (cd $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir; \
639 while read n; do \
640 PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$(HTMLSUFFIX) "$$n".$(HTMLSUFFIX); \
641 done); \
642 done; \
643 done
644
645 uninstall_html_docs:
646 here="`pwd`"; \
647 filecase=; \
648 case "$(PLATFORM)" in DJGPP|Cygwin*|mingw*|darwin*-*-cc) \
649 filecase=-i; \
650 esac; \
651 for subdir in apps crypto ssl; do \
652 for i in doc/$$subdir/*.pod; do \
653 fn=`basename $$i .pod`; \
654 $(RM) $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir/$$fn.$(HTMLSUFFIX); \
655 $(PERL) util/extract-names.pl < $$i | \
656 grep -v $$filecase "^$$fn\$$" | \
657 while read n; do \
658 $(RM) $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir/"$$n".$(HTMLSUFFIX); \
659 done; \
660 done; \
661 done
662
663 install_docs:
664 @$(PERL) $(TOP)/util/mkdir-p.pl \
665 $(INSTALL_PREFIX)$(MANDIR)/man1 \
666 $(INSTALL_PREFIX)$(MANDIR)/man3 \
667 $(INSTALL_PREFIX)$(MANDIR)/man5 \
668 $(INSTALL_PREFIX)$(MANDIR)/man7
669 here="`pwd`"; \
670 filecase=; \
671 case "$(PLATFORM)" in DJGPP|Cygwin*|mingw*|darwin*-*-cc) \
672 filecase=-i; \
673 esac; \
674 set -e; for i in doc/apps/*.pod; do \
675 fn=`basename $$i .pod`; \
676 sec=`$(PERL) util/extract-section.pl 1 < $$i`; \
677 echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
678 (cd `$(PERL) util/dirname.pl $$i`; \
679 pod2man \
680 --section=$$sec --center=OpenSSL \
681 --release=$(VERSION) `basename $$i`) \
682 > $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
683 $(PERL) util/extract-names.pl < $$i | \
684 (grep -v $$filecase "^$$fn\$$"; true) | \
685 (grep -v "[ ]"; true) | \
686 (cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
687 while read n; do \
688 PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
689 done); \
690 done; \
691 set -e; for i in doc/crypto/*.pod doc/ssl/*.pod; do \
692 fn=`basename $$i .pod`; \
693 sec=`$(PERL) util/extract-section.pl 3 < $$i`; \
694 echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
695 (cd `$(PERL) util/dirname.pl $$i`; \
696 pod2man \
697 --section=$$sec --center=OpenSSL \
698 --release=$(VERSION) `basename $$i`) \
699 > $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
700 $(PERL) util/extract-names.pl < $$i | \
701 (grep -v $$filecase "^$$fn\$$"; true) | \
702 (grep -v "[ ]"; true) | \
703 (cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
704 while read n; do \
705 PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
706 done); \
707 done
708
709 uninstall_docs:
710 @here="`pwd`"; \
711 filecase=; \
712 case "$(PLATFORM)" in DJGPP|Cygwin*|mingw*) \
713 filecase=-i; \
714 esac; \
715 for i in doc/apps/*.pod; do \
716 fn=`basename $$i .pod`; \
717 sec=`$(PERL) util/extract-section.pl 1 < $$i`; \
718 echo $(RM) $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
719 $(RM) $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
720 $(PERL) util/extract-names.pl < $$i | \
721 (grep -v $$filecase "^$$fn\$$"; true) | \
722 (grep -v "[ ]"; true) | \
723 while read n; do \
724 echo $(RM) $(INSTALL_PREFIX)$(MANDIR)/man$$sec/"$$n".$${sec}$(MANSUFFIX); \
725 $(RM) $(INSTALL_PREFIX)$(MANDIR)/man$$sec/"$$n".$${sec}$(MANSUFFIX); \
726 done; \
727 done; \
728 for i in doc/crypto/*.pod doc/ssl/*.pod; do \
729 fn=`basename $$i .pod`; \
730 sec=`$(PERL) util/extract-section.pl 3 < $$i`; \
731 echo $(RM) $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
732 $(RM) $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
733 $(PERL) util/extract-names.pl < $$i | \
734 (grep -v $$filecase "^$$fn\$$"; true) | \
735 (grep -v "[ ]"; true) | \
736 while read n; do \
737 echo $(RM) $(INSTALL_PREFIX)$(MANDIR)/man$$sec/"$$n".$${sec}$(MANSUFFIX); \
738 $(RM) $(INSTALL_PREFIX)$(MANDIR)/man$$sec/"$$n".$${sec}$(MANSUFFIX); \
739 done; \
740 done
741
742 # DO NOT DELETE THIS LINE -- make depend depends on it.