bn_exp.c: improve portability.
[openssl.git] / Makefile.org
1 ##
2 ## Makefile for OpenSSL
3 ##
4
5 VERSION=
6 MAJOR=
7 MINOR=
8 SHLIB_VERSION_NUMBER=
9 SHLIB_VERSION_HISTORY=
10 SHLIB_MAJOR=
11 SHLIB_MINOR=
12 SHLIB_EXT=
13 PLATFORM=dist
14 OPTIONS=
15 CONFIGURE_ARGS=
16 SHLIB_TARGET=
17
18 # HERE indicates where this Makefile lives.  This can be used to indicate
19 # where sub-Makefiles are expected to be.  Currently has very limited usage,
20 # and should probably not be bothered with at all.
21 HERE=.
22
23 # INSTALL_PREFIX is for package builders so that they can configure
24 # for, say, /usr/ and yet have everything installed to /tmp/somedir/usr/.
25 # Normally it is left empty.
26 INSTALL_PREFIX=
27 INSTALLTOP=/usr/local/ssl
28
29 # Do not edit this manually. Use Configure --openssldir=DIR do change this!
30 OPENSSLDIR=/usr/local/ssl
31
32 # NO_IDEA - Define to build without the IDEA algorithm
33 # NO_RC4  - Define to build without the RC4 algorithm
34 # NO_RC2  - Define to build without the RC2 algorithm
35 # THREADS - Define when building with threads, you will probably also need any
36 #           system defines as well, i.e. _REENTERANT for Solaris 2.[34]
37 # TERMIO  - Define the termio terminal subsystem, needed if sgtty is missing.
38 # TERMIOS - Define the termios terminal subsystem, Silicon Graphics.
39 # LONGCRYPT - Define to use HPUX 10.x's long password modification to crypt(3).
40 # DEVRANDOM - Give this the value of the 'random device' if your OS supports
41 #           one.  32 bytes will be read from this when the random
42 #           number generator is initalised.
43 # SSL_FORBID_ENULL - define if you want the server to be not able to use the
44 #           NULL encryption ciphers.
45 #
46 # LOCK_DEBUG - turns on lots of lock debug output :-)
47 # REF_CHECK - turn on some xyz_free() assertions.
48 # REF_PRINT - prints some stuff on structure free.
49 # CRYPTO_MDEBUG - turns on my 'memory leak' detecting stuff
50 # MFUNC - Make all Malloc/Free/Realloc calls call
51 #       CRYPTO_malloc/CRYPTO_free/CRYPTO_realloc which can be setup to
52 #       call application defined callbacks via CRYPTO_set_mem_functions()
53 # MD5_ASM needs to be defined to use the x86 assembler for MD5
54 # SHA1_ASM needs to be defined to use the x86 assembler for SHA1
55 # RMD160_ASM needs to be defined to use the x86 assembler for RIPEMD160
56 # Do not define B_ENDIAN or L_ENDIAN if 'unsigned long' == 8.  It must
57 # equal 4.
58 # PKCS1_CHECK - pkcs1 tests.
59
60 CC= cc
61 CFLAG= -O
62 DEPFLAG= 
63 PEX_LIBS= 
64 EX_LIBS= 
65 EXE_EXT= 
66 ARFLAGS=
67 AR=ar $(ARFLAGS) r
68 RANLIB= ranlib
69 NM= nm
70 PERL= perl
71 TAR= tar
72 TARFLAGS= --no-recursion
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_ENC= 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 WP_ASM_OBJ=
101 CMLL_ENC=
102 MODES_ASM_OBJ=
103 PERLASM_SCHEME=
104
105 # KRB5 stuff
106 KRB5_INCLUDES=
107 LIBKRB5=
108
109 # Zlib stuff
110 ZLIB_INCLUDE=
111 LIBZLIB=
112
113 # This is the location of fipscanister.o and friends.
114 # The FIPS module build will place it $(INSTALLTOP)/lib
115 # but since $(INSTALLTOP) can only take the default value
116 # when the module is built it will be in /usr/local/ssl/lib
117 # $(INSTALLTOP) for this build may be different so hard
118 # code the path.
119
120 FIPSLIBDIR=/usr/local/ssl/$(LIBDIR)/
121
122 # This is set to "y" if fipscanister.o is compiled internally as
123 # opposed to coming from an external validated location.
124
125 FIPSCANISTERINTERNAL=n
126
127 # The location of the library which contains fipscanister.o
128 # normally it will be libcrypto unless fipsdso is set in which
129 # case it will be libfips. If not compiling in FIPS mode at all
130 # this is empty making it a useful test for a FIPS compile.
131
132 FIPSCANLIB=
133
134 # Shared library base address. Currently only used on Windows.
135 #
136
137 BASEADDR=
138
139 DIRS=   crypto fips ssl engines apps test tools
140 ENGDIRS= ccgost
141 SHLIBDIRS= crypto ssl
142
143 # dirs in crypto to build
144 SDIRS=  \
145         objects \
146         md2 md4 md5 sha mdc2 hmac ripemd whrlpool \
147         des aes rc2 rc4 rc5 idea bf cast camellia seed modes \
148         bn ec rsa dsa ecdsa dh ecdh dso engine \
149         buffer bio stack lhash rand err \
150         evp asn1 pem x509 x509v3 conf txt_db pkcs7 pkcs12 comp ocsp ui krb5 \
151         cms pqueue ts jpake srp store cmac
152 # keep in mind that the above list is adjusted by ./Configure
153 # according to no-xxx arguments...
154
155 # tests to perform.  "alltests" is a special word indicating that all tests
156 # should be performed.
157 TESTS = alltests
158
159 MAKEFILE= Makefile
160
161 MANDIR=$(OPENSSLDIR)/man
162 MAN1=1
163 MAN3=3
164 MANSUFFIX=
165 HTMLSUFFIX=html
166 HTMLDIR=$(OPENSSLDIR)/html
167 SHELL=/bin/sh
168
169 TOP=    .
170 ONEDIRS=out tmp
171 EDIRS=  times doc bugs util include certs ms shlib mt demos perl sf dep VMS
172 WDIRS=  windows
173 LIBS=   libcrypto.a libssl.a
174 SHARED_CRYPTO=libcrypto$(SHLIB_EXT)
175 SHARED_SSL=libssl$(SHLIB_EXT)
176 SHARED_LIBS=
177 SHARED_LIBS_LINK_EXTS=
178 SHARED_LDFLAGS=
179
180 GENERAL=        Makefile
181 BASENAME=       openssl
182 NAME=           $(BASENAME)-$(VERSION)
183 TARFILE=        $(NAME).tar
184 WTARFILE=       $(NAME)-win.tar
185 EXHEADER=       e_os2.h
186 HEADER=         e_os.h
187
188 all: Makefile build_all openssl.pc libssl.pc libcrypto.pc
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:-(
195 CLEARENV=       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}             \
203                 $${SHAREDCMD+SHAREDCMD} $${SHAREDFLAGS+SHAREDFLAGS}     \
204                 $${SHARED_LIB+SHARED_LIB} $${LIBEXTRAS+LIBEXTRAS}
205
206 BUILDENV=       PLATFORM='$(PLATFORM)' PROCESSOR='$(PROCESSOR)' \
207                 CC='$(CC)' CFLAG='$(CFLAG)'                     \
208                 ASFLAG='$(CFLAG) -c'                    \
209                 AR='$(AR)' NM='$(NM)' RANLIB='$(RANLIB)'        \
210                 CROSS_COMPILE='$(CROSS_COMPILE)'        \
211                 PERL='$(PERL)' ENGDIRS='$(ENGDIRS)'             \
212                 SDIRS='$(SDIRS)' LIBRPATH='$(INSTALLTOP)/$(LIBDIR)'     \
213                 INSTALL_PREFIX='$(INSTALL_PREFIX)'              \
214                 INSTALLTOP='$(INSTALLTOP)' OPENSSLDIR='$(OPENSSLDIR)'   \
215                 LIBDIR='$(LIBDIR)'                              \
216                 MAKEDEPEND='$$$${TOP}/util/domd $$$${TOP} -MD $(MAKEDEPPROG)' \
217                 DEPFLAG='-DOPENSSL_NO_DEPRECATED $(DEPFLAG)'    \
218                 MAKEDEPPROG='$(MAKEDEPPROG)'                    \
219                 SHARED_LDFLAGS='$(SHARED_LDFLAGS)'              \
220                 KRB5_INCLUDES='$(KRB5_INCLUDES)' LIBKRB5='$(LIBKRB5)'   \
221                 ZLIB_INCLUDE='$(ZLIB_INCLUDE)' LIBZLIB='$(LIBZLIB)'     \
222                 EXE_EXT='$(EXE_EXT)' SHARED_LIBS='$(SHARED_LIBS)'       \
223                 SHLIB_EXT='$(SHLIB_EXT)' SHLIB_TARGET='$(SHLIB_TARGET)' \
224                 PEX_LIBS='$(PEX_LIBS)' EX_LIBS='$(EX_LIBS)'     \
225                 CPUID_OBJ='$(CPUID_OBJ)'                        \
226                 BN_ASM='$(BN_ASM)' DES_ENC='$(DES_ENC)'         \
227                 AES_ENC='$(AES_ENC)' CMLL_ENC='$(CMLL_ENC)'     \
228                 BF_ENC='$(BF_ENC)' CAST_ENC='$(CAST_ENC)'       \
229                 RC4_ENC='$(RC4_ENC)' RC5_ENC='$(RC5_ENC)'       \
230                 SHA1_ASM_OBJ='$(SHA1_ASM_OBJ)'                  \
231                 MD5_ASM_OBJ='$(MD5_ASM_OBJ)'                    \
232                 RMD160_ASM_OBJ='$(RMD160_ASM_OBJ)'              \
233                 WP_ASM_OBJ='$(WP_ASM_OBJ)'                      \
234                 MODES_ASM_OBJ='$(MODES_ASM_OBJ)'                \
235                 PERLASM_SCHEME='$(PERLASM_SCHEME)'              \
236                 FIPSLIBDIR='${FIPSLIBDIR}'                      \
237                 FIPSCANLIB="$${FIPSCANLIB:-$(FIPSCANLIB)}"      \
238                 FIPSCANISTERINTERNAL='${FIPSCANISTERINTERNAL}'  \
239                 FIPS_EX_OBJ='${FIPS_EX_OBJ}'    \
240                 THIS=$${THIS:-$@} MAKEFILE=Makefile MAKEOVERRIDES=
241 # MAKEOVERRIDES= effectively "equalizes" GNU-ish and SysV-ish make flavors,
242 # which in turn eliminates ambiguities in variable treatment with -e.
243
244 # BUILD_CMD is a generic macro to build a given target in a given
245 # subdirectory.  The target must be given through the shell variable
246 # `target' and the subdirectory to build in must be given through `dir'.
247 # This macro shouldn't be used directly, use RECURSIVE_BUILD_CMD or
248 # BUILD_ONE_CMD instead.
249 #
250 # BUILD_ONE_CMD is a macro to build a given target in a given
251 # subdirectory if that subdirectory is part of $(DIRS).  It requires
252 # exactly the same shell variables as BUILD_CMD.
253 #
254 # RECURSIVE_BUILD_CMD is a macro to build a given target in all
255 # subdirectories defined in $(DIRS).  It requires that the target
256 # is given through the shell variable `target'.
257 BUILD_CMD=  if [ -d "$$dir" ]; then \
258             (   cd $$dir && echo "making $$target in $$dir..." && \
259                 $(CLEARENV) && $(MAKE) -e $(BUILDENV) TOP=.. DIR=$$dir $$target \
260             ) || exit 1; \
261             fi
262 RECURSIVE_BUILD_CMD=for dir in $(DIRS); do $(BUILD_CMD); done
263 BUILD_ONE_CMD=\
264         if expr " $(DIRS) " : ".* $$dir " >/dev/null 2>&1; then \
265                 $(BUILD_CMD); \
266         fi
267
268 reflect:
269         @[ -n "$(THIS)" ] && $(CLEARENV) && $(MAKE) $(THIS) -e $(BUILDENV)
270
271 FIPS_EX_OBJ= ../crypto/aes/aes_cfb.o \
272         ../crypto/aes/aes_ecb.o \
273         ../crypto/aes/aes_ofb.o \
274         ../crypto/bn/bn_add.o \
275         ../crypto/bn/bn_blind.o \
276         ../crypto/bn/bn_ctx.o \
277         ../crypto/bn/bn_div.o \
278         ../crypto/bn/bn_exp2.o \
279         ../crypto/bn/bn_exp.o \
280         ../crypto/bn/bn_gcd.o \
281         ../crypto/bn/bn_gf2m.o \
282         ../crypto/bn/bn_lib.o \
283         ../crypto/bn/bn_mod.o \
284         ../crypto/bn/bn_mont.o \
285         ../crypto/bn/bn_mul.o \
286         ../crypto/bn/bn_nist.o \
287         ../crypto/bn/bn_prime.o \
288         ../crypto/bn/bn_rand.o \
289         ../crypto/bn/bn_recp.o \
290         ../crypto/bn/bn_shift.o \
291         ../crypto/bn/bn_sqr.o \
292         ../crypto/bn/bn_word.o \
293         ../crypto/bn/bn_x931p.o \
294         ../crypto/buffer/buf_str.o \
295         ../crypto/cmac/cmac.o \
296         ../crypto/cryptlib.o \
297         ../crypto/des/cfb64ede.o \
298         ../crypto/des/cfb64enc.o \
299         ../crypto/des/cfb_enc.o \
300         ../crypto/des/ecb3_enc.o \
301         ../crypto/des/ofb64ede.o \
302         ../crypto/des/fcrypt.o \
303         ../crypto/des/set_key.o \
304         ../crypto/dh/dh_check.o \
305         ../crypto/dh/dh_gen.o \
306         ../crypto/dh/dh_key.o \
307         ../crypto/dsa/dsa_gen.o \
308         ../crypto/dsa/dsa_key.o \
309         ../crypto/dsa/dsa_ossl.o \
310         ../crypto/ec/ec_curve.o \
311         ../crypto/ec/ec_cvt.o \
312         ../crypto/ec/ec_key.o \
313         ../crypto/ec/ec_lib.o \
314         ../crypto/ec/ecp_mont.o \
315         ../crypto/ec/ec_mult.o \
316         ../crypto/ec/ecp_nist.o \
317         ../crypto/ec/ecp_smpl.o \
318         ../crypto/ec/ec2_mult.o \
319         ../crypto/ec/ec2_smpl.o \
320         ../crypto/ecdh/ech_key.o \
321         ../crypto/ecdh/ech_ossl.o \
322         ../crypto/ecdsa/ecs_ossl.o \
323         ../crypto/evp/e_aes.o \
324         ../crypto/evp/e_des3.o \
325         ../crypto/evp/e_null.o \
326         ../crypto/evp/m_sha1.o \
327         ../crypto/evp/m_dss1.o \
328         ../crypto/evp/m_dss.o \
329         ../crypto/evp/m_ecdsa.o \
330         ../crypto/hmac/hmac.o \
331         ../crypto/modes/cbc128.o \
332         ../crypto/modes/ccm128.o \
333         ../crypto/modes/cfb128.o \
334         ../crypto/modes/ctr128.o \
335         ../crypto/modes/gcm128.o \
336         ../crypto/modes/ofb128.o \
337         ../crypto/modes/xts128.o \
338         ../crypto/rsa/rsa_eay.o \
339         ../crypto/rsa/rsa_gen.o \
340         ../crypto/rsa/rsa_crpt.o \
341         ../crypto/rsa/rsa_none.o \
342         ../crypto/rsa/rsa_oaep.o \
343         ../crypto/rsa/rsa_pk1.o \
344         ../crypto/rsa/rsa_pss.o \
345         ../crypto/rsa/rsa_ssl.o \
346         ../crypto/rsa/rsa_x931.o \
347         ../crypto/rsa/rsa_x931g.o \
348         ../crypto/sha/sha1dgst.o \
349         ../crypto/sha/sha256.o \
350         ../crypto/sha/sha512.o \
351         ../crypto/thr_id.o \
352         ../crypto/uid.o
353
354 sub_all: build_all
355 build_all: build_libs build_apps build_tests build_tools
356
357 build_libs: build_crypto build_fips build_ssl build_engines
358
359 build_fips:
360         @dir=fips; target=all; [ -z "$(FIPSCANLIB)" ] || $(BUILD_ONE_CMD)
361
362 build_crypto:
363         if [ -n "$(FIPSCANLIB)" ]; then \
364                 EXCL_OBJ='$(AES_ENC) $(BN_ASM) $(DES_ENC) $(CPUID_OBJ) $(SHA1_ASM_OBJ) $(MODES_ASM_OBJ) $(FIPS_EX_OBJ)' ; export EXCL_OBJ ; \
365                 ARX='$(PERL) $${TOP}/util/arx.pl $(AR)' ; \
366         else \
367                 ARX='${AR}' ; \
368         fi ; export ARX ; \
369         if [ $(FIPSCANISTERINTERNAL) = "y" ]; then \
370                 AS='$(PERL) $${TOP}/util/fipsas.pl $${TOP} $${<} $(CC) -c' ; \
371         else \
372                 AS='$(CC) -c' ; \
373         fi ; export AS ; \
374                 dir=crypto; target=all; $(BUILD_ONE_CMD)
375 build_ssl:
376         @dir=ssl; target=all; $(BUILD_ONE_CMD)
377 build_engines:
378         @dir=engines; target=all; $(BUILD_ONE_CMD)
379 build_apps:
380         @dir=apps; target=all; $(BUILD_ONE_CMD)
381 build_tests:
382         @dir=test; target=all; $(BUILD_ONE_CMD)
383 build_tools:
384         @dir=tools; target=all; $(BUILD_ONE_CMD)
385
386 all_testapps: build_libs build_testapps
387 build_testapps:
388         @dir=crypto; target=testapps; $(BUILD_ONE_CMD)
389
390 libcrypto$(SHLIB_EXT): libcrypto.a build_fips
391         @if [ "$(SHLIB_TARGET)" != "" ]; then \
392                 if [ "$(FIPSCANLIB)" = "libcrypto" ]; then \
393                         FIPSLD_CC="$(CC)"; CC=fips/fipsld; \
394                         export CC FIPSLD_CC; \
395                 fi; \
396                 $(MAKE) -e SHLIBDIRS=crypto build-shared; \
397         else \
398                 echo "There's no support for shared libraries on this platform" >&2; \
399                 exit 1; \
400         fi
401
402 libssl$(SHLIB_EXT): libcrypto$(SHLIB_EXT) libssl.a
403         @if [ "$(SHLIB_TARGET)" != "" ]; then \
404                 $(MAKE) SHLIBDIRS=ssl SHLIBDEPS='-lcrypto' build-shared; \
405         else \
406                 echo "There's no support for shared libraries on this platform" >&2; \
407                 exit 1; \
408         fi
409
410 clean-shared:
411         @set -e; for i in $(SHLIBDIRS); do \
412                 if [ -n "$(SHARED_LIBS_LINK_EXTS)" ]; then \
413                         tmp="$(SHARED_LIBS_LINK_EXTS)"; \
414                         for j in $${tmp:-x}; do \
415                                 ( set -x; rm -f lib$$i$$j ); \
416                         done; \
417                 fi; \
418                 ( set -x; rm -f lib$$i$(SHLIB_EXT) ); \
419                 if [ "$(PLATFORM)" = "Cygwin" ]; then \
420                         ( set -x; rm -f cyg$$i$(SHLIB_EXT) lib$$i$(SHLIB_EXT).a ); \
421                 fi; \
422         done
423
424 link-shared:
425         @ set -e; for i in $(SHLIBDIRS); do \
426                 $(MAKE) -f $(HERE)/Makefile.shared -e $(BUILDENV) \
427                         LIBNAME=$$i LIBVERSION=$(SHLIB_MAJOR).$(SHLIB_MINOR) \
428                         LIBCOMPATVERSIONS=";$(SHLIB_VERSION_HISTORY)" \
429                         symlink.$(SHLIB_TARGET); \
430                 libs="$$libs -l$$i"; \
431         done
432
433 build-shared: do_$(SHLIB_TARGET) link-shared
434
435 do_$(SHLIB_TARGET):
436         @ set -e; libs='-L. $(SHLIBDEPS)'; for i in $(SHLIBDIRS); do \
437                 if [ "$$i" = "ssl" -a -n "$(LIBKRB5)" ]; then \
438                         libs="$(LIBKRB5) $$libs"; \
439                 fi; \
440                 $(CLEARENV) && $(MAKE) -f Makefile.shared -e $(BUILDENV) \
441                         LIBNAME=$$i LIBVERSION=$(SHLIB_MAJOR).$(SHLIB_MINOR) \
442                         LIBCOMPATVERSIONS=";$(SHLIB_VERSION_HISTORY)" \
443                         LIBDEPS="$$libs $(EX_LIBS)" \
444                         link_a.$(SHLIB_TARGET); \
445                 libs="-l$$i $$libs"; \
446         done
447
448 libcrypto.pc: Makefile
449         @ ( echo 'prefix=$(INSTALLTOP)'; \
450             echo 'exec_prefix=$${prefix}'; \
451             echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
452             echo 'includedir=$${prefix}/include'; \
453             echo ''; \
454             echo 'Name: OpenSSL-libcrypto'; \
455             echo 'Description: OpenSSL cryptography library'; \
456             echo 'Version: '$(VERSION); \
457             echo 'Requires: '; \
458             echo 'Libs: -L$${libdir} -lcrypto $(EX_LIBS)'; \
459             echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libcrypto.pc
460
461 libssl.pc: Makefile
462         @ ( echo 'prefix=$(INSTALLTOP)'; \
463             echo 'exec_prefix=$${prefix}'; \
464             echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
465             echo 'includedir=$${prefix}/include'; \
466             echo ''; \
467             echo 'Name: OpenSSL'; \
468             echo 'Description: Secure Sockets Layer and cryptography libraries'; \
469             echo 'Version: '$(VERSION); \
470             echo 'Requires: '; \
471             echo 'Libs: -L$${libdir} -lssl -lcrypto $(EX_LIBS)'; \
472             echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libssl.pc
473
474 openssl.pc: Makefile
475         @ ( echo 'prefix=$(INSTALLTOP)'; \
476             echo 'exec_prefix=$${prefix}'; \
477             echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
478             echo 'includedir=$${prefix}/include'; \
479             echo ''; \
480             echo 'Name: OpenSSL'; \
481             echo 'Description: Secure Sockets Layer and cryptography libraries and tools'; \
482             echo 'Version: '$(VERSION); \
483             echo 'Requires: '; \
484             echo 'Libs: -L$${libdir} -lssl -lcrypto $(EX_LIBS)'; \
485             echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > openssl.pc
486
487 Makefile: Makefile.org Configure config
488         @echo "Makefile is older than Makefile.org, Configure or config."
489         @echo "Reconfigure the source tree (via './config' or 'perl Configure'), please."
490         @false
491
492 libclean:
493         rm -f *.map *.so *.so.* *.dll engines/*.so engines/*.dll *.a engines/*.a */lib */*/lib
494
495 clean:  libclean
496         rm -f shlib/*.o *.o core a.out fluff rehash.time testlog make.log cctest cctest.c
497         @set -e; target=clean; $(RECURSIVE_BUILD_CMD)
498         rm -f $(LIBS)
499         rm -f openssl.pc libssl.pc libcrypto.pc
500         rm -f speed.* .pure
501         rm -f $(TARFILE)
502         @set -e; for i in $(ONEDIRS) ;\
503         do \
504         rm -fr $$i/*; \
505         done
506
507 makefile.one: files
508         $(PERL) util/mk1mf.pl >makefile.one; \
509         sh util/do_ms.sh
510
511 files:
512         $(PERL) $(TOP)/util/files.pl Makefile > $(TOP)/MINFO
513         @set -e; target=files; $(RECURSIVE_BUILD_CMD)
514
515 links:
516         @$(PERL) $(TOP)/util/mkdir-p.pl include/openssl
517         @$(PERL) $(TOP)/util/mklink.pl include/openssl $(EXHEADER)
518         @set -e; target=links; $(RECURSIVE_BUILD_CMD)
519         @if [ -z "$(FIPSCANLIB)" ]; then \
520                 set -e; target=links; dir=fips ; $(BUILD_CMD) ; \
521         fi
522
523 gentests:
524         @(cd test && echo "generating dummy tests (if needed)..." && \
525         $(CLEARENV) && $(MAKE) -e $(BUILDENV) TESTS='$(TESTS)' OPENSSL_DEBUG_MEMORY=on generate );
526
527 dclean:
528         rm -rf *.bak include/openssl certs/.0
529         @set -e; target=dclean; $(RECURSIVE_BUILD_CMD)
530
531 rehash: rehash.time
532 rehash.time: certs apps
533         @if [ -z "$(CROSS_COMPILE)" ]; then \
534                 (OPENSSL="`pwd`/util/opensslwrap.sh"; \
535                 [ -x "apps/openssl.exe" ] && OPENSSL="apps/openssl.exe" || :; \
536                 OPENSSL_DEBUG_MEMORY=on; \
537                 export OPENSSL OPENSSL_DEBUG_MEMORY; \
538                 $(PERL) tools/c_rehash certs) && \
539                 touch rehash.time; \
540         else :; fi
541
542 test:   tests
543
544 tests: rehash
545         @(cd test && echo "testing..." && \
546         $(CLEARENV) && $(MAKE) -e $(BUILDENV) TOP=.. TESTS='$(TESTS)' OPENSSL_DEBUG_MEMORY=on OPENSSL_CONF=../apps/openssl.cnf tests );
547         OPENSSL_CONF=apps/openssl.cnf util/opensslwrap.sh version -a
548
549 report:
550         @$(PERL) util/selftest.pl
551
552 depend:
553         @set -e; target=depend; $(RECURSIVE_BUILD_CMD)
554
555 lint:
556         @set -e; target=lint; $(RECURSIVE_BUILD_CMD)
557
558 tags:
559         rm -f TAGS
560         find . -name '[^.]*.[ch]' | xargs etags -a
561
562 errors:
563         $(PERL) util/mkerr.pl -recurse -write
564         (cd engines; $(MAKE) PERL=$(PERL) errors)
565         $(PERL) util/ck_errf.pl -strict */*.c */*/*.c
566
567 stacks:
568         $(PERL) util/mkstack.pl -write
569
570 util/libeay.num::
571         $(PERL) util/mkdef.pl crypto update
572
573 util/ssleay.num::
574         $(PERL) util/mkdef.pl ssl update
575
576 crypto/objects/obj_dat.h: crypto/objects/obj_dat.pl crypto/objects/obj_mac.h
577         $(PERL) crypto/objects/obj_dat.pl crypto/objects/obj_mac.h crypto/objects/obj_dat.h
578 crypto/objects/obj_mac.h: crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num
579         $(PERL) crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num crypto/objects/obj_mac.h
580 crypto/objects/obj_xref.h: crypto/objects/objxref.pl crypto/objects/obj_xref.txt crypto/objects/obj_mac.num
581         $(PERL) crypto/objects/objxref.pl crypto/objects/obj_mac.num crypto/objects/obj_xref.txt >crypto/objects/obj_xref.h
582
583 apps/openssl-vms.cnf: apps/openssl.cnf
584         $(PERL) VMS/VMSify-conf.pl < apps/openssl.cnf > apps/openssl-vms.cnf
585
586 crypto/bn/bn_prime.h: crypto/bn/bn_prime.pl
587         $(PERL) crypto/bn/bn_prime.pl >crypto/bn/bn_prime.h
588
589
590 TABLE: Configure
591         (echo 'Output of `Configure TABLE'"':"; \
592         $(PERL) Configure TABLE) > TABLE
593
594 update: 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
595
596 # Build distribution tar-file. As the list of files returned by "find" is
597 # pretty long, on several platforms a "too many arguments" error or similar
598 # would occur. Therefore the list of files is temporarily stored into a file
599 # and read directly, requiring GNU-Tar. Call "make TAR=gtar dist" if the normal
600 # tar does not support the --files-from option.
601 tar:
602         find . -type d -print | xargs chmod 755
603         find . -type f -print | xargs chmod a+r
604         find . -type f -perm -0100 -print | xargs chmod a+x
605         find * \! -path CVS/\* \! -path \*/CVS/\* \! -name CVS \! -name .cvsignore \! -name STATUS \! -name TABLE | sort > ../$(TARFILE).list; \
606         $(TAR) $(TARFLAGS) --files-from ../$(TARFILE).list -cvf - | \
607         tardy --user_number=0  --user_name=openssl \
608               --group_number=0 --group_name=openssl \
609               --prefix=openssl-$(VERSION) - |\
610         gzip --best >../$(TARFILE).gz; \
611         rm -f ../$(TARFILE).list; \
612         ls -l ../$(TARFILE).gz
613
614 tar-snap:
615         @$(TAR) $(TARFLAGS) -cvf - \
616                 `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` |\
617         tardy --user_number=0  --user_name=openssl \
618               --group_number=0 --group_name=openssl \
619               --prefix=openssl-$(VERSION) - > ../$(TARFILE);\
620         ls -l ../$(TARFILE)
621
622 dist:   
623         $(PERL) Configure dist
624         @$(MAKE) dist_pem_h
625         @$(MAKE) SDIRS='$(SDIRS)' clean
626         @$(MAKE) TAR='$(TAR)' TARFLAGS='$(TARFLAGS)' tar
627
628 dist_pem_h:
629         (cd crypto/pem; $(MAKE) -e $(BUILDENV) pem.h; $(MAKE) clean)
630
631 install: all install_docs install_sw
632
633 install_sw:
634         @$(PERL) $(TOP)/util/mkdir-p.pl $(INSTALL_PREFIX)$(INSTALLTOP)/bin \
635                 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR) \
636                 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines \
637                 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig \
638                 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl \
639                 $(INSTALL_PREFIX)$(OPENSSLDIR)/misc \
640                 $(INSTALL_PREFIX)$(OPENSSLDIR)/certs \
641                 $(INSTALL_PREFIX)$(OPENSSLDIR)/private
642         @set -e; headerlist="$(EXHEADER)"; for i in $$headerlist;\
643         do \
644         (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
645         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
646         done;
647         @set -e; target=install; $(RECURSIVE_BUILD_CMD)
648         @set -e; liblist="$(LIBS)"; for i in $$liblist ;\
649         do \
650                 if [ -f "$$i" ]; then \
651                 (       echo installing $$i; \
652                         cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
653                         $(RANLIB) $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
654                         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
655                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i ); \
656                 fi; \
657         done;
658         @set -e; if [ -n "$(SHARED_LIBS)" ]; then \
659                 tmp="$(SHARED_LIBS)"; \
660                 for i in $${tmp:-x}; \
661                 do \
662                         if [ -f "$$i" -o -f "$$i.a" ]; then \
663                         (       echo installing $$i; \
664                                 if [ "$(PLATFORM)" != "Cygwin" ]; then \
665                                         cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
666                                         chmod 555 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
667                                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i; \
668                                 else \
669                                         c=`echo $$i | sed 's/^lib\(.*\)\.dll\.a/cyg\1-$(SHLIB_VERSION_NUMBER).dll/'`; \
670                                         cp $$c $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
671                                         chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
672                                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c; \
673                                         cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
674                                         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
675                                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i; \
676                                 fi ); \
677                                 if expr $(PLATFORM) : 'mingw' > /dev/null; then \
678                                 (       case $$i in \
679                                                 *crypto*) i=libeay32.dll;; \
680                                                 *ssl*)    i=ssleay32.dll;; \
681                                         esac; \
682                                         echo installing $$i; \
683                                         cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \
684                                         chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \
685                                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i ); \
686                                 fi; \
687                         fi; \
688                 done; \
689                 (       here="`pwd`"; \
690                         cd $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR); \
691                         $(MAKE) -f $$here/Makefile HERE="$$here" link-shared ); \
692                 if [ "$(INSTALLTOP)" != "/usr" ]; then \
693                         echo 'OpenSSL shared libraries have been installed in:'; \
694                         echo '  $(INSTALLTOP)'; \
695                         echo ''; \
696                         sed -e '1,/^$$/d' doc/openssl-shared.txt; \
697                 fi; \
698         fi
699         cp libcrypto.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
700         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libcrypto.pc
701         cp libssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
702         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libssl.pc
703         cp openssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
704         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/openssl.pc
705
706 install_html_docs:
707         here="`pwd`"; \
708         for subdir in apps crypto ssl; do \
709                 mkdir -p $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir; \
710                 for i in doc/$$subdir/*.pod; do \
711                         fn=`basename $$i .pod`; \
712                         echo "installing html/$$fn.$(HTMLSUFFIX)"; \
713                         cat $$i \
714                         | sed -r 's/L<([^)]*)(\([0-9]\))?\|([^)]*)(\([0-9]\))?>/L<\1|\3>/g' \
715                         | pod2html --podroot=doc --htmlroot=.. --podpath=apps:crypto:ssl \
716                         | sed -r 's/<!DOCTYPE.*//g' \
717                         > $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir/$$fn.$(HTMLSUFFIX); \
718                         $(PERL) util/extract-names.pl < $$i | \
719                                 grep -v $$filecase "^$$fn\$$" | \
720                                 (cd $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir; \
721                                  while read n; do \
722                                         PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$(HTMLSUFFIX) "$$n".$(HTMLSUFFIX); \
723                                  done); \
724                 done; \
725         done
726
727 install_docs:
728         @$(PERL) $(TOP)/util/mkdir-p.pl \
729                 $(INSTALL_PREFIX)$(MANDIR)/man1 \
730                 $(INSTALL_PREFIX)$(MANDIR)/man3 \
731                 $(INSTALL_PREFIX)$(MANDIR)/man5 \
732                 $(INSTALL_PREFIX)$(MANDIR)/man7
733         @pod2man="`cd ./util; ./pod2mantest $(PERL)`"; \
734         here="`pwd`"; \
735         filecase=; \
736         if [ "$(PLATFORM)" = "DJGPP" -o "$(PLATFORM)" = "Cygwin" -o "$(PLATFORM)" = "mingw" ]; then \
737                 filecase=-i; \
738         fi; \
739         set -e; for i in doc/apps/*.pod; do \
740                 fn=`basename $$i .pod`; \
741                 sec=`$(PERL) util/extract-section.pl 1 < $$i`; \
742                 echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
743                 (cd `$(PERL) util/dirname.pl $$i`; \
744                 sh -c "$$pod2man \
745                         --section=$$sec --center=OpenSSL \
746                         --release=$(VERSION) `basename $$i`") \
747                         >  $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
748                 $(PERL) util/extract-names.pl < $$i | \
749                         (grep -v $$filecase "^$$fn\$$"; true) | \
750                         (grep -v "[     ]"; true) | \
751                         (cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
752                          while read n; do \
753                                 PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
754                          done); \
755         done; \
756         set -e; for i in doc/crypto/*.pod doc/ssl/*.pod; do \
757                 fn=`basename $$i .pod`; \
758                 sec=`$(PERL) util/extract-section.pl 3 < $$i`; \
759                 echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
760                 (cd `$(PERL) util/dirname.pl $$i`; \
761                 sh -c "$$pod2man \
762                         --section=$$sec --center=OpenSSL \
763                         --release=$(VERSION) `basename $$i`") \
764                         >  $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
765                 $(PERL) util/extract-names.pl < $$i | \
766                         (grep -v $$filecase "^$$fn\$$"; true) | \
767                         (grep -v "[     ]"; true) | \
768                         (cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
769                          while read n; do \
770                                 PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
771                          done); \
772         done
773
774 # DO NOT DELETE THIS LINE -- make depend depends on it.