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