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