e_aes_cbc_hmac_sha1.c: fix rare bad record mac on AES-NI plaforms.
[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 ENGINES_ASM_OBJ=
104 PERLASM_SCHEME=
105
106 # KRB5 stuff
107 KRB5_INCLUDES=
108 LIBKRB5=
109
110 # Zlib stuff
111 ZLIB_INCLUDE=
112 LIBZLIB=
113
114 # This is the location of fipscanister.o and friends.
115 # The FIPS module build will place it $(INSTALLTOP)/lib
116 # but since $(INSTALLTOP) can only take the default value
117 # when the module is built it will be in /usr/local/ssl/lib
118 # $(INSTALLTOP) for this build may be different so hard
119 # code the path.
120
121 FIPSLIBDIR=/usr/local/ssl/$(LIBDIR)/
122
123 # This is set to "y" if fipscanister.o is compiled internally as
124 # opposed to coming from an external validated location.
125
126 FIPSCANISTERINTERNAL=n
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
133 FIPSCANLIB=
134
135 # Shared library base address. Currently only used on Windows.
136 #
137
138 BASEADDR=
139
140 DIRS=   crypto fips ssl engines apps test tools
141 ENGDIRS= ccgost
142 SHLIBDIRS= crypto ssl
143
144 # dirs in crypto to build
145 SDIRS=  \
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.
158 TESTS = alltests
159
160 MAKEFILE= Makefile
161
162 MANDIR=$(OPENSSLDIR)/man
163 MAN1=1
164 MAN3=3
165 MANSUFFIX=
166 HTMLSUFFIX=html
167 HTMLDIR=$(OPENSSLDIR)/html
168 SHELL=/bin/sh
169
170 TOP=    .
171 ONEDIRS=out tmp
172 EDIRS=  times doc bugs util include certs ms shlib mt demos perl sf dep VMS
173 WDIRS=  windows
174 LIBS=   libcrypto.a libssl.a
175 SHARED_CRYPTO=libcrypto$(SHLIB_EXT)
176 SHARED_SSL=libssl$(SHLIB_EXT)
177 SHARED_LIBS=
178 SHARED_LIBS_LINK_EXTS=
179 SHARED_LDFLAGS=
180
181 GENERAL=        Makefile
182 BASENAME=       openssl
183 NAME=           $(BASENAME)-$(VERSION)
184 TARFILE=        $(NAME).tar
185 WTARFILE=       $(NAME)-win.tar
186 EXHEADER=       e_os2.h
187 HEADER=         e_os.h
188
189 all: Makefile build_all openssl.pc libssl.pc libcrypto.pc
190
191 # as we stick to -e, CLEARENV ensures that local variables in lower
192 # Makefiles remain local and variable. $${VAR+VAR} is tribute to Korn
193 # shell, which [annoyingly enough] terminates unset with error if VAR
194 # is not present:-( TOP= && unset TOP is tribute to HP-UX /bin/sh,
195 # which terminates unset with error if no variable was present:-(
196 CLEARENV=       TOP= && unset TOP $${LIB+LIB} $${LIBS+LIBS}     \
197                 $${INCLUDE+INCLUDE} $${INCLUDES+INCLUDES}       \
198                 $${DIR+DIR} $${DIRS+DIRS} $${SRC+SRC}           \
199                 $${LIBSRC+LIBSRC} $${LIBOBJ+LIBOBJ} $${ALL+ALL} \
200                 $${EXHEADER+EXHEADER} $${HEADER+HEADER}         \
201                 $${GENERAL+GENERAL} $${CFLAGS+CFLAGS}           \
202                 $${ASFLAGS+ASFLAGS} $${AFLAGS+AFLAGS}           \
203                 $${LDCMD+LDCMD} $${LDFLAGS+LDFLAGS} $${SCRIPTS+SCRIPTS} \
204                 $${SHAREDCMD+SHAREDCMD} $${SHAREDFLAGS+SHAREDFLAGS}     \
205                 $${SHARED_LIB+SHARED_LIB} $${LIBEXTRAS+LIBEXTRAS}
206
207 BUILDENV=       PLATFORM='$(PLATFORM)' PROCESSOR='$(PROCESSOR)' \
208                 CC='$(CC)' CFLAG='$(CFLAG)'                     \
209                 ASFLAG='$(CFLAG) -c'                    \
210                 AR='$(AR)' NM='$(NM)' RANLIB='$(RANLIB)'        \
211                 CROSS_COMPILE='$(CROSS_COMPILE)'        \
212                 PERL='$(PERL)' ENGDIRS='$(ENGDIRS)'             \
213                 SDIRS='$(SDIRS)' LIBRPATH='$(INSTALLTOP)/$(LIBDIR)'     \
214                 INSTALL_PREFIX='$(INSTALL_PREFIX)'              \
215                 INSTALLTOP='$(INSTALLTOP)' OPENSSLDIR='$(OPENSSLDIR)'   \
216                 LIBDIR='$(LIBDIR)'                              \
217                 MAKEDEPEND='$$$${TOP}/util/domd $$$${TOP} -MD $(MAKEDEPPROG)' \
218                 DEPFLAG='-DOPENSSL_NO_DEPRECATED $(DEPFLAG)'    \
219                 MAKEDEPPROG='$(MAKEDEPPROG)'                    \
220                 SHARED_LDFLAGS='$(SHARED_LDFLAGS)'              \
221                 KRB5_INCLUDES='$(KRB5_INCLUDES)' LIBKRB5='$(LIBKRB5)'   \
222                 ZLIB_INCLUDE='$(ZLIB_INCLUDE)' LIBZLIB='$(LIBZLIB)'     \
223                 EXE_EXT='$(EXE_EXT)' SHARED_LIBS='$(SHARED_LIBS)'       \
224                 SHLIB_EXT='$(SHLIB_EXT)' SHLIB_TARGET='$(SHLIB_TARGET)' \
225                 PEX_LIBS='$(PEX_LIBS)' EX_LIBS='$(EX_LIBS)'     \
226                 CPUID_OBJ='$(CPUID_OBJ)'                        \
227                 BN_ASM='$(BN_ASM)' DES_ENC='$(DES_ENC)'         \
228                 AES_ENC='$(AES_ENC)' CMLL_ENC='$(CMLL_ENC)'     \
229                 BF_ENC='$(BF_ENC)' CAST_ENC='$(CAST_ENC)'       \
230                 RC4_ENC='$(RC4_ENC)' RC5_ENC='$(RC5_ENC)'       \
231                 SHA1_ASM_OBJ='$(SHA1_ASM_OBJ)'                  \
232                 MD5_ASM_OBJ='$(MD5_ASM_OBJ)'                    \
233                 RMD160_ASM_OBJ='$(RMD160_ASM_OBJ)'              \
234                 WP_ASM_OBJ='$(WP_ASM_OBJ)'                      \
235                 MODES_ASM_OBJ='$(MODES_ASM_OBJ)'                \
236                 ENGINES_ASM_OBJ='$(ENGINES_ASM_OBJ)'            \
237                 PERLASM_SCHEME='$(PERLASM_SCHEME)'              \
238                 FIPSLIBDIR='${FIPSLIBDIR}'                      \
239                 FIPSCANLIB="$${FIPSCANLIB:-$(FIPSCANLIB)}"      \
240                 FIPSCANISTERINTERNAL='${FIPSCANISTERINTERNAL}'  \
241                 FIPS_EX_OBJ='${FIPS_EX_OBJ}'    \
242                 THIS=$${THIS:-$@} MAKEFILE=Makefile MAKEOVERRIDES=
243 # MAKEOVERRIDES= effectively "equalizes" GNU-ish and SysV-ish make flavors,
244 # which in turn eliminates ambiguities in variable treatment with -e.
245
246 # BUILD_CMD is a generic macro to build a given target in a given
247 # subdirectory.  The target must be given through the shell variable
248 # `target' and the subdirectory to build in must be given through `dir'.
249 # This macro shouldn't be used directly, use RECURSIVE_BUILD_CMD or
250 # BUILD_ONE_CMD instead.
251 #
252 # BUILD_ONE_CMD is a macro to build a given target in a given
253 # subdirectory if that subdirectory is part of $(DIRS).  It requires
254 # exactly the same shell variables as BUILD_CMD.
255 #
256 # RECURSIVE_BUILD_CMD is a macro to build a given target in all
257 # subdirectories defined in $(DIRS).  It requires that the target
258 # is given through the shell variable `target'.
259 BUILD_CMD=  if [ -d "$$dir" ]; then \
260             (   cd $$dir && echo "making $$target in $$dir..." && \
261                 $(CLEARENV) && $(MAKE) -e $(BUILDENV) TOP=.. DIR=$$dir $$target \
262             ) || exit 1; \
263             fi
264 RECURSIVE_BUILD_CMD=for dir in $(DIRS); do $(BUILD_CMD); done
265 BUILD_ONE_CMD=\
266         if expr " $(DIRS) " : ".* $$dir " >/dev/null 2>&1; then \
267                 $(BUILD_CMD); \
268         fi
269
270 reflect:
271         @[ -n "$(THIS)" ] && $(CLEARENV) && $(MAKE) $(THIS) -e $(BUILDENV)
272
273 FIPS_EX_OBJ= ../crypto/aes/aes_cfb.o \
274         ../crypto/aes/aes_ecb.o \
275         ../crypto/aes/aes_ofb.o \
276         ../crypto/bn/bn_add.o \
277         ../crypto/bn/bn_blind.o \
278         ../crypto/bn/bn_ctx.o \
279         ../crypto/bn/bn_div.o \
280         ../crypto/bn/bn_exp2.o \
281         ../crypto/bn/bn_exp.o \
282         ../crypto/bn/bn_gcd.o \
283         ../crypto/bn/bn_gf2m.o \
284         ../crypto/bn/bn_lib.o \
285         ../crypto/bn/bn_mod.o \
286         ../crypto/bn/bn_mont.o \
287         ../crypto/bn/bn_mul.o \
288         ../crypto/bn/bn_nist.o \
289         ../crypto/bn/bn_prime.o \
290         ../crypto/bn/bn_rand.o \
291         ../crypto/bn/bn_recp.o \
292         ../crypto/bn/bn_shift.o \
293         ../crypto/bn/bn_sqr.o \
294         ../crypto/bn/bn_word.o \
295         ../crypto/bn/bn_x931p.o \
296         ../crypto/buffer/buf_str.o \
297         ../crypto/cmac/cmac.o \
298         ../crypto/cryptlib.o \
299         ../crypto/des/cfb64ede.o \
300         ../crypto/des/cfb64enc.o \
301         ../crypto/des/cfb_enc.o \
302         ../crypto/des/ecb3_enc.o \
303         ../crypto/des/ofb64ede.o \
304         ../crypto/des/fcrypt.o \
305         ../crypto/des/set_key.o \
306         ../crypto/dh/dh_check.o \
307         ../crypto/dh/dh_gen.o \
308         ../crypto/dh/dh_key.o \
309         ../crypto/dsa/dsa_gen.o \
310         ../crypto/dsa/dsa_key.o \
311         ../crypto/dsa/dsa_ossl.o \
312         ../crypto/ec/ec_curve.o \
313         ../crypto/ec/ec_cvt.o \
314         ../crypto/ec/ec_key.o \
315         ../crypto/ec/ec_lib.o \
316         ../crypto/ec/ecp_mont.o \
317         ../crypto/ec/ec_mult.o \
318         ../crypto/ec/ecp_nist.o \
319         ../crypto/ec/ecp_smpl.o \
320         ../crypto/ec/ec2_mult.o \
321         ../crypto/ec/ec2_smpl.o \
322         ../crypto/ecdh/ech_key.o \
323         ../crypto/ecdh/ech_ossl.o \
324         ../crypto/ecdsa/ecs_ossl.o \
325         ../crypto/evp/e_aes.o \
326         ../crypto/evp/e_des3.o \
327         ../crypto/evp/e_null.o \
328         ../crypto/evp/m_sha1.o \
329         ../crypto/evp/m_dss1.o \
330         ../crypto/evp/m_dss.o \
331         ../crypto/evp/m_ecdsa.o \
332         ../crypto/hmac/hmac.o \
333         ../crypto/modes/cbc128.o \
334         ../crypto/modes/ccm128.o \
335         ../crypto/modes/cfb128.o \
336         ../crypto/modes/ctr128.o \
337         ../crypto/modes/gcm128.o \
338         ../crypto/modes/ofb128.o \
339         ../crypto/modes/xts128.o \
340         ../crypto/rsa/rsa_eay.o \
341         ../crypto/rsa/rsa_gen.o \
342         ../crypto/rsa/rsa_crpt.o \
343         ../crypto/rsa/rsa_none.o \
344         ../crypto/rsa/rsa_oaep.o \
345         ../crypto/rsa/rsa_pk1.o \
346         ../crypto/rsa/rsa_pss.o \
347         ../crypto/rsa/rsa_ssl.o \
348         ../crypto/rsa/rsa_x931.o \
349         ../crypto/rsa/rsa_x931g.o \
350         ../crypto/sha/sha1dgst.o \
351         ../crypto/sha/sha256.o \
352         ../crypto/sha/sha512.o \
353         ../crypto/thr_id.o \
354         ../crypto/uid.o
355
356 sub_all: build_all
357 build_all: build_libs build_apps build_tests build_tools
358
359 build_libs: build_crypto build_fips build_ssl build_engines
360
361 build_fips:
362         @dir=fips; target=all; [ -z "$(FIPSCANLIB)" ] || $(BUILD_ONE_CMD)
363
364 build_crypto:
365         if [ -n "$(FIPSCANLIB)" ]; then \
366                 EXCL_OBJ='$(AES_ENC) $(BN_ASM) $(DES_ENC) $(CPUID_OBJ) $(SHA1_ASM_OBJ) $(MODES_ASM_OBJ) $(FIPS_EX_OBJ)' ; export EXCL_OBJ ; \
367                 ARX='$(PERL) $${TOP}/util/arx.pl $(AR)' ; \
368         else \
369                 ARX='${AR}' ; \
370         fi ; export ARX ; \
371         if [ $(FIPSCANISTERINTERNAL) = "y" ]; then \
372                 AS='$(PERL) $${TOP}/util/fipsas.pl $${TOP} $${<} $(CC) -c' ; \
373         else \
374                 AS='$(CC) -c' ; \
375         fi ; export AS ; \
376                 dir=crypto; target=all; $(BUILD_ONE_CMD)
377 build_ssl:
378         @dir=ssl; target=all; $(BUILD_ONE_CMD)
379 build_engines:
380         @dir=engines; target=all; AS='$(CC) -c'; export AS; $(BUILD_ONE_CMD)
381 build_apps:
382         @dir=apps; target=all; $(BUILD_ONE_CMD)
383 build_tests:
384         @dir=test; target=all; $(BUILD_ONE_CMD)
385 build_tools:
386         @dir=tools; target=all; $(BUILD_ONE_CMD)
387
388 all_testapps: build_libs build_testapps
389 build_testapps:
390         @dir=crypto; target=testapps; $(BUILD_ONE_CMD)
391
392 libcrypto$(SHLIB_EXT): libcrypto.a build_fips
393         @if [ "$(SHLIB_TARGET)" != "" ]; then \
394                 if [ "$(FIPSCANLIB)" = "libcrypto" ]; then \
395                         FIPSLD_CC="$(CC)"; CC=fips/fipsld; \
396                         export CC FIPSLD_CC; \
397                 fi; \
398                 $(MAKE) -e SHLIBDIRS=crypto build-shared; \
399         else \
400                 echo "There's no support for shared libraries on this platform" >&2; \
401                 exit 1; \
402         fi
403
404 libssl$(SHLIB_EXT): libcrypto$(SHLIB_EXT) libssl.a
405         @if [ "$(SHLIB_TARGET)" != "" ]; then \
406                 $(MAKE) SHLIBDIRS=ssl SHLIBDEPS='-lcrypto' build-shared; \
407         else \
408                 echo "There's no support for shared libraries on this platform" >&2; \
409                 exit 1; \
410         fi
411
412 clean-shared:
413         @set -e; for i in $(SHLIBDIRS); do \
414                 if [ -n "$(SHARED_LIBS_LINK_EXTS)" ]; then \
415                         tmp="$(SHARED_LIBS_LINK_EXTS)"; \
416                         for j in $${tmp:-x}; do \
417                                 ( set -x; rm -f lib$$i$$j ); \
418                         done; \
419                 fi; \
420                 ( set -x; rm -f lib$$i$(SHLIB_EXT) ); \
421                 if [ "$(PLATFORM)" = "Cygwin" ]; then \
422                         ( set -x; rm -f cyg$$i$(SHLIB_EXT) lib$$i$(SHLIB_EXT).a ); \
423                 fi; \
424         done
425
426 link-shared:
427         @ set -e; for i in $(SHLIBDIRS); do \
428                 $(MAKE) -f $(HERE)/Makefile.shared -e $(BUILDENV) \
429                         LIBNAME=$$i LIBVERSION=$(SHLIB_MAJOR).$(SHLIB_MINOR) \
430                         LIBCOMPATVERSIONS=";$(SHLIB_VERSION_HISTORY)" \
431                         symlink.$(SHLIB_TARGET); \
432                 libs="$$libs -l$$i"; \
433         done
434
435 build-shared: do_$(SHLIB_TARGET) link-shared
436
437 do_$(SHLIB_TARGET):
438         @ set -e; libs='-L. $(SHLIBDEPS)'; for i in $(SHLIBDIRS); do \
439                 if [ "$$i" = "ssl" -a -n "$(LIBKRB5)" ]; then \
440                         libs="$(LIBKRB5) $$libs"; \
441                 fi; \
442                 $(CLEARENV) && $(MAKE) -f Makefile.shared -e $(BUILDENV) \
443                         LIBNAME=$$i LIBVERSION=$(SHLIB_MAJOR).$(SHLIB_MINOR) \
444                         LIBCOMPATVERSIONS=";$(SHLIB_VERSION_HISTORY)" \
445                         LIBDEPS="$$libs $(EX_LIBS)" \
446                         link_a.$(SHLIB_TARGET); \
447                 libs="-l$$i $$libs"; \
448         done
449
450 libcrypto.pc: Makefile
451         @ ( echo 'prefix=$(INSTALLTOP)'; \
452             echo 'exec_prefix=$${prefix}'; \
453             echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
454             echo 'includedir=$${prefix}/include'; \
455             echo ''; \
456             echo 'Name: OpenSSL-libcrypto'; \
457             echo 'Description: OpenSSL cryptography library'; \
458             echo 'Version: '$(VERSION); \
459             echo 'Requires: '; \
460             echo 'Libs: -L$${libdir} -lcrypto'; \
461             echo 'Libs.private: $(EX_LIBS)'; \
462             echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libcrypto.pc
463
464 libssl.pc: Makefile
465         @ ( echo 'prefix=$(INSTALLTOP)'; \
466             echo 'exec_prefix=$${prefix}'; \
467             echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
468             echo 'includedir=$${prefix}/include'; \
469             echo ''; \
470             echo 'Name: OpenSSL'; \
471             echo 'Description: Secure Sockets Layer and cryptography libraries'; \
472             echo 'Version: '$(VERSION); \
473             echo 'Requires: '; \
474             echo 'Libs: -L$${libdir} -lssl -lcrypto'; \
475             echo 'Libs.private: $(EX_LIBS)'; \
476             echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libssl.pc
477
478 openssl.pc: Makefile
479         @ ( echo 'prefix=$(INSTALLTOP)'; \
480             echo 'exec_prefix=$${prefix}'; \
481             echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
482             echo 'includedir=$${prefix}/include'; \
483             echo ''; \
484             echo 'Name: OpenSSL'; \
485             echo 'Description: Secure Sockets Layer and cryptography libraries and tools'; \
486             echo 'Version: '$(VERSION); \
487             echo 'Requires: '; \
488             echo 'Libs: -L$${libdir} -lssl -lcrypto'; \
489             echo 'Libs.private: $(EX_LIBS)'; \
490             echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > openssl.pc
491
492 Makefile: Makefile.org Configure config
493         @echo "Makefile is older than Makefile.org, Configure or config."
494         @echo "Reconfigure the source tree (via './config' or 'perl Configure'), please."
495         @false
496
497 libclean:
498         rm -f *.map *.so *.so.* *.dylib *.dll engines/*.so engines/*.dll engines/*.dylib *.a engines/*.a */lib */*/lib
499
500 clean:  libclean
501         rm -f shlib/*.o *.o core a.out fluff rehash.time testlog make.log cctest cctest.c
502         @set -e; target=clean; $(RECURSIVE_BUILD_CMD)
503         rm -f $(LIBS)
504         rm -f openssl.pc libssl.pc libcrypto.pc
505         rm -f speed.* .pure
506         rm -f $(TARFILE)
507         @set -e; for i in $(ONEDIRS) ;\
508         do \
509         rm -fr $$i/*; \
510         done
511
512 makefile.one: files
513         $(PERL) util/mk1mf.pl >makefile.one; \
514         sh util/do_ms.sh
515
516 files:
517         $(PERL) $(TOP)/util/files.pl Makefile > $(TOP)/MINFO
518         @set -e; target=files; $(RECURSIVE_BUILD_CMD)
519
520 links:
521         @$(PERL) $(TOP)/util/mkdir-p.pl include/openssl
522         @$(PERL) $(TOP)/util/mklink.pl include/openssl $(EXHEADER)
523         @set -e; target=links; $(RECURSIVE_BUILD_CMD)
524         @if [ -z "$(FIPSCANLIB)" ]; then \
525                 set -e; target=links; dir=fips ; $(BUILD_CMD) ; \
526         fi
527
528 gentests:
529         @(cd test && echo "generating dummy tests (if needed)..." && \
530         $(CLEARENV) && $(MAKE) -e $(BUILDENV) TESTS='$(TESTS)' OPENSSL_DEBUG_MEMORY=on generate );
531
532 dclean:
533         rm -rf *.bak include/openssl certs/.0
534         @set -e; target=dclean; $(RECURSIVE_BUILD_CMD)
535
536 rehash: rehash.time
537 rehash.time: certs apps
538         @if [ -z "$(CROSS_COMPILE)" ]; then \
539                 (OPENSSL="`pwd`/util/opensslwrap.sh"; \
540                 [ -x "apps/openssl.exe" ] && OPENSSL="apps/openssl.exe" || :; \
541                 OPENSSL_DEBUG_MEMORY=on; \
542                 export OPENSSL OPENSSL_DEBUG_MEMORY; \
543                 $(PERL) tools/c_rehash certs/demo) && \
544                 touch rehash.time; \
545         else :; fi
546
547 test:   tests
548
549 tests: rehash
550         @(cd test && echo "testing..." && \
551         $(CLEARENV) && $(MAKE) -e $(BUILDENV) TOP=.. TESTS='$(TESTS)' OPENSSL_DEBUG_MEMORY=on OPENSSL_CONF=../apps/openssl.cnf tests );
552         OPENSSL_CONF=apps/openssl.cnf util/opensslwrap.sh version -a
553
554 report:
555         @$(PERL) util/selftest.pl
556
557 depend:
558         @set -e; target=depend; $(RECURSIVE_BUILD_CMD)
559
560 lint:
561         @set -e; target=lint; $(RECURSIVE_BUILD_CMD)
562
563 tags:
564         rm -f TAGS
565         find . -name '[^.]*.[ch]' | xargs etags -a
566
567 errors:
568         $(PERL) util/ck_errf.pl -strict */*.c */*/*.c
569         $(PERL) util/mkerr.pl -recurse -write
570         (cd engines; $(MAKE) PERL=$(PERL) errors)
571
572 stacks:
573         $(PERL) util/mkstack.pl -write
574
575 util/libeay.num::
576         $(PERL) util/mkdef.pl crypto update
577
578 util/ssleay.num::
579         $(PERL) util/mkdef.pl ssl update
580
581 crypto/objects/obj_dat.h: crypto/objects/obj_dat.pl crypto/objects/obj_mac.h
582         $(PERL) crypto/objects/obj_dat.pl crypto/objects/obj_mac.h crypto/objects/obj_dat.h
583 crypto/objects/obj_mac.h: crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num
584         $(PERL) crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num crypto/objects/obj_mac.h
585 crypto/objects/obj_xref.h: crypto/objects/objxref.pl crypto/objects/obj_xref.txt crypto/objects/obj_mac.num
586         $(PERL) crypto/objects/objxref.pl crypto/objects/obj_mac.num crypto/objects/obj_xref.txt >crypto/objects/obj_xref.h
587
588 apps/openssl-vms.cnf: apps/openssl.cnf
589         $(PERL) VMS/VMSify-conf.pl < apps/openssl.cnf > apps/openssl-vms.cnf
590
591 crypto/bn/bn_prime.h: crypto/bn/bn_prime.pl
592         $(PERL) crypto/bn/bn_prime.pl >crypto/bn/bn_prime.h
593
594
595 TABLE: Configure
596         (echo 'Output of `Configure TABLE'"':"; \
597         $(PERL) Configure TABLE) > TABLE
598
599 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
600
601 # Build distribution tar-file. As the list of files returned by "find" is
602 # pretty long, on several platforms a "too many arguments" error or similar
603 # would occur. Therefore the list of files is temporarily stored into a file
604 # and read directly, requiring GNU-Tar. Call "make TAR=gtar dist" if the normal
605 # tar does not support the --files-from option.
606 tar:
607         find . -type d -print | xargs chmod 755
608         find . -type f -print | xargs chmod a+r
609         find . -type f -perm -0100 -print | xargs chmod a+x
610         find * \! -path CVS/\* \! -path \*/CVS/\* \! -name CVS \! -name .cvsignore \! -name STATUS \! -name TABLE | sort > ../$(TARFILE).list; \
611         $(TAR) $(TARFLAGS) --files-from ../$(TARFILE).list -cvf - | \
612         tardy --user_number=0  --user_name=openssl \
613               --group_number=0 --group_name=openssl \
614               --prefix=openssl-$(VERSION) - |\
615         gzip --best >../$(TARFILE).gz; \
616         rm -f ../$(TARFILE).list; \
617         ls -l ../$(TARFILE).gz
618
619 tar-snap:
620         @$(TAR) $(TARFLAGS) -cvf - \
621                 `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` |\
622         tardy --user_number=0  --user_name=openssl \
623               --group_number=0 --group_name=openssl \
624               --prefix=openssl-$(VERSION) - > ../$(TARFILE);\
625         ls -l ../$(TARFILE)
626
627 dist:   
628         $(PERL) Configure dist
629         @$(MAKE) dist_pem_h
630         @$(MAKE) SDIRS='$(SDIRS)' clean
631         @$(MAKE) TAR='$(TAR)' TARFLAGS='$(TARFLAGS)' tar
632
633 dist_pem_h:
634         (cd crypto/pem; $(MAKE) -e $(BUILDENV) pem.h; $(MAKE) clean)
635
636 install: all install_docs install_sw
637
638 install_sw:
639         @$(PERL) $(TOP)/util/mkdir-p.pl $(INSTALL_PREFIX)$(INSTALLTOP)/bin \
640                 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR) \
641                 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines \
642                 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig \
643                 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl \
644                 $(INSTALL_PREFIX)$(OPENSSLDIR)/misc \
645                 $(INSTALL_PREFIX)$(OPENSSLDIR)/certs \
646                 $(INSTALL_PREFIX)$(OPENSSLDIR)/private
647         @set -e; headerlist="$(EXHEADER)"; for i in $$headerlist;\
648         do \
649         (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
650         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
651         done;
652         @set -e; target=install; $(RECURSIVE_BUILD_CMD)
653         @set -e; liblist="$(LIBS)"; for i in $$liblist ;\
654         do \
655                 if [ -f "$$i" ]; then \
656                 (       echo installing $$i; \
657                         cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
658                         $(RANLIB) $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
659                         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
660                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i ); \
661                 fi; \
662         done;
663         @set -e; if [ -n "$(SHARED_LIBS)" ]; then \
664                 tmp="$(SHARED_LIBS)"; \
665                 for i in $${tmp:-x}; \
666                 do \
667                         if [ -f "$$i" -o -f "$$i.a" ]; then \
668                         (       echo installing $$i; \
669                                 if [ "$(PLATFORM)" != "Cygwin" ]; then \
670                                         cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
671                                         chmod 555 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
672                                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i; \
673                                 else \
674                                         c=`echo $$i | sed 's/^lib\(.*\)\.dll\.a/cyg\1-$(SHLIB_VERSION_NUMBER).dll/'`; \
675                                         cp $$c $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
676                                         chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
677                                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c; \
678                                         cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
679                                         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
680                                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i; \
681                                 fi ); \
682                                 if expr $(PLATFORM) : 'mingw' > /dev/null; then \
683                                 (       case $$i in \
684                                                 *crypto*) i=libeay32.dll;; \
685                                                 *ssl*)    i=ssleay32.dll;; \
686                                         esac; \
687                                         echo installing $$i; \
688                                         cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \
689                                         chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \
690                                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i ); \
691                                 fi; \
692                         fi; \
693                 done; \
694                 (       here="`pwd`"; \
695                         cd $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR); \
696                         $(MAKE) -f $$here/Makefile HERE="$$here" link-shared ); \
697                 if [ "$(INSTALLTOP)" != "/usr" ]; then \
698                         echo 'OpenSSL shared libraries have been installed in:'; \
699                         echo '  $(INSTALLTOP)'; \
700                         echo ''; \
701                         sed -e '1,/^$$/d' doc/openssl-shared.txt; \
702                 fi; \
703         fi
704         cp libcrypto.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
705         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libcrypto.pc
706         cp libssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
707         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libssl.pc
708         cp openssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
709         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/openssl.pc
710
711 install_html_docs:
712         here="`pwd`"; \
713         for subdir in apps crypto ssl; do \
714                 mkdir -p $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir; \
715                 for i in doc/$$subdir/*.pod; do \
716                         fn=`basename $$i .pod`; \
717                         echo "installing html/$$fn.$(HTMLSUFFIX)"; \
718                         cat $$i \
719                         | sed -r 's/L<([^)]*)(\([0-9]\))?\|([^)]*)(\([0-9]\))?>/L<\1|\3>/g' \
720                         | pod2html --podroot=doc --htmlroot=.. --podpath=apps:crypto:ssl \
721                         | sed -r 's/<!DOCTYPE.*//g' \
722                         > $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir/$$fn.$(HTMLSUFFIX); \
723                         $(PERL) util/extract-names.pl < $$i | \
724                                 grep -v $$filecase "^$$fn\$$" | \
725                                 (cd $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir; \
726                                  while read n; do \
727                                         PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$(HTMLSUFFIX) "$$n".$(HTMLSUFFIX); \
728                                  done); \
729                 done; \
730         done
731
732 install_docs:
733         @$(PERL) $(TOP)/util/mkdir-p.pl \
734                 $(INSTALL_PREFIX)$(MANDIR)/man1 \
735                 $(INSTALL_PREFIX)$(MANDIR)/man3 \
736                 $(INSTALL_PREFIX)$(MANDIR)/man5 \
737                 $(INSTALL_PREFIX)$(MANDIR)/man7
738         @pod2man="`cd ./util; ./pod2mantest $(PERL)`"; \
739         here="`pwd`"; \
740         filecase=; \
741         if [ "$(PLATFORM)" = "DJGPP" -o "$(PLATFORM)" = "Cygwin" -o "$(PLATFORM)" = "mingw" ]; then \
742                 filecase=-i; \
743         fi; \
744         set -e; for i in doc/apps/*.pod; do \
745                 fn=`basename $$i .pod`; \
746                 sec=`$(PERL) util/extract-section.pl 1 < $$i`; \
747                 echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
748                 (cd `$(PERL) util/dirname.pl $$i`; \
749                 sh -c "$$pod2man \
750                         --section=$$sec --center=OpenSSL \
751                         --release=$(VERSION) `basename $$i`") \
752                         >  $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
753                 $(PERL) util/extract-names.pl < $$i | \
754                         (grep -v $$filecase "^$$fn\$$"; true) | \
755                         (grep -v "[     ]"; true) | \
756                         (cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
757                          while read n; do \
758                                 PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
759                          done); \
760         done; \
761         set -e; for i in doc/crypto/*.pod doc/ssl/*.pod; do \
762                 fn=`basename $$i .pod`; \
763                 sec=`$(PERL) util/extract-section.pl 3 < $$i`; \
764                 echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
765                 (cd `$(PERL) util/dirname.pl $$i`; \
766                 sh -c "$$pod2man \
767                         --section=$$sec --center=OpenSSL \
768                         --release=$(VERSION) `basename $$i`") \
769                         >  $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
770                 $(PERL) util/extract-names.pl < $$i | \
771                         (grep -v $$filecase "^$$fn\$$"; true) | \
772                         (grep -v "[     ]"; true) | \
773                         (cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
774                          while read n; do \
775                                 PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
776                          done); \
777         done
778
779 # DO NOT DELETE THIS LINE -- make depend depends on it.