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