]> git.ipfire.org Git - thirdparty/openssl.git/blame - Makefile.org
Bug fix.
[thirdparty/openssl.git] / Makefile.org
CommitLineData
d56128f0
RE
1##
2## Makefile for OpenSSL
3##
4
0973910f
UM
5VERSION=
6MAJOR=
7MINOR=
b436a982
RL
8SHLIB_VERSION_NUMBER=
9SHLIB_VERSION_HISTORY=
10SHLIB_MAJOR=
11SHLIB_MINOR=
a22fb399 12SHLIB_EXT=
d56128f0 13PLATFORM=dist
31ff97b2 14OPTIONS=
c59cb511 15CONFIGURE_ARGS=
b436a982
RL
16SHLIB_TARGET=
17
30c08f2e
RL
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
e5f3045f
BM
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=
462ba4f6
UM
27INSTALLTOP=/usr/local/ssl
28
29# Do not edit this manually. Use Configure --openssldir=DIR do change this!
30OPENSSLDIR=/usr/local/ssl
d56128f0 31
d02b48c6
RE
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
58964a49 36# system defines as well, i.e. _REENTERANT for Solaris 2.[34]
d02b48c6
RE
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
58964a49
RE
41# one. 32 bytes will be read from this when the random
42# number generator is initalised.
baf748ba 43# SSL_FORBID_ENULL - define if you want the server to be not able to use the
58964a49 44# NULL encryption ciphers.
d02b48c6
RE
45#
46# LOCK_DEBUG - turns on lots of lock debug output :-)
47# REF_CHECK - turn on some xyz_free() assertions.
58964a49 48# REF_PRINT - prints some stuff on structure free.
d02b48c6
RE
49# CRYPTO_MDEBUG - turns on my 'memory leak' detecting stuff
50# MFUNC - Make all Malloc/Free/Realloc calls call
58964a49
RE
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
dfeab068
RE
56# Do not define B_ENDIAN or L_ENDIAN if 'unsigned long' == 8. It must
57# equal 4.
58# PKCS1_CHECK - pkcs1 tests.
d02b48c6 59
67ea999d
AP
60CC= cc
61CFLAG= -O
f5d7a031 62DEPFLAG=
bc29d0e5 63PEX_LIBS=
651d0aff 64EX_LIBS=
967d95f0 65EXE_EXT=
179add2b
RL
66ARFLAGS=
67AR=ar $(ARFLAGS) r
99aab161
UM
68RANLIB= ranlib
69PERL= perl
2dbb3ccd 70TAR= tar
63977104 71TARFLAGS= --no-recursion
cf1b7d96 72MAKEDEPPROG=makedepend
d02b48c6 73
3cc9a89d
AP
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.
79AS=$(CC) -c
01fc834b 80ASFLAG=$(CFLAG)
3cc9a89d 81
14e21f86
AP
82# For x86 assembler: Set PROCESSOR to 386 if you want to support
83# the 80386.
84PROCESSOR=
85
86# CPUID module collects small commonly used assembler snippets
87CPUID_OBJ=
dfeab068 88BN_ASM= bn_asm.o
67ea999d 89DES_ENC= des_enc.o fcrypt_b.o
ed65fab9 90AES_ASM_OBJ=aes_core.o aes_cbc.o
67ea999d
AP
91BF_ENC= bf_enc.o
92CAST_ENC= c_enc.o
93RC4_ENC= rc4_enc.o
94RC5_ENC= rc5_enc.o
95MD5_ASM_OBJ=
96SHA1_ASM_OBJ=
97RMD160_ASM_OBJ=
ed26604a 98WP_ASM_OBJ=
58964a49 99
f9b3bff6
RL
100# KRB5 stuff
101KRB5_INCLUDES=
c1269c81 102LIBKRB5=
f9b3bff6 103
ad2695b1
DSH
104# Zlib stuff
105ZLIB_INCLUDE=
106LIBZLIB=
107
506fec1a 108DIRS= crypto ssl engines apps test tools
0973910f
UM
109SHLIBDIRS= crypto ssl
110
d02b48c6
RE
111# dirs in crypto to build
112SDIRS= \
d87b79bf 113 objects \
d1593e6b 114 md2 md4 md5 sha mdc2 hmac ripemd whrlpool \
67ea999d
AP
115 des aes rc2 rc4 rc5 idea bf cast \
116 bn ec rsa dsa ecdsa dh ecdh dso engine \
d87b79bf 117 buffer bio stack lhash rand err \
a5db6fa5 118 evp asn1 pem x509 x509v3 conf txt_db pkcs7 pkcs12 comp ocsp ui krb5 \
c7235be6 119 store pqueue ts
02c31fa4
AP
120# keep in mind that the above list is adjusted by ./Configure
121# according to no-xxx arguments...
d02b48c6 122
f777408f
RL
123# tests to perform. "alltests" is a special word indicating that all tests
124# should be performed.
125TESTS = alltests
126
42ba5d23 127MAKEFILE= Makefile
d02b48c6 128
e1c55191 129MANDIR=$(OPENSSLDIR)/man
d02b48c6
RE
130MAN1=1
131MAN3=3
1cc087fe 132MANSUFFIX=
60cdb821
UM
133HTMLSUFFIX=html
134HTMLDIR=$(OPENSSLDIR)/html
d02b48c6
RE
135SHELL=/bin/sh
136
58964a49 137TOP= .
d02b48c6 138ONEDIRS=out tmp
7d7d2cbc 139EDIRS= times doc bugs util include certs ms shlib mt demos perl sf dep VMS
58964a49 140WDIRS= windows
b436a982 141LIBS= libcrypto.a libssl.a
a22fb399
RL
142SHARED_CRYPTO=libcrypto$(SHLIB_EXT)
143SHARED_SSL=libssl$(SHLIB_EXT)
144SHARED_LIBS=
145SHARED_LIBS_LINK_EXTS=
a5595fde 146SHARED_LDFLAGS=
58964a49
RE
147
148GENERAL= Makefile
9ce5db45 149BASENAME= openssl
58964a49
RE
150NAME= $(BASENAME)-$(VERSION)
151TARFILE= $(NAME).tar
152WTARFILE= $(NAME)-win.tar
cf1b7d96 153EXHEADER= e_os2.h
58964a49 154HEADER= e_os.h
d02b48c6 155
0962fbbf 156all: Makefile build_all openssl.pc libssl.pc libcrypto.pc
d02b48c6 157
02c31fa4 158# as we stick to -e, CLEARENV ensures that local variables in lower
a41b0aad
AP
159# Makefiles remain local and variable. $${VAR+VAR} is tribute to Korn
160# shell, which [annoyingly enough] terminates unset with error if VAR
161# is not present:-( TOP= && unset TOP is tribute to HP-UX /bin/sh,
162# which terminates unset with error if no variable was present:-(
163CLEARENV= TOP= && unset TOP $${LIB+LIB} $${LIBS+LIBS} \
02c31fa4
AP
164 $${INCLUDE+INCLUDE} $${INCLUDES+INCLUDES} \
165 $${DIR+DIR} $${DIRS+DIRS} $${SRC+SRC} \
166 $${LIBSRC+LIBSRC} $${LIBOBJ+LIBOBJ} $${ALL+ALL} \
167 $${EXHEADER+EXHEADER} $${HEADER+HEADER} \
168 $${GENERAL+GENERAL} $${CFLAGS+CFLAGS} \
169 $${ASFLAGS+ASFLAGS} $${AFLAGS+AFLAGS} \
2f3c39bc
AP
170 $${LDCMD+LDCMD} $${LDFLAGS+LDFLAGS} \
171 $${SHAREDCMD+SHAREDCMD} $${SHAREDFLAGS+SHAREDFLAGS} \
02c31fa4
AP
172 $${SHARED_LIB+SHARED_LIB} $${LIBEXTRAS+LIBEXTRAS}
173
d0590fe6 174BUILDENV= PLATFORM='${PLATFORM}' PROCESSOR='${PROCESSOR}' \
d0590fe6 175 CC='${CC}' CFLAG='${CFLAG}' \
33c3ecf7 176 AS='${CC}' ASFLAG='${CFLAG} -c' \
d0590fe6 177 AR='${AR}' PERL='${PERL}' RANLIB='${RANLIB}' \
02c31fa4 178 SDIRS='${SDIRS}' LIBRPATH='${INSTALLTOP}/lib' \
e9f5428d 179 INSTALL_PREFIX='${INSTALL_PREFIX}' \
7abbffc3 180 INSTALLTOP='${INSTALLTOP}' OPENSSLDIR='${OPENSSLDIR}' \
02c31fa4 181 MAKEDEPEND='$$$${TOP}/util/domd $$$${TOP} -MD ${MAKEDEPPROG}' \
ce92b6eb
AP
182 DEPFLAG='-DOPENSSL_NO_DEPRECATED ${DEPFLAG}' \
183 MAKEDEPPROG='${MAKEDEPPROG}' \
2f3c39bc 184 SHARED_LDFLAGS='${SHARED_LDFLAGS}' \
d0590fe6
AP
185 KRB5_INCLUDES='${KRB5_INCLUDES}' LIBKRB5='${LIBKRB5}' \
186 EXE_EXT='${EXE_EXT}' SHARED_LIBS='${SHARED_LIBS}' \
187 SHLIB_EXT='${SHLIB_EXT}' SHLIB_TARGET='${SHLIB_TARGET}' \
188 PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' \
14e21f86 189 CPUID_OBJ='${CPUID_OBJ}' \
d0590fe6
AP
190 BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' \
191 AES_ASM_OBJ='${AES_ASM_OBJ}' \
192 BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' \
193 RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' \
194 SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' \
195 MD5_ASM_OBJ='${MD5_ASM_OBJ}' \
7abbffc3 196 RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' \
ed26604a 197 WP_ASM_OBJ='${WP_ASM_OBJ}' \
02c31fa4
AP
198 THIS=$${THIS:-$@} MAKEFILE=Makefile MAKEOVERRIDES=
199# MAKEOVERRIDES= effectively "equalizes" GNU-ish and SysV-ish make flavors,
200# which in turn eliminates ambiguities in variable treatment with -e.
d0590fe6 201
b480283c
RL
202# BUILD_CMD is a generic macro to build a given target in a given
203# subdirectory. The target must be given through the shell variable
204# `target' and the subdirectory to build in must be given through `dir'.
205# This macro shouldn't be used directly, use RECURSIVE_BUILD_CMD or
206# BUILD_ONE_CMD instead.
207#
208# BUILD_ONE_CMD is a macro to build a given target in a given
209# subdirectory if that subdirectory is part of $(DIRS). It requires
210# exactly the same shell variables as BUILD_CMD.
211#
212# RECURSIVE_BUILD_CMD is a macro to build a given target in all
213# subdirectories defined in $(DIRS). It requires that the target
214# is given through the shell variable `target'.
02c31fa4
AP
215BUILD_CMD= if [ -d "$$dir" ]; then \
216 ( cd $$dir && echo "making $$target in $$dir..." && \
217 $(CLEARENV) && $(MAKE) -e $(BUILDENV) TOP=.. DIR=$$dir $$target \
218 ) || exit 1; \
219 fi
220RECURSIVE_BUILD_CMD=for dir in $(DIRS); do $(BUILD_CMD); done
f5ce5e14
RL
221BUILD_ONE_CMD=\
222 if echo " $(DIRS) " | grep " $$dir " >/dev/null 2>/dev/null; then \
223 $(BUILD_CMD); \
224 fi
88c80b3e 225
734540f8 226reflect:
02c31fa4 227 @[ -n "$(THIS)" ] && $(CLEARENV) && $(MAKE) $(THIS) -e $(BUILDENV)
734540f8 228
4c82171a 229sub_all: build_all
88c80b3e
RL
230build_all: build_libs build_apps build_tests build_tools
231
506fec1a 232build_libs: build_crypto build_ssl build_engines
88c80b3e
RL
233
234build_crypto:
f5ce5e14 235 @dir=crypto; target=all; $(BUILD_ONE_CMD)
88c80b3e 236build_ssl:
f5ce5e14 237 @dir=ssl; target=all; $(BUILD_ONE_CMD)
506fec1a 238build_engines:
f5ce5e14 239 @dir=engines; target=all; $(BUILD_ONE_CMD)
88c80b3e 240build_apps:
f5ce5e14 241 @dir=apps; target=all; $(BUILD_ONE_CMD)
88c80b3e 242build_tests:
f5ce5e14 243 @dir=test; target=all; $(BUILD_ONE_CMD)
88c80b3e 244build_tools:
f5ce5e14 245 @dir=tools; target=all; $(BUILD_ONE_CMD)
ba5477eb
RL
246
247all_testapps: build_libs build_testapps
248build_testapps:
f5ce5e14 249 @dir=crypto; target=testapps; $(BUILD_ONE_CMD)
b436a982 250
a22fb399 251libcrypto$(SHLIB_EXT): libcrypto.a
f4316c36 252 @if [ "$(SHLIB_TARGET)" != "" ]; then \
a22fb399 253 $(MAKE) SHLIBDIRS=crypto build-shared; \
f4316c36
RL
254 else \
255 echo "There's no support for shared libraries on this platform" >&2; \
d0590fe6 256 exit 1; \
f4316c36 257 fi
0f180d1d 258
a22fb399 259libssl$(SHLIB_EXT): libcrypto$(SHLIB_EXT) libssl.a
f4316c36 260 @if [ "$(SHLIB_TARGET)" != "" ]; then \
5ddcb866 261 $(MAKE) SHLIBDIRS=ssl SHLIBDEPS='-lcrypto' build-shared; \
f4316c36
RL
262 else \
263 echo "There's no support for shared libraries on this platform" >&2; \
d0590fe6 264 exit 1; \
f4316c36 265 fi
b436a982
RL
266
267clean-shared:
cfd06a62 268 @set -e; for i in $(SHLIBDIRS); do \
a22fb399
RL
269 if [ -n "$(SHARED_LIBS_LINK_EXTS)" ]; then \
270 tmp="$(SHARED_LIBS_LINK_EXTS)"; \
271 for j in $${tmp:-x}; do \
272 ( set -x; rm -f lib$$i$$j ); \
273 done; \
274 fi; \
275 ( set -x; rm -f lib$$i$(SHLIB_EXT) ); \
49e04548 276 if [ "$(PLATFORM)" = "Cygwin" ]; then \
1fe198b6
RL
277 ( set -x; rm -f cyg$$i$(SHLIB_EXT) lib$$i$(SHLIB_EXT).a ); \
278 fi; \
b436a982 279 done
d02b48c6 280
a22fb399 281link-shared:
cfd06a62 282 @ set -e; for i in ${SHLIBDIRS}; do \
755c5b33 283 $(MAKE) -f $(HERE)/Makefile.shared -e $(BUILDENV) \
30afcc07
RL
284 LIBNAME=$$i LIBVERSION=${SHLIB_MAJOR}.${SHLIB_MINOR} \
285 LIBCOMPATVERSIONS=";${SHLIB_VERSION_HISTORY}" \
286 symlink.$(SHLIB_TARGET); \
6b86bad5 287 libs="$$libs -l$$i"; \
0fd44e2d
RL
288 done
289
30afcc07
RL
290build-shared: do_$(SHLIB_TARGET) link-shared
291
292do_$(SHLIB_TARGET):
cfd06a62 293 @ set -e; libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \
c1269c81
RL
294 if [ "${SHLIBDIRS}" = "ssl" -a -n "$(LIBKRB5)" ]; then \
295 libs="$(LIBKRB5) $$libs"; \
296 fi; \
02c31fa4 297 $(CLEARENV) && $(MAKE) -f Makefile.shared -e $(BUILDENV) \
30afcc07
RL
298 LIBNAME=$$i LIBVERSION=${SHLIB_MAJOR}.${SHLIB_MINOR} \
299 LIBCOMPATVERSIONS=";${SHLIB_VERSION_HISTORY}" \
300 LIBDEPS="$$libs $(EX_LIBS)" \
301 link_a.$(SHLIB_TARGET); \
c1269c81 302 libs="-l$$i $$libs"; \
a3fffd64
RL
303 done
304
0962fbbf
RL
305libcrypto.pc: Makefile
306 @ ( echo 'prefix=$(INSTALLTOP)'; \
307 echo 'exec_prefix=$${prefix}'; \
308 echo 'libdir=$${exec_prefix}/lib'; \
309 echo 'includedir=$${prefix}/include'; \
310 echo ''; \
311 echo 'Name: OpenSSL-libcrypto'; \
312 echo 'Description: OpenSSL cryptography library'; \
313 echo 'Version: '$(VERSION); \
314 echo 'Requires: '; \
315 echo 'Libs: -L$${libdir} -lcrypto $(EX_LIBS)'; \
316 echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libcrypto.pc
317
318libssl.pc: Makefile
319 @ ( echo 'prefix=$(INSTALLTOP)'; \
320 echo 'exec_prefix=$${prefix}'; \
321 echo 'libdir=$${exec_prefix}/lib'; \
322 echo 'includedir=$${prefix}/include'; \
323 echo ''; \
324 echo 'Name: OpenSSL'; \
325 echo 'Description: Secure Sockets Layer and cryptography libraries'; \
326 echo 'Version: '$(VERSION); \
327 echo 'Requires: '; \
328 echo 'Libs: -L$${libdir} -lssl -lcrypto $(EX_LIBS)'; \
329 echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libssl.pc
330
42ba5d23 331openssl.pc: Makefile
56824b96
RL
332 @ ( echo 'prefix=$(INSTALLTOP)'; \
333 echo 'exec_prefix=$${prefix}'; \
334 echo 'libdir=$${exec_prefix}/lib'; \
335 echo 'includedir=$${prefix}/include'; \
336 echo ''; \
337 echo 'Name: OpenSSL'; \
338 echo 'Description: Secure Sockets Layer and cryptography libraries and tools'; \
339 echo 'Version: '$(VERSION); \
340 echo 'Requires: '; \
341 echo 'Libs: -L$${libdir} -lssl -lcrypto $(EX_LIBS)'; \
49be7042 342 echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > openssl.pc
56824b96 343
c7199e62
BL
344Makefile: Makefile.org Configure config
345 @echo "Makefile is older than Makefile.org, Configure or config."
49b81422 346 @echo "Reconfigure the source tree (via './config' or 'perl Configure'), please."
9535d202
BL
347 @false
348
dfeab068 349libclean:
447aa490 350 rm -f *.map *.so *.so.* *.dll engines/*.so engines/*.dll *.a engines/*.a */lib */*/lib
dfeab068 351
7841edc9
RL
352clean: libclean
353 rm -f shlib/*.o *.o core a.out fluff rehash.time testlog make.log cctest cctest.c
02c31fa4
AP
354 @set -e; target=clean; $(RECURSIVE_BUILD_CMD)
355 rm -f $(LIBS)
0962fbbf 356 rm -f openssl.pc libssl.pc libcrypto.pc
7841edc9 357 rm -f speed.* .pure
bb8f3c58 358 rm -f $(TARFILE)
cfd06a62 359 @set -e; for i in $(ONEDIRS) ;\
d02b48c6 360 do \
bb8f3c58 361 rm -fr $$i/*; \
d02b48c6
RE
362 done
363
364makefile.one: files
99aab161 365 $(PERL) util/mk1mf.pl >makefile.one; \
d02b48c6
RE
366 sh util/do_ms.sh
367
bacad008 368files:
42ba5d23 369 $(PERL) $(TOP)/util/files.pl Makefile > $(TOP)/MINFO
02c31fa4 370 @set -e; target=files; $(RECURSIVE_BUILD_CMD)
d02b48c6
RE
371
372links:
6576774b 373 @$(PERL) $(TOP)/util/mkdir-p.pl include/openssl
41d2a336 374 @$(PERL) $(TOP)/util/mklink.pl include/openssl $(EXHEADER)
02c31fa4 375 @set -e; target=links; $(RECURSIVE_BUILD_CMD)
d02b48c6 376
1cc67fa8
RL
377gentests:
378 @(cd test && echo "generating dummy tests (if needed)..." && \
02c31fa4 379 $(CLEARENV) && $(MAKE) -e $(BUILDENV) TESTS='${TESTS}' OPENSSL_DEBUG_MEMORY=on generate );
1cc67fa8 380
d02b48c6 381dclean:
95553390 382 rm -rf *.bak include/openssl certs/.0
02c31fa4 383 @set -e; target=dclean; $(RECURSIVE_BUILD_CMD)
d02b48c6 384
e6e7b5f3
BM
385rehash: rehash.time
386rehash.time: certs
62d27939
AP
387 @(OPENSSL="`pwd`/util/opensslwrap.sh"; \
388 OPENSSL_DEBUG_MEMORY=on; \
69c922f5 389 export OPENSSL OPENSSL_DEBUG_MEMORY; \
69c922f5 390 $(PERL) tools/c_rehash certs)
3ebf0be1 391 touch rehash.time
d02b48c6 392
58964a49 393test: tests
d02b48c6 394
73bfb9ad 395tests: rehash
bb8f3c58 396 @(cd test && echo "testing..." && \
02c31fa4 397 $(CLEARENV) && $(MAKE) -e $(BUILDENV) TOP=.. TESTS='${TESTS}' OPENSSL_DEBUG_MEMORY=on tests );
62d27939 398 util/opensslwrap.sh version -a
d02b48c6 399
d7f0ab5f
UM
400report:
401 @$(PERL) util/selftest.pl
402
d02b48c6 403depend:
02c31fa4 404 @set -e; target=depend; $(RECURSIVE_BUILD_CMD)
d02b48c6
RE
405
406lint:
02c31fa4 407 @set -e; target=lint; $(RECURSIVE_BUILD_CMD)
d02b48c6
RE
408
409tags:
a273a282
BL
410 rm -f TAGS
411 find . -name '[^.]*.[ch]' | xargs etags -a
d02b48c6
RE
412
413errors:
f6485909 414 $(PERL) util/mkerr.pl -recurse -write
506fec1a 415 (cd engines; $(MAKE) PERL=$(PERL) errors)
fbeaa3c4 416 $(PERL) util/ck_errf.pl */*.c */*/*.c
d02b48c6 417
e41c8d6a 418stacks:
f6485909 419 $(PERL) util/mkstack.pl -write
e41c8d6a 420
7740a1c6 421util/libeay.num::
f6485909 422 $(PERL) util/mkdef.pl crypto update
7740a1c6
BM
423
424util/ssleay.num::
f6485909 425 $(PERL) util/mkdef.pl ssl update
7740a1c6 426
1d00800e 427crypto/objects/obj_dat.h: crypto/objects/obj_dat.pl crypto/objects/obj_mac.h
f6485909 428 $(PERL) crypto/objects/obj_dat.pl crypto/objects/obj_mac.h crypto/objects/obj_dat.h
0357422d 429crypto/objects/obj_mac.h: crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num
f6485909 430 $(PERL) crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num crypto/objects/obj_mac.h
a19c9f17
RL
431crypto/objects/obj_xref.h: crypto/objects/objxref.pl crypto/objects/obj_xref.txt crypto/objects/obj_mac.num
432 $(PERL) crypto/objects/objxref.pl > crypto/objects/obj_xref.h
49e747e6 433
2faa930b
RL
434apps/openssl-vms.cnf: apps/openssl.cnf
435 $(PERL) VMS/VMSify-conf.pl < apps/openssl.cnf > apps/openssl-vms.cnf
436
11cd2397
RL
437crypto/bn/bn_prime.h: crypto/bn/bn_prime.pl
438 $(PERL) crypto/bn/bn_prime.pl >crypto/bn/bn_prime.h
439
440
62c419d6 441TABLE: Configure
2330e18b 442 (echo 'Output of `Configure TABLE'"':"; \
f6485909 443 $(PERL) Configure TABLE) > TABLE
7740a1c6 444
a19c9f17 445update: errors stacks util/libeay.num util/ssleay.num crypto/objects/obj_dat.h crypto/objects/obj_xref.h apps/openssl-vms.cnf crypto/bn/bn_prime.h TABLE depend
7740a1c6 446
f9de8446
LJ
447# Build distribution tar-file. As the list of files returned by "find" is
448# pretty long, on several platforms a "too many arguments" error or similar
449# would occur. Therefore the list of files is temporarily stored into a file
450# and read directly, requiring GNU-Tar. Call "make TAR=gtar dist" if the normal
451# tar does not support the --files-from option.
d02b48c6 452tar:
756b9a00
LJ
453 find . -type d -print | xargs chmod 755
454 find . -type f -print | xargs chmod a+r
455 find . -type f -perm -0100 -print | xargs chmod a+x
f9de8446
LJ
456 find * \! -path CVS/\* \! -path \*/CVS/\* \! -name CVS \! -name .cvsignore \! -name STATUS \! -name TABLE | sort > ../$(TARFILE).list; \
457 $(TAR) $(TARFLAGS) --files-from ../$(TARFILE).list -cvf - | \
5a061129 458 tardy --user_number=0 --user_name=openssl \
9ce5db45
RE
459 --group_number=0 --group_name=openssl \
460 --prefix=openssl-$(VERSION) - |\
651d0aff 461 gzip --best >../$(TARFILE).gz; \
f9de8446 462 rm -f ../$(TARFILE).list; \
651d0aff 463 ls -l ../$(TARFILE).gz
d02b48c6 464
41d2a336
RL
465tar-snap:
466 @$(TAR) $(TARFLAGS) -cvf - \
3a7cef3e 467 `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` |\
41d2a336
RL
468 tardy --user_number=0 --user_name=openssl \
469 --group_number=0 --group_name=openssl \
470 --prefix=openssl-$(VERSION) - > ../$(TARFILE);\
471 ls -l ../$(TARFILE)
472
58964a49 473dist:
99aab161 474 $(PERL) Configure dist
d02b48c6
RE
475 @$(MAKE) dist_pem_h
476 @$(MAKE) SDIRS='${SDIRS}' clean
870d3d55 477 @$(MAKE) TAR='${TAR}' TARFLAGS='${TARFLAGS}' tar
d02b48c6
RE
478
479dist_pem_h:
02c31fa4 480 (cd crypto/pem; $(MAKE) -e $(BUILDENV) pem.h; $(MAKE) clean)
d02b48c6 481
28a80034
RL
482install: all install_docs install_sw
483
484install_sw:
f0588887
BM
485 @$(PERL) $(TOP)/util/mkdir-p.pl $(INSTALL_PREFIX)$(INSTALLTOP)/bin \
486 $(INSTALL_PREFIX)$(INSTALLTOP)/lib \
90819805 487 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/engines \
9d5c42b6 488 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig \
f0588887
BM
489 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl \
490 $(INSTALL_PREFIX)$(OPENSSLDIR)/misc \
491 $(INSTALL_PREFIX)$(OPENSSLDIR)/certs \
8d472bdd 492 $(INSTALL_PREFIX)$(OPENSSLDIR)/private
a2ac429d 493 @set -e; headerlist="$(EXHEADER)"; for i in $$headerlist;\
2a4a0a34
BM
494 do \
495 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
496 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
497 done;
02c31fa4 498 @set -e; target=install; $(RECURSIVE_BUILD_CMD)
cfd06a62 499 @set -e; for i in $(LIBS) ;\
d02b48c6 500 do \
b436a982
RL
501 if [ -f "$$i" ]; then \
502 ( echo installing $$i; \
7104c376
RL
503 cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \
504 $(RANLIB) $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \
505 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \
30c08f2e 506 mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i ); \
2c975b50
LJ
507 fi; \
508 done;
cfd06a62 509 @set -e; if [ -n "$(SHARED_LIBS)" ]; then \
a22fb399
RL
510 tmp="$(SHARED_LIBS)"; \
511 for i in $${tmp:-x}; \
512 do \
1fe198b6 513 if [ -f "$$i" -o -f "$$i.a" ]; then \
a22fb399 514 ( echo installing $$i; \
49e04548 515 if [ "$(PLATFORM)" != "Cygwin" ]; then \
7104c376
RL
516 cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \
517 chmod 555 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \
30c08f2e 518 mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i; \
1fe198b6 519 else \
447aa490 520 c=`echo $$i | sed 's/^lib\(.*\)\.dll\.a/cyg\1-$(SHLIB_VERSION_NUMBER).dll/'`; \
7104c376
RL
521 cp $$c $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
522 chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
30c08f2e 523 mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c; \
447aa490
RL
524 cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \
525 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \
526 mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i; \
1fe198b6 527 fi ); \
2c975b50 528 fi; \
a22fb399
RL
529 done; \
530 ( here="`pwd`"; \
531 cd $(INSTALL_PREFIX)$(INSTALLTOP)/lib; \
4c3a2d64 532 $(MAKE) -f $$here/Makefile HERE="$$here" link-shared ); \
e68cb95d
RL
533 if [ "$(INSTALLTOP)" != "/usr" ]; then \
534 echo 'OpenSSL shared libraries have been installed in:'; \
535 echo ' $(INSTALLTOP)'; \
536 echo ''; \
c0cc5c30 537 sed -e '1,/^$$/d' doc/openssl-shared.txt; \
e68cb95d 538 fi; \
a22fb399 539 fi
0962fbbf
RL
540 cp libcrypto.pc $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig
541 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig/libcrypto.pc
542 cp libssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig
543 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig/libssl.pc
8e7a8b68 544 cp openssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig
eeff6bb6 545 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig/openssl.pc
e6e7b5f3 546
60cdb821
UM
547install_html_docs:
548 here="`pwd`"; \
549 for subdir in apps crypto ssl; do \
550 mkdir -p $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir; \
551 for i in doc/$$subdir/*.pod; do \
552 fn=`basename $$i .pod`; \
553 echo "installing html/$$fn.$(HTMLSUFFIX)"; \
554 cat $$i \
555 | sed -r 's/L<([^)]*)(\([0-9]\))?\|([^)]*)(\([0-9]\))?>/L<\1|\3>/g' \
556 | pod2html --podroot=doc --htmlroot=.. --podpath=apps:crypto:ssl \
557 | sed -r 's/<!DOCTYPE.*//g' \
558 > $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir/$$fn.$(HTMLSUFFIX); \
559 $(PERL) util/extract-names.pl < $$i | \
560 grep -v $$filecase "^$$fn\$$" | \
561 (cd $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir; \
562 while read n; do \
563 $$here/util/point.sh $$fn.$(HTMLSUFFIX) "$$n".$(HTMLSUFFIX); \
564 done); \
565 done; \
566 done
567
e6e7b5f3
BM
568install_docs:
569 @$(PERL) $(TOP)/util/mkdir-p.pl \
e1c55191
UM
570 $(INSTALL_PREFIX)$(MANDIR)/man1 \
571 $(INSTALL_PREFIX)$(MANDIR)/man3 \
572 $(INSTALL_PREFIX)$(MANDIR)/man5 \
573 $(INSTALL_PREFIX)$(MANDIR)/man7
623e9e66 574 @pod2man="`cd util; ./pod2mantest $(PERL)`"; \
ec9f67f6
RL
575 here="`pwd`"; \
576 filecase=; \
94c1672e 577 if [ "$(PLATFORM)" = "DJGPP" -o "$(PLATFORM)" = "Cygwin" -o "$(PLATFORM)" = "mingw" ]; then \
ec9f67f6
RL
578 filecase=-i; \
579 fi; \
cfd06a62 580 set -e; for i in doc/apps/*.pod; do \
c6ce792f 581 fn=`basename $$i .pod`; \
401ee37a 582 sec=`$(PERL) util/extract-section.pl 1 < $$i`; \
1cc087fe 583 echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
d13363af 584 (cd `$(PERL) util/dirname.pl $$i`; \
623e9e66 585 sh -c "$$pod2man \
2962243d
RL
586 --section=$$sec --center=OpenSSL \
587 --release=$(VERSION) `basename $$i`") \
1cc087fe 588 > $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
ec9f67f6 589 $(PERL) util/extract-names.pl < $$i | \
f6098f2d
RL
590 (grep -v $$filecase "^$$fn\$$"; true) | \
591 (grep -v "[ ]"; true) | \
ec9f67f6
RL
592 (cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
593 while read n; do \
49096719 594 $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
ec9f67f6 595 done); \
f6f99618 596 done; \
cfd06a62 597 set -e; for i in doc/crypto/*.pod doc/ssl/*.pod; do \
c6ce792f 598 fn=`basename $$i .pod`; \
401ee37a 599 sec=`$(PERL) util/extract-section.pl 3 < $$i`; \
1cc087fe 600 echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
d13363af 601 (cd `$(PERL) util/dirname.pl $$i`; \
623e9e66 602 sh -c "$$pod2man \
2962243d
RL
603 --section=$$sec --center=OpenSSL \
604 --release=$(VERSION) `basename $$i`") \
1cc087fe 605 > $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
ec9f67f6 606 $(PERL) util/extract-names.pl < $$i | \
f6098f2d
RL
607 (grep -v $$filecase "^$$fn\$$"; true) | \
608 (grep -v "[ ]"; true) | \
ec9f67f6
RL
609 (cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
610 while read n; do \
49096719 611 $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
ec9f67f6 612 done); \
c6ce792f 613 done
d02b48c6
RE
614
615# DO NOT DELETE THIS LINE -- make depend depends on it.