Remove FIPSCANISTERINTERNAL reference.
[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                 FIPS_EX_OBJ='${FIPS_EX_OBJ}'    \
236                 THIS=$${THIS:-$@} MAKEFILE=Makefile MAKEOVERRIDES=
237 # MAKEOVERRIDES= effectively "equalizes" GNU-ish and SysV-ish make flavors,
238 # which in turn eliminates ambiguities in variable treatment with -e.
239
240 # BUILD_CMD is a generic macro to build a given target in a given
241 # subdirectory.  The target must be given through the shell variable
242 # `target' and the subdirectory to build in must be given through `dir'.
243 # This macro shouldn't be used directly, use RECURSIVE_BUILD_CMD or
244 # BUILD_ONE_CMD instead.
245 #
246 # BUILD_ONE_CMD is a macro to build a given target in a given
247 # subdirectory if that subdirectory is part of $(DIRS).  It requires
248 # exactly the same shell variables as BUILD_CMD.
249 #
250 # RECURSIVE_BUILD_CMD is a macro to build a given target in all
251 # subdirectories defined in $(DIRS).  It requires that the target
252 # is given through the shell variable `target'.
253 BUILD_CMD=  if [ -d "$$dir" ]; then \
254             (   cd $$dir && echo "making $$target in $$dir..." && \
255                 $(CLEARENV) && $(MAKE) -e $(BUILDENV) TOP=.. DIR=$$dir $$target \
256             ) || exit 1; \
257             fi
258 RECURSIVE_BUILD_CMD=for dir in $(DIRS); do $(BUILD_CMD); done
259 BUILD_ONE_CMD=\
260         if expr " $(DIRS) " : ".* $$dir " >/dev/null 2>&1; then \
261                 $(BUILD_CMD); \
262         fi
263
264 reflect:
265         @[ -n "$(THIS)" ] && $(CLEARENV) && $(MAKE) $(THIS) -e $(BUILDENV)
266
267 FIPS_EX_OBJ= ../crypto/aes/aes_cfb.o \
268         ../crypto/aes/aes_ecb.o \
269         ../crypto/aes/aes_ofb.o \
270         ../crypto/bn/bn_add.o \
271         ../crypto/bn/bn_blind.o \
272         ../crypto/bn/bn_ctx.o \
273         ../crypto/bn/bn_div.o \
274         ../crypto/bn/bn_exp2.o \
275         ../crypto/bn/bn_exp.o \
276         ../crypto/bn/bn_gcd.o \
277         ../crypto/bn/bn_gf2m.o \
278         ../crypto/bn/bn_lib.o \
279         ../crypto/bn/bn_mod.o \
280         ../crypto/bn/bn_mont.o \
281         ../crypto/bn/bn_mul.o \
282         ../crypto/bn/bn_nist.o \
283         ../crypto/bn/bn_prime.o \
284         ../crypto/bn/bn_rand.o \
285         ../crypto/bn/bn_recp.o \
286         ../crypto/bn/bn_shift.o \
287         ../crypto/bn/bn_sqr.o \
288         ../crypto/bn/bn_word.o \
289         ../crypto/bn/bn_x931p.o \
290         ../crypto/buffer/buf_str.o \
291         ../crypto/cmac/cmac.o \
292         ../crypto/cryptlib.o \
293         ../crypto/des/cfb64ede.o \
294         ../crypto/des/cfb64enc.o \
295         ../crypto/des/cfb_enc.o \
296         ../crypto/des/ecb3_enc.o \
297         ../crypto/des/ofb64ede.o \
298         ../crypto/des/fcrypt.o \
299         ../crypto/des/set_key.o \
300         ../crypto/dh/dh_check.o \
301         ../crypto/dh/dh_gen.o \
302         ../crypto/dh/dh_key.o \
303         ../crypto/dsa/dsa_gen.o \
304         ../crypto/dsa/dsa_key.o \
305         ../crypto/dsa/dsa_ossl.o \
306         ../crypto/ec/ec_curve.o \
307         ../crypto/ec/ec_cvt.o \
308         ../crypto/ec/ec_key.o \
309         ../crypto/ec/ec_lib.o \
310         ../crypto/ec/ecp_mont.o \
311         ../crypto/ec/ec_mult.o \
312         ../crypto/ec/ecp_nist.o \
313         ../crypto/ec/ecp_smpl.o \
314         ../crypto/ec/ec2_mult.o \
315         ../crypto/ec/ec2_smpl.o \
316         ../crypto/ecdh/ech_key.o \
317         ../crypto/ecdh/ech_ossl.o \
318         ../crypto/ecdsa/ecs_ossl.o \
319         ../crypto/evp/e_aes.o \
320         ../crypto/evp/e_des3.o \
321         ../crypto/evp/e_null.o \
322         ../crypto/evp/m_sha1.o \
323         ../crypto/evp/m_dss1.o \
324         ../crypto/evp/m_dss.o \
325         ../crypto/evp/m_ecdsa.o \
326         ../crypto/hmac/hmac.o \
327         ../crypto/modes/cbc128.o \
328         ../crypto/modes/ccm128.o \
329         ../crypto/modes/cfb128.o \
330         ../crypto/modes/ctr128.o \
331         ../crypto/modes/gcm128.o \
332         ../crypto/modes/ofb128.o \
333         ../crypto/modes/xts128.o \
334         ../crypto/rsa/rsa_eay.o \
335         ../crypto/rsa/rsa_gen.o \
336         ../crypto/rsa/rsa_crpt.o \
337         ../crypto/rsa/rsa_none.o \
338         ../crypto/rsa/rsa_oaep.o \
339         ../crypto/rsa/rsa_pk1.o \
340         ../crypto/rsa/rsa_pss.o \
341         ../crypto/rsa/rsa_ssl.o \
342         ../crypto/rsa/rsa_x931.o \
343         ../crypto/rsa/rsa_x931g.o \
344         ../crypto/sha/sha1dgst.o \
345         ../crypto/sha/sha256.o \
346         ../crypto/sha/sha512.o \
347         ../crypto/thr_id.o \
348         ../crypto/uid.o
349
350 sub_all: build_all
351 build_all: build_libs build_apps build_tests build_tools
352
353 build_libs: build_crypto build_ssl build_engines
354
355 build_crypto:
356         @dir=crypto; target=all; $(BUILD_ONE_CMD)
357 build_ssl:
358         @dir=ssl; target=all; $(BUILD_ONE_CMD)
359 build_engines:
360         @dir=engines; target=all; AS='$(CC) -c'; export AS; $(BUILD_ONE_CMD)
361 build_apps:
362         @dir=apps; target=all; $(BUILD_ONE_CMD)
363 build_tests:
364         @dir=test; target=all; $(BUILD_ONE_CMD)
365 build_tools:
366         @dir=tools; target=all; $(BUILD_ONE_CMD)
367
368 all_testapps: build_libs build_testapps
369 build_testapps:
370         @dir=crypto; target=testapps; $(BUILD_ONE_CMD)
371
372 libcrypto$(SHLIB_EXT): libcrypto.a
373         @if [ "$(SHLIB_TARGET)" != "" ]; then \
374                 if [ "$(FIPSCANLIB)" = "libcrypto" ]; then \
375                         FIPSLD_CC="$(CC)"; CC=fips/fipsld; \
376                         export CC FIPSLD_CC; \
377                 fi; \
378                 $(MAKE) -e SHLIBDIRS=crypto CC="$${CC:-$(CC)}" build-shared; \
379         else \
380                 echo "There's no support for shared libraries on this platform" >&2; \
381                 exit 1; \
382         fi
383
384 libssl$(SHLIB_EXT): libcrypto$(SHLIB_EXT) libssl.a
385         @if [ "$(SHLIB_TARGET)" != "" ]; then \
386                 $(MAKE) SHLIBDIRS=ssl SHLIBDEPS='-lcrypto' build-shared; \
387         else \
388                 echo "There's no support for shared libraries on this platform" >&2; \
389                 exit 1; \
390         fi
391
392 clean-shared:
393         @set -e; for i in $(SHLIBDIRS); do \
394                 if [ -n "$(SHARED_LIBS_LINK_EXTS)" ]; then \
395                         tmp="$(SHARED_LIBS_LINK_EXTS)"; \
396                         for j in $${tmp:-x}; do \
397                                 ( set -x; rm -f lib$$i$$j ); \
398                         done; \
399                 fi; \
400                 ( set -x; rm -f lib$$i$(SHLIB_EXT) ); \
401                 if expr "$(PLATFORM)" : "Cygwin" >/dev/null; then \
402                         ( set -x; rm -f cyg$$i$(SHLIB_EXT) lib$$i$(SHLIB_EXT).a ); \
403                 fi; \
404         done
405
406 link-shared:
407         @ set -e; for i in $(SHLIBDIRS); do \
408                 $(MAKE) -f $(HERE)/Makefile.shared -e $(BUILDENV) \
409                         LIBNAME=$$i LIBVERSION=$(SHLIB_MAJOR).$(SHLIB_MINOR) \
410                         LIBCOMPATVERSIONS=";$(SHLIB_VERSION_HISTORY)" \
411                         symlink.$(SHLIB_TARGET); \
412                 libs="$$libs -l$$i"; \
413         done
414
415 build-shared: do_$(SHLIB_TARGET) link-shared
416
417 do_$(SHLIB_TARGET):
418         @ set -e; libs='-L. $(SHLIBDEPS)'; for i in $(SHLIBDIRS); do \
419                 if [ "$$i" = "ssl" -a -n "$(LIBKRB5)" ]; then \
420                         libs="$(LIBKRB5) $$libs"; \
421                 fi; \
422                 $(CLEARENV) && $(MAKE) -f Makefile.shared -e $(BUILDENV) \
423                         LIBNAME=$$i LIBVERSION=$(SHLIB_MAJOR).$(SHLIB_MINOR) \
424                         LIBCOMPATVERSIONS=";$(SHLIB_VERSION_HISTORY)" \
425                         LIBDEPS="$$libs $(EX_LIBS)" \
426                         link_a.$(SHLIB_TARGET); \
427                 libs="-l$$i $$libs"; \
428         done
429
430 libcrypto.pc: Makefile
431         @ ( echo 'prefix=$(INSTALLTOP)'; \
432             echo 'exec_prefix=$${prefix}'; \
433             echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
434             echo 'includedir=$${prefix}/include'; \
435             echo ''; \
436             echo 'Name: OpenSSL-libcrypto'; \
437             echo 'Description: OpenSSL cryptography library'; \
438             echo 'Version: '$(VERSION); \
439             echo 'Requires: '; \
440             echo 'Libs: -L$${libdir} -lcrypto'; \
441             echo 'Libs.private: $(EX_LIBS)'; \
442             echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libcrypto.pc
443
444 libssl.pc: Makefile
445         @ ( echo 'prefix=$(INSTALLTOP)'; \
446             echo 'exec_prefix=$${prefix}'; \
447             echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
448             echo 'includedir=$${prefix}/include'; \
449             echo ''; \
450             echo 'Name: OpenSSL-libssl'; \
451             echo 'Description: Secure Sockets Layer and cryptography libraries'; \
452             echo 'Version: '$(VERSION); \
453             echo 'Requires.private: libcrypto'; \
454             echo 'Libs: -L$${libdir} -lssl'; \
455             echo 'Libs.private: $(EX_LIBS)'; \
456             echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libssl.pc
457
458 openssl.pc: Makefile
459         @ ( echo 'prefix=$(INSTALLTOP)'; \
460             echo 'exec_prefix=$${prefix}'; \
461             echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
462             echo 'includedir=$${prefix}/include'; \
463             echo ''; \
464             echo 'Name: OpenSSL'; \
465             echo 'Description: Secure Sockets Layer and cryptography libraries and tools'; \
466             echo 'Version: '$(VERSION); \
467             echo 'Requires: libssl libcrypto' ) > openssl.pc
468
469 Makefile: Makefile.org Configure config
470         @echo "Makefile is older than Makefile.org, Configure or config."
471         @echo "Reconfigure the source tree (via './config' or 'perl Configure'), please."
472         @false
473
474 libclean:
475         rm -f *.map *.so *.so.* *.dylib *.dll engines/*.so engines/*.dll engines/*.dylib *.a engines/*.a */lib */*/lib
476
477 clean:  libclean
478         rm -f shlib/*.o *.o core a.out fluff rehash.time testlog make.log cctest cctest.c
479         @set -e; target=clean; $(RECURSIVE_BUILD_CMD)
480         rm -f $(LIBS) tags TAGS
481         rm -f openssl.pc libssl.pc libcrypto.pc
482         rm -f speed.* .pure
483         rm -f $(TARFILE)
484         @set -e; for i in $(ONEDIRS) ;\
485         do \
486         rm -fr $$i/*; \
487         done
488
489 makefile.one: files
490         $(PERL) util/mk1mf.pl >makefile.one; \
491         sh util/do_ms.sh
492
493 files:
494         $(PERL) $(TOP)/util/files.pl Makefile > $(TOP)/MINFO
495         @set -e; target=files; $(RECURSIVE_BUILD_CMD)
496
497 links:
498         @$(PERL) $(TOP)/util/mkdir-p.pl include/openssl
499         @$(PERL) $(TOP)/util/mklink.pl include/openssl $(EXHEADER)
500         @set -e; target=links; $(RECURSIVE_BUILD_CMD)
501         @if [ -z "$(FIPSCANLIB)" ]; then \
502                 set -e; target=links; dir=fips ; $(BUILD_CMD) ; \
503         fi
504
505 gentests:
506         @(cd test && echo "generating dummy tests (if needed)..." && \
507         $(CLEARENV) && $(MAKE) -e $(BUILDENV) TESTS='$(TESTS)' OPENSSL_DEBUG_MEMORY=on generate );
508
509 dclean:
510         rm -rf *.bak include/openssl certs/.0
511         @set -e; target=dclean; $(RECURSIVE_BUILD_CMD)
512
513 rehash: rehash.time
514 rehash.time: certs apps
515         @if [ -z "$(CROSS_COMPILE)" ]; then \
516                 (OPENSSL="`pwd`/util/opensslwrap.sh"; \
517                 [ -x "apps/openssl.exe" ] && OPENSSL="apps/openssl.exe" || :; \
518                 OPENSSL_DEBUG_MEMORY=on; \
519                 export OPENSSL OPENSSL_DEBUG_MEMORY; \
520                 $(PERL) tools/c_rehash certs/demo) && \
521                 touch rehash.time; \
522         else :; fi
523
524 test:   tests
525
526 tests: rehash
527         @(cd test && echo "testing..." && \
528         $(CLEARENV) && $(MAKE) -e $(BUILDENV) TOP=.. TESTS='$(TESTS)' OPENSSL_DEBUG_MEMORY=on OPENSSL_CONF=../apps/openssl.cnf tests );
529         OPENSSL_CONF=apps/openssl.cnf util/opensslwrap.sh version -a
530
531 report:
532         @$(PERL) util/selftest.pl
533
534 depend:
535         @set -e; target=depend; $(RECURSIVE_BUILD_CMD)
536
537 lint:
538         @set -e; target=lint; $(RECURSIVE_BUILD_CMD)
539
540 tags TAGS: FORCE
541         rm -f TAGS tags
542         -ctags -R .
543         -etags -R .
544
545 FORCE:
546
547 errors:
548         $(PERL) util/ck_errf.pl -strict */*.c */*/*.c
549         $(PERL) util/mkerr.pl -recurse -write
550         (cd engines; $(MAKE) PERL=$(PERL) errors)
551
552 stacks:
553         $(PERL) util/mkstack.pl -write
554
555 util/libeay.num::
556         $(PERL) util/mkdef.pl crypto update
557
558 util/ssleay.num::
559         $(PERL) util/mkdef.pl ssl update
560
561 crypto/objects/obj_dat.h: crypto/objects/obj_dat.pl crypto/objects/obj_mac.h
562         $(PERL) crypto/objects/obj_dat.pl crypto/objects/obj_mac.h crypto/objects/obj_dat.h
563 crypto/objects/obj_mac.h: crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num
564         $(PERL) crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num crypto/objects/obj_mac.h
565 crypto/objects/obj_xref.h: crypto/objects/objxref.pl crypto/objects/obj_xref.txt crypto/objects/obj_mac.num
566         $(PERL) crypto/objects/objxref.pl crypto/objects/obj_mac.num crypto/objects/obj_xref.txt >crypto/objects/obj_xref.h
567
568 apps/openssl-vms.cnf: apps/openssl.cnf
569         $(PERL) VMS/VMSify-conf.pl < apps/openssl.cnf > apps/openssl-vms.cnf
570
571 crypto/bn/bn_prime.h: crypto/bn/bn_prime.pl
572         $(PERL) crypto/bn/bn_prime.pl >crypto/bn/bn_prime.h
573
574
575 TABLE: Configure
576         (echo 'Output of `Configure TABLE'"':"; \
577         $(PERL) Configure TABLE) > TABLE
578
579 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
580
581 # Build distribution tar-file. As the list of files returned by "find" is
582 # pretty long, on several platforms a "too many arguments" error or similar
583 # would occur. Therefore the list of files is temporarily stored into a file
584 # and read directly, requiring GNU-Tar. Call "make TAR=gtar dist" if the normal
585 # tar does not support the --files-from option.
586 tar:
587         find . -type d -print | xargs chmod 755
588         find . -type f -print | xargs chmod a+r
589         find . -type f -perm -0100 -print | xargs chmod a+x
590         find * \! -path CVS/\* \! -path \*/CVS/\* \! -name CVS \! -name .cvsignore \! -name STATUS \! -name TABLE | sort > ../$(TARFILE).list; \
591         $(TAR) $(TARFLAGS) --files-from ../$(TARFILE).list -cvf - | \
592         tardy --user_number=0  --user_name=openssl \
593               --group_number=0 --group_name=openssl \
594               --prefix=openssl-$(VERSION) - |\
595         gzip --best >../$(TARFILE).gz; \
596         rm -f ../$(TARFILE).list; \
597         ls -l ../$(TARFILE).gz
598
599 tar-snap:
600         @$(TAR) $(TARFLAGS) -cvf - \
601                 `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` |\
602         tardy --user_number=0  --user_name=openssl \
603               --group_number=0 --group_name=openssl \
604               --prefix=openssl-$(VERSION) - > ../$(TARFILE);\
605         ls -l ../$(TARFILE)
606
607 dist:   
608         $(PERL) Configure dist
609         @$(MAKE) dist_pem_h
610         @$(MAKE) SDIRS='$(SDIRS)' clean
611         @$(MAKE) TAR='$(TAR)' TARFLAGS='$(TARFLAGS)' tar
612
613 dist_pem_h:
614         (cd crypto/pem; $(MAKE) -e $(BUILDENV) pem.h; $(MAKE) clean)
615
616 install: all install_docs install_sw
617
618 install_sw:
619         @$(PERL) $(TOP)/util/mkdir-p.pl $(INSTALL_PREFIX)$(INSTALLTOP)/bin \
620                 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR) \
621                 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines \
622                 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig \
623                 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl \
624                 $(INSTALL_PREFIX)$(OPENSSLDIR)/misc \
625                 $(INSTALL_PREFIX)$(OPENSSLDIR)/certs \
626                 $(INSTALL_PREFIX)$(OPENSSLDIR)/private
627         @set -e; headerlist="$(EXHEADER)"; for i in $$headerlist;\
628         do \
629         (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
630         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
631         done;
632         @set -e; target=install; $(RECURSIVE_BUILD_CMD)
633         @set -e; liblist="$(LIBS)"; for i in $$liblist ;\
634         do \
635                 if [ -f "$$i" ]; then \
636                 (       echo installing $$i; \
637                         cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
638                         $(RANLIB) $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
639                         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
640                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i ); \
641                 fi; \
642         done;
643         @set -e; if [ -n "$(SHARED_LIBS)" ]; then \
644                 tmp="$(SHARED_LIBS)"; \
645                 for i in $${tmp:-x}; \
646                 do \
647                         if [ -f "$$i" -o -f "$$i.a" ]; then \
648                         (       echo installing $$i; \
649                                 if expr "$(PLATFORM)" : "Cygwin" >/dev/null; then \
650                                         c=`echo $$i | sed 's/^lib\(.*\)\.dll\.a/cyg\1-$(SHLIB_VERSION_NUMBER).dll/'`; \
651                                         cp $$c $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
652                                         chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
653                                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c; \
654                                         cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
655                                         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
656                                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i; \
657                                 else \
658                                         cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
659                                         chmod 555 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
660                                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i; \
661                                 fi ); \
662                                 if expr $(PLATFORM) : 'mingw' > /dev/null; then \
663                                 (       case $$i in \
664                                                 *crypto*) i=libeay32.dll;; \
665                                                 *ssl*)    i=ssleay32.dll;; \
666                                         esac; \
667                                         echo installing $$i; \
668                                         cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \
669                                         chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \
670                                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i ); \
671                                 fi; \
672                         fi; \
673                 done; \
674                 (       here="`pwd`"; \
675                         cd $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR); \
676                         $(MAKE) -f $$here/Makefile HERE="$$here" link-shared ); \
677                 if [ "$(INSTALLTOP)" != "/usr" ]; then \
678                         echo 'OpenSSL shared libraries have been installed in:'; \
679                         echo '  $(INSTALLTOP)'; \
680                         echo ''; \
681                         sed -e '1,/^$$/d' doc/openssl-shared.txt; \
682                 fi; \
683         fi
684         cp libcrypto.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
685         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libcrypto.pc
686         cp libssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
687         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libssl.pc
688         cp openssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
689         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/openssl.pc
690
691 install_html_docs:
692         here="`pwd`"; \
693         filecase=; \
694         case "$(PLATFORM)" in DJGPP|Cygwin*|mingw*|darwin*-*-cc) \
695                 filecase=-i; \
696         esac; \
697         for subdir in apps crypto ssl; do \
698                 mkdir -p $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir; \
699                 for i in doc/$$subdir/*.pod; do \
700                         fn=`basename $$i .pod`; \
701                         echo "installing html/$$fn.$(HTMLSUFFIX)"; \
702                         cat $$i \
703                         | sed -r 's/L<([^)]*)(\([0-9]\))?\|([^)]*)(\([0-9]\))?>/L<\1|\3>/g' \
704                         | pod2html --podroot=doc --htmlroot=.. --podpath=$$subdir:apps:crypto:ssl \
705                         | sed -r 's/<!DOCTYPE.*//g' \
706                         > $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir/$$fn.$(HTMLSUFFIX); \
707                         $(PERL) util/extract-names.pl < $$i | \
708                                 grep -v $$filecase "^$$fn\$$" | \
709                                 (cd $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir; \
710                                  while read n; do \
711                                         PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$(HTMLSUFFIX) "$$n".$(HTMLSUFFIX); \
712                                  done); \
713                 done; \
714         done
715
716 install_docs:
717         @$(PERL) $(TOP)/util/mkdir-p.pl \
718                 $(INSTALL_PREFIX)$(MANDIR)/man1 \
719                 $(INSTALL_PREFIX)$(MANDIR)/man3 \
720                 $(INSTALL_PREFIX)$(MANDIR)/man5 \
721                 $(INSTALL_PREFIX)$(MANDIR)/man7
722         @pod2man="`cd ./util; ./pod2mantest $(PERL)`"; \
723         here="`pwd`"; \
724         filecase=; \
725         case "$(PLATFORM)" in DJGPP|Cygwin*|mingw*|darwin*-*-cc) \
726                 filecase=-i; \
727         esac; \
728         set -e; for i in doc/apps/*.pod; do \
729                 fn=`basename $$i .pod`; \
730                 sec=`$(PERL) util/extract-section.pl 1 < $$i`; \
731                 echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
732                 (cd `$(PERL) util/dirname.pl $$i`; \
733                 sh -c "$$pod2man \
734                         --section=$$sec --center=OpenSSL \
735                         --release=$(VERSION) `basename $$i`") \
736                         >  $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
737                 $(PERL) util/extract-names.pl < $$i | \
738                         (grep -v $$filecase "^$$fn\$$"; true) | \
739                         (grep -v "[     ]"; true) | \
740                         (cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
741                          while read n; do \
742                                 PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
743                          done); \
744         done; \
745         set -e; for i in doc/crypto/*.pod doc/ssl/*.pod; do \
746                 fn=`basename $$i .pod`; \
747                 sec=`$(PERL) util/extract-section.pl 3 < $$i`; \
748                 echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
749                 (cd `$(PERL) util/dirname.pl $$i`; \
750                 sh -c "$$pod2man \
751                         --section=$$sec --center=OpenSSL \
752                         --release=$(VERSION) `basename $$i`") \
753                         >  $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
754                 $(PERL) util/extract-names.pl < $$i | \
755                         (grep -v $$filecase "^$$fn\$$"; true) | \
756                         (grep -v "[     ]"; true) | \
757                         (cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
758                          while read n; do \
759                                 PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
760                          done); \
761         done
762
763 # DO NOT DELETE THIS LINE -- make depend depends on it.