Initial experimental support for X9.42 DH parameter format to handle
[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}             \
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 $(EX_LIBS)'; \
461             echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libcrypto.pc
462
463 libssl.pc: Makefile
464         @ ( echo 'prefix=$(INSTALLTOP)'; \
465             echo 'exec_prefix=$${prefix}'; \
466             echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
467             echo 'includedir=$${prefix}/include'; \
468             echo ''; \
469             echo 'Name: OpenSSL'; \
470             echo 'Description: Secure Sockets Layer and cryptography libraries'; \
471             echo 'Version: '$(VERSION); \
472             echo 'Requires: '; \
473             echo 'Libs: -L$${libdir} -lssl -lcrypto $(EX_LIBS)'; \
474             echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libssl.pc
475
476 openssl.pc: Makefile
477         @ ( echo 'prefix=$(INSTALLTOP)'; \
478             echo 'exec_prefix=$${prefix}'; \
479             echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
480             echo 'includedir=$${prefix}/include'; \
481             echo ''; \
482             echo 'Name: OpenSSL'; \
483             echo 'Description: Secure Sockets Layer and cryptography libraries and tools'; \
484             echo 'Version: '$(VERSION); \
485             echo 'Requires: '; \
486             echo 'Libs: -L$${libdir} -lssl -lcrypto $(EX_LIBS)'; \
487             echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > openssl.pc
488
489 Makefile: Makefile.org Configure config
490         @echo "Makefile is older than Makefile.org, Configure or config."
491         @echo "Reconfigure the source tree (via './config' or 'perl Configure'), please."
492         @false
493
494 libclean:
495         rm -f *.map *.so *.so.* *.dylib *.dll engines/*.so engines/*.dll engines/*.dylib *.a engines/*.a */lib */*/lib
496
497 clean:  libclean
498         rm -f shlib/*.o *.o core a.out fluff rehash.time testlog make.log cctest cctest.c
499         @set -e; target=clean; $(RECURSIVE_BUILD_CMD)
500         rm -f $(LIBS)
501         rm -f openssl.pc libssl.pc libcrypto.pc
502         rm -f speed.* .pure
503         rm -f $(TARFILE)
504         @set -e; for i in $(ONEDIRS) ;\
505         do \
506         rm -fr $$i/*; \
507         done
508
509 makefile.one: files
510         $(PERL) util/mk1mf.pl >makefile.one; \
511         sh util/do_ms.sh
512
513 files:
514         $(PERL) $(TOP)/util/files.pl Makefile > $(TOP)/MINFO
515         @set -e; target=files; $(RECURSIVE_BUILD_CMD)
516
517 links:
518         @$(PERL) $(TOP)/util/mkdir-p.pl include/openssl
519         @$(PERL) $(TOP)/util/mklink.pl include/openssl $(EXHEADER)
520         @set -e; target=links; $(RECURSIVE_BUILD_CMD)
521         @if [ -z "$(FIPSCANLIB)" ]; then \
522                 set -e; target=links; dir=fips ; $(BUILD_CMD) ; \
523         fi
524
525 gentests:
526         @(cd test && echo "generating dummy tests (if needed)..." && \
527         $(CLEARENV) && $(MAKE) -e $(BUILDENV) TESTS='$(TESTS)' OPENSSL_DEBUG_MEMORY=on generate );
528
529 dclean:
530         rm -rf *.bak include/openssl certs/.0
531         @set -e; target=dclean; $(RECURSIVE_BUILD_CMD)
532
533 rehash: rehash.time
534 rehash.time: certs apps
535         @if [ -z "$(CROSS_COMPILE)" ]; then \
536                 (OPENSSL="`pwd`/util/opensslwrap.sh"; \
537                 [ -x "apps/openssl.exe" ] && OPENSSL="apps/openssl.exe" || :; \
538                 OPENSSL_DEBUG_MEMORY=on; \
539                 export OPENSSL OPENSSL_DEBUG_MEMORY; \
540                 $(PERL) tools/c_rehash certs) && \
541                 touch rehash.time; \
542         else :; fi
543
544 test:   tests
545
546 tests: rehash
547         @(cd test && echo "testing..." && \
548         $(CLEARENV) && $(MAKE) -e $(BUILDENV) TOP=.. TESTS='$(TESTS)' OPENSSL_DEBUG_MEMORY=on OPENSSL_CONF=../apps/openssl.cnf tests );
549         OPENSSL_CONF=apps/openssl.cnf util/opensslwrap.sh version -a
550
551 report:
552         @$(PERL) util/selftest.pl
553
554 depend:
555         @set -e; target=depend; $(RECURSIVE_BUILD_CMD)
556
557 lint:
558         @set -e; target=lint; $(RECURSIVE_BUILD_CMD)
559
560 tags:
561         rm -f TAGS
562         find . -name '[^.]*.[ch]' | xargs etags -a
563
564 errors:
565         $(PERL) util/mkerr.pl -recurse -write
566         (cd engines; $(MAKE) PERL=$(PERL) errors)
567         $(PERL) util/ck_errf.pl -strict */*.c */*/*.c
568
569 stacks:
570         $(PERL) util/mkstack.pl -write
571
572 util/libeay.num::
573         $(PERL) util/mkdef.pl crypto update
574
575 util/ssleay.num::
576         $(PERL) util/mkdef.pl ssl update
577
578 crypto/objects/obj_dat.h: crypto/objects/obj_dat.pl crypto/objects/obj_mac.h
579         $(PERL) crypto/objects/obj_dat.pl crypto/objects/obj_mac.h crypto/objects/obj_dat.h
580 crypto/objects/obj_mac.h: crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num
581         $(PERL) crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num crypto/objects/obj_mac.h
582 crypto/objects/obj_xref.h: crypto/objects/objxref.pl crypto/objects/obj_xref.txt crypto/objects/obj_mac.num
583         $(PERL) crypto/objects/objxref.pl crypto/objects/obj_mac.num crypto/objects/obj_xref.txt >crypto/objects/obj_xref.h
584
585 apps/openssl-vms.cnf: apps/openssl.cnf
586         $(PERL) VMS/VMSify-conf.pl < apps/openssl.cnf > apps/openssl-vms.cnf
587
588 crypto/bn/bn_prime.h: crypto/bn/bn_prime.pl
589         $(PERL) crypto/bn/bn_prime.pl >crypto/bn/bn_prime.h
590
591
592 TABLE: Configure
593         (echo 'Output of `Configure TABLE'"':"; \
594         $(PERL) Configure TABLE) > TABLE
595
596 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
597
598 # Build distribution tar-file. As the list of files returned by "find" is
599 # pretty long, on several platforms a "too many arguments" error or similar
600 # would occur. Therefore the list of files is temporarily stored into a file
601 # and read directly, requiring GNU-Tar. Call "make TAR=gtar dist" if the normal
602 # tar does not support the --files-from option.
603 tar:
604         find . -type d -print | xargs chmod 755
605         find . -type f -print | xargs chmod a+r
606         find . -type f -perm -0100 -print | xargs chmod a+x
607         find * \! -path CVS/\* \! -path \*/CVS/\* \! -name CVS \! -name .cvsignore \! -name STATUS \! -name TABLE | sort > ../$(TARFILE).list; \
608         $(TAR) $(TARFLAGS) --files-from ../$(TARFILE).list -cvf - | \
609         tardy --user_number=0  --user_name=openssl \
610               --group_number=0 --group_name=openssl \
611               --prefix=openssl-$(VERSION) - |\
612         gzip --best >../$(TARFILE).gz; \
613         rm -f ../$(TARFILE).list; \
614         ls -l ../$(TARFILE).gz
615
616 tar-snap:
617         @$(TAR) $(TARFLAGS) -cvf - \
618                 `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` |\
619         tardy --user_number=0  --user_name=openssl \
620               --group_number=0 --group_name=openssl \
621               --prefix=openssl-$(VERSION) - > ../$(TARFILE);\
622         ls -l ../$(TARFILE)
623
624 dist:   
625         $(PERL) Configure dist
626         @$(MAKE) dist_pem_h
627         @$(MAKE) SDIRS='$(SDIRS)' clean
628         @$(MAKE) TAR='$(TAR)' TARFLAGS='$(TARFLAGS)' tar
629
630 dist_pem_h:
631         (cd crypto/pem; $(MAKE) -e $(BUILDENV) pem.h; $(MAKE) clean)
632
633 install: all install_docs install_sw
634
635 install_sw:
636         @$(PERL) $(TOP)/util/mkdir-p.pl $(INSTALL_PREFIX)$(INSTALLTOP)/bin \
637                 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR) \
638                 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines \
639                 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig \
640                 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl \
641                 $(INSTALL_PREFIX)$(OPENSSLDIR)/misc \
642                 $(INSTALL_PREFIX)$(OPENSSLDIR)/certs \
643                 $(INSTALL_PREFIX)$(OPENSSLDIR)/private
644         @set -e; headerlist="$(EXHEADER)"; for i in $$headerlist;\
645         do \
646         (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
647         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
648         done;
649         @set -e; target=install; $(RECURSIVE_BUILD_CMD)
650         @set -e; liblist="$(LIBS)"; for i in $$liblist ;\
651         do \
652                 if [ -f "$$i" ]; then \
653                 (       echo installing $$i; \
654                         cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
655                         $(RANLIB) $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
656                         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
657                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i ); \
658                 fi; \
659         done;
660         @set -e; if [ -n "$(SHARED_LIBS)" ]; then \
661                 tmp="$(SHARED_LIBS)"; \
662                 for i in $${tmp:-x}; \
663                 do \
664                         if [ -f "$$i" -o -f "$$i.a" ]; then \
665                         (       echo installing $$i; \
666                                 if [ "$(PLATFORM)" != "Cygwin" ]; then \
667                                         cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
668                                         chmod 555 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
669                                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i; \
670                                 else \
671                                         c=`echo $$i | sed 's/^lib\(.*\)\.dll\.a/cyg\1-$(SHLIB_VERSION_NUMBER).dll/'`; \
672                                         cp $$c $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
673                                         chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
674                                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c; \
675                                         cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
676                                         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
677                                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i; \
678                                 fi ); \
679                                 if expr $(PLATFORM) : 'mingw' > /dev/null; then \
680                                 (       case $$i in \
681                                                 *crypto*) i=libeay32.dll;; \
682                                                 *ssl*)    i=ssleay32.dll;; \
683                                         esac; \
684                                         echo installing $$i; \
685                                         cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \
686                                         chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \
687                                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i ); \
688                                 fi; \
689                         fi; \
690                 done; \
691                 (       here="`pwd`"; \
692                         cd $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR); \
693                         $(MAKE) -f $$here/Makefile HERE="$$here" link-shared ); \
694                 if [ "$(INSTALLTOP)" != "/usr" ]; then \
695                         echo 'OpenSSL shared libraries have been installed in:'; \
696                         echo '  $(INSTALLTOP)'; \
697                         echo ''; \
698                         sed -e '1,/^$$/d' doc/openssl-shared.txt; \
699                 fi; \
700         fi
701         cp libcrypto.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
702         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libcrypto.pc
703         cp libssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
704         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libssl.pc
705         cp openssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
706         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/openssl.pc
707
708 install_html_docs:
709         here="`pwd`"; \
710         for subdir in apps crypto ssl; do \
711                 mkdir -p $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir; \
712                 for i in doc/$$subdir/*.pod; do \
713                         fn=`basename $$i .pod`; \
714                         echo "installing html/$$fn.$(HTMLSUFFIX)"; \
715                         cat $$i \
716                         | sed -r 's/L<([^)]*)(\([0-9]\))?\|([^)]*)(\([0-9]\))?>/L<\1|\3>/g' \
717                         | pod2html --podroot=doc --htmlroot=.. --podpath=apps:crypto:ssl \
718                         | sed -r 's/<!DOCTYPE.*//g' \
719                         > $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir/$$fn.$(HTMLSUFFIX); \
720                         $(PERL) util/extract-names.pl < $$i | \
721                                 grep -v $$filecase "^$$fn\$$" | \
722                                 (cd $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir; \
723                                  while read n; do \
724                                         PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$(HTMLSUFFIX) "$$n".$(HTMLSUFFIX); \
725                                  done); \
726                 done; \
727         done
728
729 install_docs:
730         @$(PERL) $(TOP)/util/mkdir-p.pl \
731                 $(INSTALL_PREFIX)$(MANDIR)/man1 \
732                 $(INSTALL_PREFIX)$(MANDIR)/man3 \
733                 $(INSTALL_PREFIX)$(MANDIR)/man5 \
734                 $(INSTALL_PREFIX)$(MANDIR)/man7
735         @pod2man="`cd ./util; ./pod2mantest $(PERL)`"; \
736         here="`pwd`"; \
737         filecase=; \
738         if [ "$(PLATFORM)" = "DJGPP" -o "$(PLATFORM)" = "Cygwin" -o "$(PLATFORM)" = "mingw" ]; then \
739                 filecase=-i; \
740         fi; \
741         set -e; for i in doc/apps/*.pod; do \
742                 fn=`basename $$i .pod`; \
743                 sec=`$(PERL) util/extract-section.pl 1 < $$i`; \
744                 echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
745                 (cd `$(PERL) util/dirname.pl $$i`; \
746                 sh -c "$$pod2man \
747                         --section=$$sec --center=OpenSSL \
748                         --release=$(VERSION) `basename $$i`") \
749                         >  $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
750                 $(PERL) util/extract-names.pl < $$i | \
751                         (grep -v $$filecase "^$$fn\$$"; true) | \
752                         (grep -v "[     ]"; true) | \
753                         (cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
754                          while read n; do \
755                                 PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
756                          done); \
757         done; \
758         set -e; for i in doc/crypto/*.pod doc/ssl/*.pod; do \
759                 fn=`basename $$i .pod`; \
760                 sec=`$(PERL) util/extract-section.pl 3 < $$i`; \
761                 echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
762                 (cd `$(PERL) util/dirname.pl $$i`; \
763                 sh -c "$$pod2man \
764                         --section=$$sec --center=OpenSSL \
765                         --release=$(VERSION) `basename $$i`") \
766                         >  $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
767                 $(PERL) util/extract-names.pl < $$i | \
768                         (grep -v $$filecase "^$$fn\$$"; true) | \
769                         (grep -v "[     ]"; true) | \
770                         (cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
771                          while read n; do \
772                                 PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
773                          done); \
774         done
775
776 # DO NOT DELETE THIS LINE -- make depend depends on it.