Need to link additional directories for fipscanisteronly build.
[openssl.git] / Makefile.fips
1 ##
2 ## Makefile for OpenSSL: fipscanister.o only
3 ##
4
5 VERSION=fips-2.0-test
6 MAJOR=
7 MINOR=
8 SHLIB_VERSION_NUMBER=
9 SHLIB_VERSION_HISTORY=
10 SHLIB_MAJOR=
11 SHLIB_MINOR=
12 SHLIB_EXT=
13 PLATFORM=dist
14 OPTIONS=
15 CONFIGURE_ARGS=
16 SHLIB_TARGET=
17
18 # HERE indicates where this Makefile lives.  This can be used to indicate
19 # where sub-Makefiles are expected to be.  Currently has very limited usage,
20 # and should probably not be bothered with at all.
21 HERE=.
22
23 # INSTALL_PREFIX is for package builders so that they can configure
24 # for, say, /usr/ and yet have everything installed to /tmp/somedir/usr/.
25 # Normally it is left empty.
26 INSTALL_PREFIX=
27 INSTALLTOP=/usr/local/ssl
28
29 # Do not edit this manually. Use Configure --openssldir=DIR do change this!
30 OPENSSLDIR=/usr/local/ssl
31
32 # NO_IDEA - Define to build without the IDEA algorithm
33 # NO_RC4  - Define to build without the RC4 algorithm
34 # NO_RC2  - Define to build without the RC2 algorithm
35 # THREADS - Define when building with threads, you will probably also need any
36 #           system defines as well, i.e. _REENTERANT for Solaris 2.[34]
37 # TERMIO  - Define the termio terminal subsystem, needed if sgtty is missing.
38 # TERMIOS - Define the termios terminal subsystem, Silicon Graphics.
39 # LONGCRYPT - Define to use HPUX 10.x's long password modification to crypt(3).
40 # DEVRANDOM - Give this the value of the 'random device' if your OS supports
41 #           one.  32 bytes will be read from this when the random
42 #           number generator is initalised.
43 # SSL_FORBID_ENULL - define if you want the server to be not able to use the
44 #           NULL encryption ciphers.
45 #
46 # LOCK_DEBUG - turns on lots of lock debug output :-)
47 # REF_CHECK - turn on some xyz_free() assertions.
48 # REF_PRINT - prints some stuff on structure free.
49 # CRYPTO_MDEBUG - turns on my 'memory leak' detecting stuff
50 # MFUNC - Make all Malloc/Free/Realloc calls call
51 #       CRYPTO_malloc/CRYPTO_free/CRYPTO_realloc which can be setup to
52 #       call application defined callbacks via CRYPTO_set_mem_functions()
53 # MD5_ASM needs to be defined to use the x86 assembler for MD5
54 # SHA1_ASM needs to be defined to use the x86 assembler for SHA1
55 # RMD160_ASM needs to be defined to use the x86 assembler for RIPEMD160
56 # Do not define B_ENDIAN or L_ENDIAN if 'unsigned long' == 8.  It must
57 # equal 4.
58 # PKCS1_CHECK - pkcs1 tests.
59
60 CC= cc
61 CFLAG= -O
62 DEPFLAG= 
63 PEX_LIBS= 
64 EX_LIBS= 
65 EXE_EXT= 
66 ARFLAGS=
67 AR=ar $(ARFLAGS) r
68 RANLIB= ranlib
69 NM= nm
70 PERL= perl
71 TAR= tar
72 TARFLAGS= --no-recursion
73 MAKEDEPPROG=makedepend
74 LIBDIR=lib
75
76 # We let the C compiler driver to take care of .s files. This is done in
77 # order to be excused from maintaining a separate set of architecture
78 # dependent assembler flags. E.g. if you throw -mcpu=ultrasparc at SPARC
79 # gcc, then the driver will automatically translate it to -xarch=v8plus
80 # and pass it down to assembler.
81 #AS=$(CC) -c
82 ASFLAG=$(CFLAG)
83
84 # For x86 assembler: Set PROCESSOR to 386 if you want to support
85 # the 80386.
86 PROCESSOR=
87
88 # CPUID module collects small commonly used assembler snippets
89 CPUID_OBJ= 
90 BN_ASM= bn_asm.o
91 DES_ENC= des_enc.o fcrypt_b.o
92 AES_ENC= aes_core.o aes_cbc.o
93 BF_ENC= bf_enc.o
94 CAST_ENC= c_enc.o
95 RC4_ENC= rc4_enc.o
96 RC5_ENC= rc5_enc.o
97 MD5_ASM_OBJ= 
98 SHA1_ASM_OBJ= 
99 RMD160_ASM_OBJ= 
100 WP_ASM_OBJ=
101 CMLL_ENC=
102 MODES_ASM_OBJ=
103 PERLASM_SCHEME=
104
105 # KRB5 stuff
106 KRB5_INCLUDES=
107 LIBKRB5=
108
109 # Zlib stuff
110 ZLIB_INCLUDE=
111 LIBZLIB=
112
113 # This is the location of fipscanister.o and friends.
114 # The FIPS module build will place it $(INSTALLTOP)/lib
115 # but since $(INSTALLTOP) can only take the default value
116 # when the module is built it will be in /usr/local/ssl/lib
117 # $(INSTALLTOP) for this build may be different so hard
118 # code the path.
119
120 FIPSLIBDIR=/usr/local/ssl/$(LIBDIR)/
121
122 # This is set to "y" if fipscanister.o is compiled internally as
123 # opposed to coming from an external validated location.
124
125 FIPSCANISTERINTERNAL=n
126
127 # This is set if we only build fipscanister.o
128
129 FIPSCANISTERONLY=y
130
131 # The location of the library which contains fipscanister.o
132 # normally it will be libcrypto unless fipsdso is set in which
133 # case it will be libfips. If not compiling in FIPS mode at all
134 # this is empty making it a useful test for a FIPS compile.
135
136 FIPSCANLIB=
137
138 # Shared library base address. Currently only used on Windows.
139 #
140
141 BASEADDR=
142
143 DIRS=   crypto fips test 
144 ENGDIRS= ccgost
145 SHLIBDIRS= crypto 
146
147 # dirs in crypto to build
148 SDIRS=  \
149         sha hmac des aes modes \
150         bn ec rsa dsa ecdsa dh \
151         buffer rand evp # ecdh cmac
152 # keep in mind that the above list is adjusted by ./Configure
153 # according to no-xxx arguments...
154
155 LINKDIRS=  \
156         objects sha hmac des aes modes \
157         bn ec rsa dsa ecdsa dh ecdh dso engine \
158         buffer bio stack lhash rand err \
159         evp asn1 pem x509 x509v3 pkcs7 ocsp ui krb5 \
160         cmac
161
162 # tests to perform.  "alltests" is a special word indicating that all tests
163 # should be performed.
164 TESTS = alltests
165
166 MAKEFILE= Makefile
167
168 MANDIR=$(OPENSSLDIR)/man
169 MAN1=1
170 MAN3=3
171 MANSUFFIX=
172 HTMLSUFFIX=html
173 HTMLDIR=$(OPENSSLDIR)/html
174 SHELL=/bin/sh
175
176 TOP=    .
177 ONEDIRS=out tmp
178 EDIRS=  times doc bugs util include certs ms shlib mt demos perl sf dep VMS
179 WDIRS=  windows
180 LIBS=   
181 SHARED_CRYPTO=libcrypto$(SHLIB_EXT)
182 SHARED_SSL=libssl$(SHLIB_EXT)
183 SHARED_LIBS=
184 SHARED_LIBS_LINK_EXTS=
185 SHARED_LDFLAGS=
186
187 GENERAL=        Makefile
188 BASENAME=       openssl
189 NAME=           $(BASENAME)-$(VERSION)
190 TARFILE=        openssl-fips-test-2.0.tar
191 WTARFILE=       $(NAME)-win.tar
192 EXHEADER=       e_os2.h
193 HEADER=         e_os.h
194
195 all: Makefile build_all openssl.pc libssl.pc libcrypto.pc
196
197 # as we stick to -e, CLEARENV ensures that local variables in lower
198 # Makefiles remain local and variable. $${VAR+VAR} is tribute to Korn
199 # shell, which [annoyingly enough] terminates unset with error if VAR
200 # is not present:-( TOP= && unset TOP is tribute to HP-UX /bin/sh,
201 # which terminates unset with error if no variable was present:-(
202 CLEARENV=       TOP= && unset TOP $${LIB+LIB} $${LIBS+LIBS}     \
203                 $${INCLUDE+INCLUDE} $${INCLUDES+INCLUDES}       \
204                 $${DIR+DIR} $${DIRS+DIRS} $${SRC+SRC}           \
205                 $${LIBSRC+LIBSRC} $${LIBOBJ+LIBOBJ} $${ALL+ALL} \
206                 $${EXHEADER+EXHEADER} $${HEADER+HEADER}         \
207                 $${GENERAL+GENERAL} $${CFLAGS+CFLAGS}           \
208                 $${ASFLAGS+ASFLAGS} $${AFLAGS+AFLAGS}           \
209                 $${LDCMD+LDCMD} $${LDFLAGS+LDFLAGS}             \
210                 $${SHAREDCMD+SHAREDCMD} $${SHAREDFLAGS+SHAREDFLAGS}     \
211                 $${SHARED_LIB+SHARED_LIB} $${LIBEXTRAS+LIBEXTRAS}
212
213 BUILDENV=       PLATFORM='$(PLATFORM)' PROCESSOR='$(PROCESSOR)' \
214                 CC='$(CC)' CFLAG='$(CFLAG)'                     \
215                 ASFLAG='$(CFLAG) -c'                    \
216                 AR='$(AR)' NM='$(NM)' RANLIB='$(RANLIB)'        \
217                 CROSS_COMPILE='$(CROSS_COMPILE)'        \
218                 PERL='$(PERL)' ENGDIRS='$(ENGDIRS)'             \
219                 SDIRS='$(SDIRS)' LIBRPATH='$(INSTALLTOP)/$(LIBDIR)'     \
220                 INSTALL_PREFIX='$(INSTALL_PREFIX)'              \
221                 INSTALLTOP='$(INSTALLTOP)' OPENSSLDIR='$(OPENSSLDIR)'   \
222                 LIBDIR='$(LIBDIR)'                              \
223                 MAKEDEPEND='$$$${TOP}/util/domd $$$${TOP} -MD $(MAKEDEPPROG)' \
224                 DEPFLAG='-DOPENSSL_NO_DEPRECATED $(DEPFLAG)'    \
225                 MAKEDEPPROG='$(MAKEDEPPROG)'                    \
226                 SHARED_LDFLAGS='$(SHARED_LDFLAGS)'              \
227                 KRB5_INCLUDES='$(KRB5_INCLUDES)' LIBKRB5='$(LIBKRB5)'   \
228                 ZLIB_INCLUDE='$(ZLIB_INCLUDE)' LIBZLIB='$(LIBZLIB)'     \
229                 EXE_EXT='$(EXE_EXT)' SHARED_LIBS='$(SHARED_LIBS)'       \
230                 SHLIB_EXT='$(SHLIB_EXT)' SHLIB_TARGET='$(SHLIB_TARGET)' \
231                 PEX_LIBS='$(PEX_LIBS)' EX_LIBS='$(EX_LIBS)'     \
232                 CPUID_OBJ='$(CPUID_OBJ)'                        \
233                 BN_ASM='$(BN_ASM)' DES_ENC='$(DES_ENC)'         \
234                 AES_ENC='$(AES_ENC)' CMLL_ENC='$(CMLL_ENC)'     \
235                 BF_ENC='$(BF_ENC)' CAST_ENC='$(CAST_ENC)'       \
236                 RC4_ENC='$(RC4_ENC)' RC5_ENC='$(RC5_ENC)'       \
237                 SHA1_ASM_OBJ='$(SHA1_ASM_OBJ)'                  \
238                 MD5_ASM_OBJ='$(MD5_ASM_OBJ)'                    \
239                 RMD160_ASM_OBJ='$(RMD160_ASM_OBJ)'              \
240                 WP_ASM_OBJ='$(WP_ASM_OBJ)'                      \
241                 MODES_ASM_OBJ='$(MODES_ASM_OBJ)'                \
242                 PERLASM_SCHEME='$(PERLASM_SCHEME)'              \
243                 FIPSLIBDIR='${FIPSLIBDIR}'                      \
244                 FIPSCANLIB="$${FIPSCANLIB:-$(FIPSCANLIB)}"      \
245                 FIPSCANISTERINTERNAL='${FIPSCANISTERINTERNAL}'  \
246                 FIPSCANISTERONLY='${FIPSCANISTERONLY}'  \
247                 FIPS_EX_OBJ='${FIPS_EX_OBJ}'    \
248                 THIS=$${THIS:-$@} MAKEFILE=Makefile MAKEOVERRIDES=
249 # MAKEOVERRIDES= effectively "equalizes" GNU-ish and SysV-ish make flavors,
250 # which in turn eliminates ambiguities in variable treatment with -e.
251
252 # BUILD_CMD is a generic macro to build a given target in a given
253 # subdirectory.  The target must be given through the shell variable
254 # `target' and the subdirectory to build in must be given through `dir'.
255 # This macro shouldn't be used directly, use RECURSIVE_BUILD_CMD or
256 # BUILD_ONE_CMD instead.
257 #
258 # BUILD_ONE_CMD is a macro to build a given target in a given
259 # subdirectory if that subdirectory is part of $(DIRS).  It requires
260 # exactly the same shell variables as BUILD_CMD.
261 #
262 # RECURSIVE_BUILD_CMD is a macro to build a given target in all
263 # subdirectories defined in $(DIRS).  It requires that the target
264 # is given through the shell variable `target'.
265 BUILD_CMD=  if [ -d "$$dir" ]; then \
266             (   cd $$dir && echo "making $$target in $$dir..." && \
267                 $(CLEARENV) && $(MAKE) -e $(BUILDENV) TOP=.. DIR=$$dir $$target \
268             ) || exit 1; \
269             fi
270 RECURSIVE_BUILD_CMD=for dir in $(DIRS); do $(BUILD_CMD); done
271 BUILD_ONE_CMD=\
272         if expr " $(DIRS) " : ".* $$dir " >/dev/null 2>&1; then \
273                 $(BUILD_CMD); \
274         fi
275
276 reflect:
277         @[ -n "$(THIS)" ] && $(CLEARENV) && $(MAKE) $(THIS) -e $(BUILDENV)
278
279 # FIXME
280
281 FIPS_EX_OBJ= ../crypto/aes/aes_cfb.o \
282         ../crypto/aes/aes_ecb.o \
283         ../crypto/aes/aes_ofb.o \
284         ../crypto/bn/bn_add.o \
285         ../crypto/bn/bn_blind.o \
286         ../crypto/bn/bn_ctx.o \
287         ../crypto/bn/bn_div.o \
288         ../crypto/bn/bn_exp2.o \
289         ../crypto/bn/bn_exp.o \
290         ../crypto/bn/bn_gcd.o \
291         ../crypto/bn/bn_gf2m.o \
292         ../crypto/bn/bn_lib.o \
293         ../crypto/bn/bn_mod.o \
294         ../crypto/bn/bn_mont.o \
295         ../crypto/bn/bn_mul.o \
296         ../crypto/bn/bn_nist.o \
297         ../crypto/bn/bn_prime.o \
298         ../crypto/bn/bn_rand.o \
299         ../crypto/bn/bn_recp.o \
300         ../crypto/bn/bn_shift.o \
301         ../crypto/bn/bn_sqr.o \
302         ../crypto/bn/bn_word.o \
303         ../crypto/bn/bn_x931p.o \
304         ../crypto/buffer/buf_str.o \
305         ../crypto/cryptlib.o \
306         ../crypto/des/cfb64ede.o \
307         ../crypto/des/cfb64enc.o \
308         ../crypto/des/cfb_enc.o \
309         ../crypto/des/ecb3_enc.o \
310         ../crypto/des/ofb64ede.o \
311         ../crypto/des/fcrypt.o \
312         ../crypto/des/set_key.o \
313         ../crypto/dh/dh_check.o \
314         ../crypto/dh/dh_gen.o \
315         ../crypto/dh/dh_key.o \
316         ../crypto/dsa/dsa_gen.o \
317         ../crypto/dsa/dsa_key.o \
318         ../crypto/dsa/dsa_ossl.o \
319         ../crypto/ec/ec_curve.o \
320         ../crypto/ec/ec_cvt.o \
321         ../crypto/ec/ec_key.o \
322         ../crypto/ec/ec_lib.o \
323         ../crypto/ec/ecp_mont.o \
324         ../crypto/ec/ec_mult.o \
325         ../crypto/ec/ecp_nist.o \
326         ../crypto/ec/ecp_smpl.o \
327         ../crypto/ec/ec2_mult.o \
328         ../crypto/ec/ec2_smpl.o \
329         ../crypto/ecdsa/ecs_ossl.o \
330         ../crypto/evp/e_aes.o \
331         ../crypto/evp/e_des3.o \
332         ../crypto/evp/m_sha1.o \
333         ../crypto/hmac/hmac.o \
334         ../crypto/modes/cbc128.o \
335         ../crypto/modes/cfb128.o \
336         ../crypto/modes/ctr128.o \
337         ../crypto/modes/gcm128.o \
338         ../crypto/modes/ofb128.o \
339         ../crypto/rand/md_rand.o \
340         ../crypto/rand/rand_egd.o \
341         ../crypto/rand/randfile.o \
342         ../crypto/rand/rand_lib.o \
343         ../crypto/rand/rand_os2.o \
344         ../crypto/rand/rand_unix.o \
345         ../crypto/rand/rand_win.o \
346         ../crypto/rsa/rsa_eay.o \
347         ../crypto/rsa/rsa_gen.o \
348         ../crypto/rsa/rsa_crpt.o \
349         ../crypto/rsa/rsa_none.o \
350         ../crypto/rsa/rsa_oaep.o \
351         ../crypto/rsa/rsa_pk1.o \
352         ../crypto/rsa/rsa_pss.o \
353         ../crypto/rsa/rsa_ssl.o \
354         ../crypto/rsa/rsa_x931.o \
355         ../crypto/rsa/rsa_x931g.o \
356         ../crypto/sha/sha1dgst.o \
357         ../crypto/sha/sha256.o \
358         ../crypto/sha/sha512.o \
359         ../crypto/thr_id.o \
360         ../crypto/uid.o
361
362 sub_all: build_all
363 build_all: build_libs build_tests
364
365 build_libs: build_crypto build_fips
366
367 build_fips:
368         @dir=fips; target=all; [ -z "$(FIPSCANLIB)" ] || $(BUILD_ONE_CMD)
369
370 build_crypto:
371         if [ -n "$(FIPSCANLIB)" ]; then \
372                 EXCL_OBJ='$(AES_ENC) $(BN_ASM) $(DES_ENC) $(CPUID_OBJ) $(SHA1_ASM_OBJ) $(MODES_ASM_OBJ) $(FIPS_EX_OBJ)' ; export EXCL_OBJ ; \
373                 ARX='$(PERL) $${TOP}/util/arx.pl $(AR)' ; \
374         else \
375                 ARX='${AR}' ; \
376         fi ; export ARX ; \
377         if [ $(FIPSCANISTERINTERNAL) = "y" ]; then \
378                 AS='$(PERL) $${TOP}/util/fipsas.pl $${TOP} $${<} $(CC)' ; \
379         else \
380                 AS='$(CC) -c' ; \
381         fi ; export AS ; \
382                 dir=crypto; target=fips; $(BUILD_ONE_CMD)
383 build_ssl:
384         @dir=ssl; target=all; $(BUILD_ONE_CMD)
385 build_engines:
386         @dir=engines; target=all; $(BUILD_ONE_CMD)
387 build_apps:
388         @dir=apps; target=all; $(BUILD_ONE_CMD)
389 build_tests:
390         @dir=test; target=fipsexe; $(BUILD_ONE_CMD)
391 build_tools:
392         @dir=tools; target=all; $(BUILD_ONE_CMD)
393
394 all_testapps: build_libs build_testapps
395 build_testapps:
396         @dir=crypto; target=testapps; $(BUILD_ONE_CMD)
397
398 libcrypto$(SHLIB_EXT): libcrypto.a build_fips
399         @if [ "$(SHLIB_TARGET)" != "" ]; then \
400                 if [ "$(FIPSCANLIB)" = "libcrypto" ]; then \
401                         FIPSLD_CC="$(CC)"; CC=fips/fipsld; \
402                         export CC FIPSLD_CC; \
403                 fi; \
404                 $(MAKE) SHLIBDIRS=crypto build-shared; \
405         else \
406                 echo "There's no support for shared libraries on this platform" >&2; \
407                 exit 1; \
408         fi
409
410 libssl$(SHLIB_EXT): libcrypto$(SHLIB_EXT) libssl.a
411         @if [ "$(SHLIB_TARGET)" != "" ]; then \
412                 $(MAKE) SHLIBDIRS=ssl SHLIBDEPS='-lcrypto' build-shared; \
413         else \
414                 echo "There's no support for shared libraries on this platform" >&2; \
415                 exit 1; \
416         fi
417
418 clean-shared:
419         @set -e; for i in $(SHLIBDIRS); do \
420                 if [ -n "$(SHARED_LIBS_LINK_EXTS)" ]; then \
421                         tmp="$(SHARED_LIBS_LINK_EXTS)"; \
422                         for j in $${tmp:-x}; do \
423                                 ( set -x; rm -f lib$$i$$j ); \
424                         done; \
425                 fi; \
426                 ( set -x; rm -f lib$$i$(SHLIB_EXT) ); \
427                 if [ "$(PLATFORM)" = "Cygwin" ]; then \
428                         ( set -x; rm -f cyg$$i$(SHLIB_EXT) lib$$i$(SHLIB_EXT).a ); \
429                 fi; \
430         done
431
432 link-shared:
433         @ set -e; for i in $(SHLIBDIRS); do \
434                 $(MAKE) -f $(HERE)/Makefile.shared -e $(BUILDENV) \
435                         LIBNAME=$$i LIBVERSION=$(SHLIB_MAJOR).$(SHLIB_MINOR) \
436                         LIBCOMPATVERSIONS=";$(SHLIB_VERSION_HISTORY)" \
437                         symlink.$(SHLIB_TARGET); \
438                 libs="$$libs -l$$i"; \
439         done
440
441 build-shared: do_$(SHLIB_TARGET) link-shared
442
443 do_$(SHLIB_TARGET):
444         @ set -e; libs='-L. $(SHLIBDEPS)'; for i in $(SHLIBDIRS); do \
445                 if [ "$$i" = "ssl" -a -n "$(LIBKRB5)" ]; then \
446                         libs="$(LIBKRB5) $$libs"; \
447                 fi; \
448                 $(CLEARENV) && $(MAKE) -f Makefile.shared -e $(BUILDENV) \
449                         LIBNAME=$$i LIBVERSION=$(SHLIB_MAJOR).$(SHLIB_MINOR) \
450                         LIBCOMPATVERSIONS=";$(SHLIB_VERSION_HISTORY)" \
451                         LIBDEPS="$$libs $(EX_LIBS)" \
452                         link_a.$(SHLIB_TARGET); \
453                 libs="-l$$i $$libs"; \
454         done
455
456 libcrypto.pc: Makefile
457         @ ( echo 'prefix=$(INSTALLTOP)'; \
458             echo 'exec_prefix=$${prefix}'; \
459             echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
460             echo 'includedir=$${prefix}/include'; \
461             echo ''; \
462             echo 'Name: OpenSSL-libcrypto'; \
463             echo 'Description: OpenSSL cryptography library'; \
464             echo 'Version: '$(VERSION); \
465             echo 'Requires: '; \
466             echo 'Libs: -L$${libdir} -lcrypto $(EX_LIBS)'; \
467             echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libcrypto.pc
468
469 libssl.pc: Makefile
470         @ ( echo 'prefix=$(INSTALLTOP)'; \
471             echo 'exec_prefix=$${prefix}'; \
472             echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
473             echo 'includedir=$${prefix}/include'; \
474             echo ''; \
475             echo 'Name: OpenSSL'; \
476             echo 'Description: Secure Sockets Layer and cryptography libraries'; \
477             echo 'Version: '$(VERSION); \
478             echo 'Requires: '; \
479             echo 'Libs: -L$${libdir} -lssl -lcrypto $(EX_LIBS)'; \
480             echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libssl.pc
481
482 openssl.pc: Makefile
483         @ ( echo 'prefix=$(INSTALLTOP)'; \
484             echo 'exec_prefix=$${prefix}'; \
485             echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
486             echo 'includedir=$${prefix}/include'; \
487             echo ''; \
488             echo 'Name: OpenSSL'; \
489             echo 'Description: Secure Sockets Layer and cryptography libraries and tools'; \
490             echo 'Version: '$(VERSION); \
491             echo 'Requires: '; \
492             echo 'Libs: -L$${libdir} -lssl -lcrypto $(EX_LIBS)'; \
493             echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > openssl.pc
494
495 Makefile: Makefile.org Configure config
496         @echo "Makefile is older than Makefile.org, Configure or config."
497         @echo "Reconfigure the source tree (via './config' or 'perl Configure'), please."
498         @false
499
500 libclean:
501         rm -f *.map *.so *.so.* *.dll engines/*.so engines/*.dll *.a engines/*.a */lib */*/lib
502
503 clean:  libclean
504         rm -f shlib/*.o *.o core a.out fluff testlog make.log cctest cctest.c
505         @set -e; target=clean; $(RECURSIVE_BUILD_CMD)
506         rm -f $(LIBS)
507         rm -f openssl.pc libssl.pc libcrypto.pc
508         rm -f speed.* .pure
509         rm -f $(TARFILE)
510         @set -e; for i in $(ONEDIRS) ;\
511         do \
512         rm -fr $$i/*; \
513         done
514
515 makefile.one: files
516         $(PERL) util/mk1mf.pl >makefile.one; \
517         sh util/do_ms.sh
518
519 files:
520         $(PERL) $(TOP)/util/files.pl Makefile > $(TOP)/MINFO
521         @set -e; target=files; $(RECURSIVE_BUILD_CMD)
522
523 links:
524         @$(PERL) $(TOP)/util/mkdir-p.pl include/openssl
525         @$(PERL) $(TOP)/util/mklink.pl include/openssl $(EXHEADER)
526         $(MAKE) -C fips links
527         SDIRS='$(LINKDIRS)' $(MAKE) -C crypto links
528
529 gentests:
530         @(cd test && echo "generating dummy tests (if needed)..." && \
531         $(CLEARENV) && $(MAKE) -e $(BUILDENV) TESTS='$(TESTS)' OPENSSL_DEBUG_MEMORY=on generate );
532
533 dclean:
534         rm -rf *.bak include/openssl certs/.0
535         @set -e; target=dclean; $(RECURSIVE_BUILD_CMD)
536
537 test:   tests
538
539 tests:
540         @(cd test && echo "testing..." && \
541         $(CLEARENV) && $(MAKE) -e $(BUILDENV) TOP=.. TESTS='$(TESTS)' OPENSSL_DEBUG_MEMORY=on OPENSSL_CONF=../apps/openssl.cnf tests );
542         OPENSSL_CONF=apps/openssl.cnf util/opensslwrap.sh version -a
543
544 report:
545         @$(PERL) util/selftest.pl
546
547 depend:
548         @set -e; target=depend; $(RECURSIVE_BUILD_CMD)
549
550 lint:
551         @set -e; target=lint; $(RECURSIVE_BUILD_CMD)
552
553 tags:
554         rm -f TAGS
555         find . -name '[^.]*.[ch]' | xargs etags -a
556
557 errors:
558         $(PERL) util/mkerr.pl -recurse -write
559         (cd engines; $(MAKE) PERL=$(PERL) errors)
560         $(PERL) util/ck_errf.pl -strict */*.c */*/*.c
561
562 stacks:
563         $(PERL) util/mkstack.pl -write
564
565 util/libeay.num::
566         $(PERL) util/mkdef.pl crypto update
567
568 util/ssleay.num::
569         $(PERL) util/mkdef.pl ssl update
570
571 crypto/objects/obj_dat.h: crypto/objects/obj_dat.pl crypto/objects/obj_mac.h
572         $(PERL) crypto/objects/obj_dat.pl crypto/objects/obj_mac.h crypto/objects/obj_dat.h
573 crypto/objects/obj_mac.h: crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num
574         $(PERL) crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num crypto/objects/obj_mac.h
575 crypto/objects/obj_xref.h: crypto/objects/objxref.pl crypto/objects/obj_xref.txt crypto/objects/obj_mac.num
576         $(PERL) crypto/objects/objxref.pl crypto/objects/obj_mac.num crypto/objects/obj_xref.txt >crypto/objects/obj_xref.h
577
578 apps/openssl-vms.cnf: apps/openssl.cnf
579         $(PERL) VMS/VMSify-conf.pl < apps/openssl.cnf > apps/openssl-vms.cnf
580
581 crypto/bn/bn_prime.h: crypto/bn/bn_prime.pl
582         $(PERL) crypto/bn/bn_prime.pl >crypto/bn/bn_prime.h
583
584
585 TABLE: Configure
586         (echo 'Output of `Configure TABLE'"':"; \
587         $(PERL) Configure TABLE) > TABLE
588
589 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
590
591 # Build distribution tar-file. As the list of files returned by "find" is
592 # pretty long, on several platforms a "too many arguments" error or similar
593 # would occur. Therefore the list of files is temporarily stored into a file
594 # and read directly, requiring GNU-Tar. Call "make TAR=gtar dist" if the normal
595 # tar does not support the --files-from option.
596 tar:
597         find . -type d -print | xargs chmod 755
598         find . -type f -print | xargs chmod a+r
599         find . -type f -perm -0100 -print | xargs chmod a+x
600         find * \! -path CVS/\* \! -path \*/CVS/\* \! -name CVS \! -name .cvsignore \! -name STATUS \! -name TABLE | $(BUILDENV) $(PERL) util/fipsdist.pl | sort > ../$(TARFILE).list; \
601         $(TAR) $(TARFLAGS) --files-from ../$(TARFILE).list -cvf - | \
602         tardy --user_number=0  --user_name=openssl \
603               --group_number=0 --group_name=openssl \
604               --prefix=openssl-$(VERSION) - |\
605         gzip --best >../$(TARFILE).gz; \
606         rm -f ../$(TARFILE).list; \
607         ls -l ../$(TARFILE).gz
608
609 tar-snap:
610         @$(TAR) $(TARFLAGS) -cvf - \
611                 `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` |\
612         tardy --user_number=0  --user_name=openssl \
613               --group_number=0 --group_name=openssl \
614               --prefix=openssl-$(VERSION) - > ../$(TARFILE);\
615         ls -l ../$(TARFILE)
616
617 dist:   
618         $(PERL) Configure dist fipscanisteronly
619         @$(MAKE) dist_pem_h
620         @$(MAKE) SDIRS='$(SDIRS)' clean
621         @$(MAKE) TAR='$(TAR)' TARFLAGS='$(TARFLAGS)' tar
622
623 dist_pem_h:
624         (cd crypto/pem; $(MAKE) -e $(BUILDENV) pem.h; $(MAKE) clean)
625
626 install: all install_docs install_sw
627
628 install_sw:
629         @$(PERL) $(TOP)/util/mkdir-p.pl $(INSTALL_PREFIX)$(INSTALLTOP)/bin \
630                 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR) \
631                 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines \
632                 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig \
633                 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl \
634                 $(INSTALL_PREFIX)$(OPENSSLDIR)/misc \
635                 $(INSTALL_PREFIX)$(OPENSSLDIR)/certs \
636                 $(INSTALL_PREFIX)$(OPENSSLDIR)/private
637         @set -e; headerlist="$(EXHEADER)"; for i in $$headerlist;\
638         do \
639         (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
640         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
641         done;
642         @set -e; target=install; $(RECURSIVE_BUILD_CMD)
643         @set -e; for i in $(LIBS) ;\
644         do \
645                 if [ -f "$$i" ]; then \
646                 (       echo installing $$i; \
647                         cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
648                         $(RANLIB) $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
649                         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
650                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i ); \
651                 fi; \
652         done;
653         @set -e; if [ -n "$(SHARED_LIBS)" ]; then \
654                 tmp="$(SHARED_LIBS)"; \
655                 for i in $${tmp:-x}; \
656                 do \
657                         if [ -f "$$i" -o -f "$$i.a" ]; then \
658                         (       echo installing $$i; \
659                                 if [ "$(PLATFORM)" != "Cygwin" ]; then \
660                                         cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
661                                         chmod 555 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
662                                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i; \
663                                 else \
664                                         c=`echo $$i | sed 's/^lib\(.*\)\.dll\.a/cyg\1-$(SHLIB_VERSION_NUMBER).dll/'`; \
665                                         cp $$c $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
666                                         chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
667                                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c; \
668                                         cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
669                                         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
670                                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i; \
671                                 fi ); \
672                                 if expr $(PLATFORM) : 'mingw' > /dev/null; then \
673                                 (       case $$i in \
674                                                 *crypto*) i=libeay32.dll;; \
675                                                 *ssl*)    i=ssleay32.dll;; \
676                                         esac; \
677                                         echo installing $$i; \
678                                         cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \
679                                         chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \
680                                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i ); \
681                                 fi; \
682                         fi; \
683                 done; \
684                 (       here="`pwd`"; \
685                         cd $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR); \
686                         $(MAKE) -f $$here/Makefile HERE="$$here" link-shared ); \
687                 if [ "$(INSTALLTOP)" != "/usr" ]; then \
688                         echo 'OpenSSL shared libraries have been installed in:'; \
689                         echo '  $(INSTALLTOP)'; \
690                         echo ''; \
691                         sed -e '1,/^$$/d' doc/openssl-shared.txt; \
692                 fi; \
693         fi
694         cp libcrypto.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
695         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libcrypto.pc
696         cp libssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
697         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libssl.pc
698         cp openssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
699         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/openssl.pc
700
701 install_html_docs:
702         here="`pwd`"; \
703         for subdir in apps crypto ssl; do \
704                 mkdir -p $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir; \
705                 for i in doc/$$subdir/*.pod; do \
706                         fn=`basename $$i .pod`; \
707                         echo "installing html/$$fn.$(HTMLSUFFIX)"; \
708                         cat $$i \
709                         | sed -r 's/L<([^)]*)(\([0-9]\))?\|([^)]*)(\([0-9]\))?>/L<\1|\3>/g' \
710                         | pod2html --podroot=doc --htmlroot=.. --podpath=apps:crypto:ssl \
711                         | sed -r 's/<!DOCTYPE.*//g' \
712                         > $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir/$$fn.$(HTMLSUFFIX); \
713                         $(PERL) util/extract-names.pl < $$i | \
714                                 grep -v $$filecase "^$$fn\$$" | \
715                                 (cd $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir; \
716                                  while read n; do \
717                                         PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$(HTMLSUFFIX) "$$n".$(HTMLSUFFIX); \
718                                  done); \
719                 done; \
720         done
721
722 install_docs:
723         @$(PERL) $(TOP)/util/mkdir-p.pl \
724                 $(INSTALL_PREFIX)$(MANDIR)/man1 \
725                 $(INSTALL_PREFIX)$(MANDIR)/man3 \
726                 $(INSTALL_PREFIX)$(MANDIR)/man5 \
727                 $(INSTALL_PREFIX)$(MANDIR)/man7
728         @pod2man="`cd ./util; ./pod2mantest $(PERL)`"; \
729         here="`pwd`"; \
730         filecase=; \
731         if [ "$(PLATFORM)" = "DJGPP" -o "$(PLATFORM)" = "Cygwin" -o "$(PLATFORM)" = "mingw" ]; then \
732                 filecase=-i; \
733         fi; \
734         set -e; for i in doc/apps/*.pod; do \
735                 fn=`basename $$i .pod`; \
736                 sec=`$(PERL) util/extract-section.pl 1 < $$i`; \
737                 echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
738                 (cd `$(PERL) util/dirname.pl $$i`; \
739                 sh -c "$$pod2man \
740                         --section=$$sec --center=OpenSSL \
741                         --release=$(VERSION) `basename $$i`") \
742                         >  $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
743                 $(PERL) util/extract-names.pl < $$i | \
744                         (grep -v $$filecase "^$$fn\$$"; true) | \
745                         (grep -v "[     ]"; true) | \
746                         (cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
747                          while read n; do \
748                                 PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
749                          done); \
750         done; \
751         set -e; for i in doc/crypto/*.pod doc/ssl/*.pod; do \
752                 fn=`basename $$i .pod`; \
753                 sec=`$(PERL) util/extract-section.pl 3 < $$i`; \
754                 echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
755                 (cd `$(PERL) util/dirname.pl $$i`; \
756                 sh -c "$$pod2man \
757                         --section=$$sec --center=OpenSSL \
758                         --release=$(VERSION) `basename $$i`") \
759                         >  $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
760                 $(PERL) util/extract-names.pl < $$i | \
761                         (grep -v $$filecase "^$$fn\$$"; true) | \
762                         (grep -v "[     ]"; true) | \
763                         (cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
764                          while read n; do \
765                                 PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
766                          done); \
767         done
768
769 # DO NOT DELETE THIS LINE -- make depend depends on it.