e4092537f338b03c6c01916dba8cbb684cdd32ac
[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 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 ecdh cmac ecdsa dh engine \
158         buffer bio stack lhash rand err \
159         evp asn1 ui
160
161 # tests to perform.  "alltests" is a special word indicating that all tests
162 # should be performed.
163 TESTS = alltests
164
165 MAKEFILE= Makefile
166
167 MANDIR=$(OPENSSLDIR)/man
168 MAN1=1
169 MAN3=3
170 MANSUFFIX=
171 HTMLSUFFIX=html
172 HTMLDIR=$(OPENSSLDIR)/html
173 SHELL=/bin/sh
174
175 TOP=    .
176 ONEDIRS=out tmp
177 EDIRS=  times doc bugs util include certs ms shlib mt demos perl sf dep VMS
178 WDIRS=  windows
179 LIBS=   
180 SHARED_CRYPTO=libcrypto$(SHLIB_EXT)
181 SHARED_SSL=libssl$(SHLIB_EXT)
182 SHARED_LIBS=
183 SHARED_LIBS_LINK_EXTS=
184 SHARED_LDFLAGS=
185
186 GENERAL=        Makefile
187 BASENAME=       openssl
188 NAME=           $(BASENAME)-$(VERSION)
189 TARFILE=        openssl-fips-2.0-test.tar
190 WTARFILE=       $(NAME)-win.tar
191 EXHEADER=       e_os2.h
192 HEADER=         e_os.h
193
194 all: Makefile build_all openssl.pc libssl.pc libcrypto.pc
195
196 # as we stick to -e, CLEARENV ensures that local variables in lower
197 # Makefiles remain local and variable. $${VAR+VAR} is tribute to Korn
198 # shell, which [annoyingly enough] terminates unset with error if VAR
199 # is not present:-( TOP= && unset TOP is tribute to HP-UX /bin/sh,
200 # which terminates unset with error if no variable was present:-(
201 CLEARENV=       TOP= && unset TOP $${LIB+LIB} $${LIBS+LIBS}     \
202                 $${INCLUDE+INCLUDE} $${INCLUDES+INCLUDES}       \
203                 $${DIR+DIR} $${DIRS+DIRS} $${SRC+SRC}           \
204                 $${LIBSRC+LIBSRC} $${LIBOBJ+LIBOBJ} $${ALL+ALL} \
205                 $${EXHEADER+EXHEADER} $${HEADER+HEADER}         \
206                 $${GENERAL+GENERAL} $${CFLAGS+CFLAGS}           \
207                 $${ASFLAGS+ASFLAGS} $${AFLAGS+AFLAGS}           \
208                 $${LDCMD+LDCMD} $${LDFLAGS+LDFLAGS}             \
209                 $${SHAREDCMD+SHAREDCMD} $${SHAREDFLAGS+SHAREDFLAGS}     \
210                 $${SHARED_LIB+SHARED_LIB} $${LIBEXTRAS+LIBEXTRAS}
211
212 BUILDENV=       PLATFORM='$(PLATFORM)' PROCESSOR='$(PROCESSOR)' \
213                 CC='$(CC)' CFLAG='$(CFLAG)'                     \
214                 ASFLAG='$(CFLAG) -c'                    \
215                 AR='$(AR)' NM='$(NM)' RANLIB='$(RANLIB)'        \
216                 CROSS_COMPILE='$(CROSS_COMPILE)'        \
217                 PERL='$(PERL)' ENGDIRS='$(ENGDIRS)'             \
218                 SDIRS='$(SDIRS)' LIBRPATH='$(INSTALLTOP)/$(LIBDIR)'     \
219                 INSTALL_PREFIX='$(INSTALL_PREFIX)'              \
220                 INSTALLTOP='$(INSTALLTOP)' OPENSSLDIR='$(OPENSSLDIR)'   \
221                 LIBDIR='$(LIBDIR)'                              \
222                 MAKEDEPEND='$$$${TOP}/util/domd $$$${TOP} -MD $(MAKEDEPPROG)' \
223                 DEPFLAG='-DOPENSSL_NO_DEPRECATED $(DEPFLAG)'    \
224                 MAKEDEPPROG='$(MAKEDEPPROG)'                    \
225                 SHARED_LDFLAGS='$(SHARED_LDFLAGS)'              \
226                 KRB5_INCLUDES='$(KRB5_INCLUDES)' LIBKRB5='$(LIBKRB5)'   \
227                 ZLIB_INCLUDE='$(ZLIB_INCLUDE)' LIBZLIB='$(LIBZLIB)'     \
228                 EXE_EXT='$(EXE_EXT)' SHARED_LIBS='$(SHARED_LIBS)'       \
229                 SHLIB_EXT='$(SHLIB_EXT)' SHLIB_TARGET='$(SHLIB_TARGET)' \
230                 PEX_LIBS='$(PEX_LIBS)' EX_LIBS='$(EX_LIBS)'     \
231                 CPUID_OBJ='$(CPUID_OBJ)'                        \
232                 BN_ASM='$(BN_ASM)' DES_ENC='$(DES_ENC)'         \
233                 AES_ENC='$(AES_ENC)' CMLL_ENC='$(CMLL_ENC)'     \
234                 BF_ENC='$(BF_ENC)' CAST_ENC='$(CAST_ENC)'       \
235                 RC4_ENC='$(RC4_ENC)' RC5_ENC='$(RC5_ENC)'       \
236                 SHA1_ASM_OBJ='$(SHA1_ASM_OBJ)'                  \
237                 MD5_ASM_OBJ='$(MD5_ASM_OBJ)'                    \
238                 RMD160_ASM_OBJ='$(RMD160_ASM_OBJ)'              \
239                 WP_ASM_OBJ='$(WP_ASM_OBJ)'                      \
240                 MODES_ASM_OBJ='$(MODES_ASM_OBJ)'                \
241                 PERLASM_SCHEME='$(PERLASM_SCHEME)'              \
242                 FIPSLIBDIR='${FIPSLIBDIR}'                      \
243                 FIPSCANLIB="$${FIPSCANLIB:-$(FIPSCANLIB)}"      \
244                 FIPSCANISTERINTERNAL='${FIPSCANISTERINTERNAL}'  \
245                 FIPSCANISTERONLY='${FIPSCANISTERONLY}'  \
246                 FIPS_EX_OBJ='${FIPS_EX_OBJ}'    \
247                 THIS=$${THIS:-$@} MAKEFILE=Makefile MAKEOVERRIDES=
248 # MAKEOVERRIDES= effectively "equalizes" GNU-ish and SysV-ish make flavors,
249 # which in turn eliminates ambiguities in variable treatment with -e.
250
251 # BUILD_CMD is a generic macro to build a given target in a given
252 # subdirectory.  The target must be given through the shell variable
253 # `target' and the subdirectory to build in must be given through `dir'.
254 # This macro shouldn't be used directly, use RECURSIVE_BUILD_CMD or
255 # BUILD_ONE_CMD instead.
256 #
257 # BUILD_ONE_CMD is a macro to build a given target in a given
258 # subdirectory if that subdirectory is part of $(DIRS).  It requires
259 # exactly the same shell variables as BUILD_CMD.
260 #
261 # RECURSIVE_BUILD_CMD is a macro to build a given target in all
262 # subdirectories defined in $(DIRS).  It requires that the target
263 # is given through the shell variable `target'.
264 BUILD_CMD=  if [ -d "$$dir" ]; then \
265             (   cd $$dir && echo "making $$target in $$dir..." && \
266                 $(CLEARENV) && $(MAKE) -e $(BUILDENV) TOP=.. DIR=$$dir $$target \
267             ) || exit 1; \
268             fi
269 RECURSIVE_BUILD_CMD=for dir in $(DIRS); do $(BUILD_CMD); done
270 BUILD_ONE_CMD=\
271         if expr " $(DIRS) " : ".* $$dir " >/dev/null 2>&1; then \
272                 $(BUILD_CMD); \
273         fi
274
275 reflect:
276         @[ -n "$(THIS)" ] && $(CLEARENV) && $(MAKE) $(THIS) -e $(BUILDENV)
277
278 # FIXME
279
280 FIPS_EX_OBJ= ../crypto/aes/aes_cfb.o \
281         ../crypto/aes/aes_ecb.o \
282         ../crypto/aes/aes_ofb.o \
283         ../crypto/bn/bn_add.o \
284         ../crypto/bn/bn_blind.o \
285         ../crypto/bn/bn_ctx.o \
286         ../crypto/bn/bn_div.o \
287         ../crypto/bn/bn_exp2.o \
288         ../crypto/bn/bn_exp.o \
289         ../crypto/bn/bn_gcd.o \
290         ../crypto/bn/bn_gf2m.o \
291         ../crypto/bn/bn_lib.o \
292         ../crypto/bn/bn_mod.o \
293         ../crypto/bn/bn_mont.o \
294         ../crypto/bn/bn_mul.o \
295         ../crypto/bn/bn_nist.o \
296         ../crypto/bn/bn_prime.o \
297         ../crypto/bn/bn_rand.o \
298         ../crypto/bn/bn_recp.o \
299         ../crypto/bn/bn_shift.o \
300         ../crypto/bn/bn_sqr.o \
301         ../crypto/bn/bn_word.o \
302         ../crypto/bn/bn_x931p.o \
303         ../crypto/buffer/buf_str.o \
304         ../crypto/cmac/cmac.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/ecdh/ech_key.o \
330         ../crypto/ecdh/ech_ossl.o \
331         ../crypto/ecdsa/ecs_ossl.o \
332         ../crypto/evp/e_aes.o \
333         ../crypto/evp/e_des3.o \
334         ../crypto/evp/m_sha1.o \
335         ../crypto/hmac/hmac.o \
336         ../crypto/modes/cbc128.o \
337         ../crypto/modes/cfb128.o \
338         ../crypto/modes/ctr128.o \
339         ../crypto/modes/gcm128.o \
340         ../crypto/modes/ofb128.o \
341         ../crypto/modes/xts128.o \
342         ../crypto/rsa/rsa_eay.o \
343         ../crypto/rsa/rsa_gen.o \
344         ../crypto/rsa/rsa_crpt.o \
345         ../crypto/rsa/rsa_none.o \
346         ../crypto/rsa/rsa_oaep.o \
347         ../crypto/rsa/rsa_pk1.o \
348         ../crypto/rsa/rsa_pss.o \
349         ../crypto/rsa/rsa_ssl.o \
350         ../crypto/rsa/rsa_x931.o \
351         ../crypto/rsa/rsa_x931g.o \
352         ../crypto/sha/sha1dgst.o \
353         ../crypto/sha/sha256.o \
354         ../crypto/sha/sha512.o \
355         ../crypto/thr_id.o \
356         ../crypto/uid.o
357
358 sub_all: build_all
359 build_all: build_libs build_tests
360
361 build_libs: build_crypto build_fips
362
363 build_fips:
364         @dir=fips; target=all; [ -z "$(FIPSCANLIB)" ] || $(BUILD_ONE_CMD)
365
366 build_crypto:
367         if [ -n "$(FIPSCANLIB)" ]; then \
368                 EXCL_OBJ='$(AES_ENC) $(BN_ASM) $(DES_ENC) $(CPUID_OBJ) $(SHA1_ASM_OBJ) $(MODES_ASM_OBJ) $(FIPS_EX_OBJ)' ; export EXCL_OBJ ; \
369                 ARX='$(PERL) $${TOP}/util/arx.pl $(AR)' ; \
370         else \
371                 ARX='${AR}' ; \
372         fi ; export ARX ; \
373         if [ $(FIPSCANISTERINTERNAL) = "y" ]; then \
374                 AS='$(PERL) $${TOP}/util/fipsas.pl $${TOP} $${<} $(CC)' ; \
375         else \
376                 AS='$(CC) -c' ; \
377         fi ; export AS ; \
378                 dir=crypto; target=fips; $(BUILD_ONE_CMD)
379 build_ssl:
380         @dir=ssl; target=all; $(BUILD_ONE_CMD)
381 build_engines:
382         @dir=engines; target=all; $(BUILD_ONE_CMD)
383 build_apps:
384         @dir=apps; target=all; $(BUILD_ONE_CMD)
385 build_tests:
386         @dir=test; target=fipsexe; $(BUILD_ONE_CMD)
387 build_tools:
388         @dir=tools; target=all; $(BUILD_ONE_CMD)
389
390 all_testapps: build_libs build_testapps
391 build_testapps:
392         @dir=crypto; target=testapps; $(BUILD_ONE_CMD)
393
394 libcrypto$(SHLIB_EXT): libcrypto.a build_fips
395         @if [ "$(SHLIB_TARGET)" != "" ]; then \
396                 if [ "$(FIPSCANLIB)" = "libcrypto" ]; then \
397                         FIPSLD_CC="$(CC)"; CC=fips/fipsld; \
398                         export CC FIPSLD_CC; \
399                 fi; \
400                 $(MAKE) SHLIBDIRS=crypto build-shared; \
401         else \
402                 echo "There's no support for shared libraries on this platform" >&2; \
403                 exit 1; \
404         fi
405
406 libssl$(SHLIB_EXT): libcrypto$(SHLIB_EXT) libssl.a
407         @if [ "$(SHLIB_TARGET)" != "" ]; then \
408                 $(MAKE) SHLIBDIRS=ssl SHLIBDEPS='-lcrypto' build-shared; \
409         else \
410                 echo "There's no support for shared libraries on this platform" >&2; \
411                 exit 1; \
412         fi
413
414 clean-shared:
415         @set -e; for i in $(SHLIBDIRS); do \
416                 if [ -n "$(SHARED_LIBS_LINK_EXTS)" ]; then \
417                         tmp="$(SHARED_LIBS_LINK_EXTS)"; \
418                         for j in $${tmp:-x}; do \
419                                 ( set -x; rm -f lib$$i$$j ); \
420                         done; \
421                 fi; \
422                 ( set -x; rm -f lib$$i$(SHLIB_EXT) ); \
423                 if [ "$(PLATFORM)" = "Cygwin" ]; then \
424                         ( set -x; rm -f cyg$$i$(SHLIB_EXT) lib$$i$(SHLIB_EXT).a ); \
425                 fi; \
426         done
427
428 link-shared:
429         @ set -e; for i in $(SHLIBDIRS); do \
430                 $(MAKE) -f $(HERE)/Makefile.shared -e $(BUILDENV) \
431                         LIBNAME=$$i LIBVERSION=$(SHLIB_MAJOR).$(SHLIB_MINOR) \
432                         LIBCOMPATVERSIONS=";$(SHLIB_VERSION_HISTORY)" \
433                         symlink.$(SHLIB_TARGET); \
434                 libs="$$libs -l$$i"; \
435         done
436
437 build-shared: do_$(SHLIB_TARGET) link-shared
438
439 do_$(SHLIB_TARGET):
440         @ set -e; libs='-L. $(SHLIBDEPS)'; for i in $(SHLIBDIRS); do \
441                 if [ "$$i" = "ssl" -a -n "$(LIBKRB5)" ]; then \
442                         libs="$(LIBKRB5) $$libs"; \
443                 fi; \
444                 $(CLEARENV) && $(MAKE) -f Makefile.shared -e $(BUILDENV) \
445                         LIBNAME=$$i LIBVERSION=$(SHLIB_MAJOR).$(SHLIB_MINOR) \
446                         LIBCOMPATVERSIONS=";$(SHLIB_VERSION_HISTORY)" \
447                         LIBDEPS="$$libs $(EX_LIBS)" \
448                         link_a.$(SHLIB_TARGET); \
449                 libs="-l$$i $$libs"; \
450         done
451
452 libcrypto.pc: Makefile
453         @ ( echo 'prefix=$(INSTALLTOP)'; \
454             echo 'exec_prefix=$${prefix}'; \
455             echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
456             echo 'includedir=$${prefix}/include'; \
457             echo ''; \
458             echo 'Name: OpenSSL-libcrypto'; \
459             echo 'Description: OpenSSL cryptography library'; \
460             echo 'Version: '$(VERSION); \
461             echo 'Requires: '; \
462             echo 'Libs: -L$${libdir} -lcrypto $(EX_LIBS)'; \
463             echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libcrypto.pc
464
465 libssl.pc: Makefile
466         @ ( echo 'prefix=$(INSTALLTOP)'; \
467             echo 'exec_prefix=$${prefix}'; \
468             echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
469             echo 'includedir=$${prefix}/include'; \
470             echo ''; \
471             echo 'Name: OpenSSL'; \
472             echo 'Description: Secure Sockets Layer and cryptography libraries'; \
473             echo 'Version: '$(VERSION); \
474             echo 'Requires: '; \
475             echo 'Libs: -L$${libdir} -lssl -lcrypto $(EX_LIBS)'; \
476             echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libssl.pc
477
478 openssl.pc: Makefile
479         @ ( echo 'prefix=$(INSTALLTOP)'; \
480             echo 'exec_prefix=$${prefix}'; \
481             echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
482             echo 'includedir=$${prefix}/include'; \
483             echo ''; \
484             echo 'Name: OpenSSL'; \
485             echo 'Description: Secure Sockets Layer and cryptography libraries and tools'; \
486             echo 'Version: '$(VERSION); \
487             echo 'Requires: '; \
488             echo 'Libs: -L$${libdir} -lssl -lcrypto $(EX_LIBS)'; \
489             echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > openssl.pc
490
491 Makefile: Makefile.fips Configure config
492         @echo "Makefile is older than Makefile.org, Configure or config."
493         @echo "Reconfigure the source tree (via './config' or 'perl Configure'), please."
494         @false
495
496 libclean:
497         rm -f *.map *.so *.so.* *.dll engines/*.so engines/*.dll *.a engines/*.a */lib */*/lib
498
499 clean:  libclean
500         rm -f shlib/*.o *.o core a.out fluff testlog make.log cctest cctest.c
501         @set -e; target=clean; $(RECURSIVE_BUILD_CMD)
502         rm -f $(LIBS)
503         rm -f openssl.pc libssl.pc libcrypto.pc
504         rm -f speed.* .pure
505         rm -f $(TARFILE)
506         @set -e; for i in $(ONEDIRS) ;\
507         do \
508         rm -fr $$i/*; \
509         done
510
511 makefile.one: files
512         $(PERL) util/mk1mf.pl >makefile.one; \
513         sh util/do_ms.sh
514
515 files:
516         $(PERL) $(TOP)/util/files.pl Makefile > $(TOP)/MINFO
517         @set -e; target=files; $(RECURSIVE_BUILD_CMD)
518
519 links:
520         @$(PERL) $(TOP)/util/mkdir-p.pl include/openssl
521         @$(PERL) $(TOP)/util/mklink.pl include/openssl $(EXHEADER)
522         @set -e; dir=fips target=links; $(RECURSIVE_BUILD_CMD)
523         @set -e; dir=crypto target=links; $(RECURSIVE_BUILD_CMD)
524
525 gentests:
526         @(cd test && echo "generating dummy tests (if needed)..." && \
527         $(CLEARENV) && $(MAKE) -e $(BUILDENV) TESTS='$(TESTS)' OPENSSL_DEBUG_MEMORY=on generate );
528
529 dclean:
530         rm -rf *.bak include/openssl certs/.0
531         @set -e; target=dclean; $(RECURSIVE_BUILD_CMD)
532
533 test:   tests
534
535 tests:
536         @(cd test && echo "testing..." && \
537         $(CLEARENV) && $(MAKE) -e $(BUILDENV) TOP=.. TESTS='$(TESTS)' OPENSSL_DEBUG_MEMORY=on OPENSSL_CONF=../apps/openssl.cnf tests );
538         OPENSSL_CONF=apps/openssl.cnf util/opensslwrap.sh version -a
539
540 report:
541         @$(PERL) util/selftest.pl
542
543 depend:
544         @echo make depend not supported ; false
545
546 lint:
547         @set -e; target=lint; $(RECURSIVE_BUILD_CMD)
548
549 tags:
550         rm -f TAGS
551         find . -name '[^.]*.[ch]' | xargs etags -a
552
553 errors:
554         $(PERL) util/mkerr.pl -recurse -write
555         (cd engines; $(MAKE) PERL=$(PERL) errors)
556         $(PERL) util/ck_errf.pl -strict */*.c */*/*.c
557
558 stacks:
559         $(PERL) util/mkstack.pl -write
560
561 util/libeay.num::
562         $(PERL) util/mkdef.pl crypto update
563
564 util/ssleay.num::
565         $(PERL) util/mkdef.pl ssl update
566
567 crypto/objects/obj_dat.h: crypto/objects/obj_dat.pl crypto/objects/obj_mac.h
568         $(PERL) crypto/objects/obj_dat.pl crypto/objects/obj_mac.h crypto/objects/obj_dat.h
569 crypto/objects/obj_mac.h: crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num
570         $(PERL) crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num crypto/objects/obj_mac.h
571 crypto/objects/obj_xref.h: crypto/objects/objxref.pl crypto/objects/obj_xref.txt crypto/objects/obj_mac.num
572         $(PERL) crypto/objects/objxref.pl crypto/objects/obj_mac.num crypto/objects/obj_xref.txt >crypto/objects/obj_xref.h
573
574 apps/openssl-vms.cnf: apps/openssl.cnf
575         $(PERL) VMS/VMSify-conf.pl < apps/openssl.cnf > apps/openssl-vms.cnf
576
577 crypto/bn/bn_prime.h: crypto/bn/bn_prime.pl
578         $(PERL) crypto/bn/bn_prime.pl >crypto/bn/bn_prime.h
579
580
581 TABLE: Configure
582         (echo 'Output of `Configure TABLE'"':"; \
583         $(PERL) Configure TABLE) > TABLE
584
585 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
586
587 # Build distribution tar-file. As the list of files returned by "find" is
588 # pretty long, on several platforms a "too many arguments" error or similar
589 # would occur. Therefore the list of files is temporarily stored into a file
590 # and read directly, requiring GNU-Tar. Call "make TAR=gtar dist" if the normal
591 # tar does not support the --files-from option.
592 tar:
593         find . -type d -print | xargs chmod 755
594         find . -type f -print | xargs chmod a+r
595         find . -type f -perm -0100 -print | xargs chmod a+x
596         find * \! -path CVS/\* \! -path \*/CVS/\* \! -name CVS \! -name .cvsignore \! -name STATUS \! -name TABLE | $(BUILDENV) LINKDIRS='$(LINKDIRS)' $(PERL) util/fipsdist.pl | sort > ../$(TARFILE).list; \
597         $(TAR) $(TARFLAGS) --files-from ../$(TARFILE).list -cvf - | \
598         tardy --user_number=0  --user_name=openssl \
599               --group_number=0 --group_name=openssl \
600               --prefix=openssl-$(VERSION) - |\
601         gzip --best >../$(TARFILE).gz; \
602         rm -f ../$(TARFILE).list; \
603         ls -l ../$(TARFILE).gz
604
605 tar-snap:
606         @$(TAR) $(TARFLAGS) -cvf - \
607                 `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` |\
608         tardy --user_number=0  --user_name=openssl \
609               --group_number=0 --group_name=openssl \
610               --prefix=openssl-$(VERSION) - > ../$(TARFILE);\
611         ls -l ../$(TARFILE)
612
613 dist:   
614         $(PERL) Configure dist fipscanisteronly
615         @$(MAKE) dist_pem_h
616         @$(MAKE) SDIRS='$(SDIRS)' clean
617         @$(MAKE) -f Makefile.fips TAR='$(TAR)' TARFLAGS='$(TARFLAGS)' tar
618
619 dist_pem_h:
620         (cd crypto/pem; $(MAKE) -e $(BUILDENV) pem.h; $(MAKE) clean)
621
622 install: all install_sw
623
624 install_sw:
625         @$(PERL) $(TOP)/util/mkdir-p.pl $(INSTALL_PREFIX)$(INSTALLTOP)/bin \
626                 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR) \
627                 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines \
628                 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig \
629                 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl \
630                 $(INSTALL_PREFIX)$(OPENSSLDIR)/misc \
631                 $(INSTALL_PREFIX)$(OPENSSLDIR)/certs \
632                 $(INSTALL_PREFIX)$(OPENSSLDIR)/private
633         @set -e; headerlist="$(EXHEADER)"; for i in $$headerlist;\
634         do \
635         (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
636         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
637         done;
638         @set -e; target=install; $(RECURSIVE_BUILD_CMD)
639         @set -e; for i in $(LIBS) ;\
640         do \
641                 if [ -f "$$i" ]; then \
642                 (       echo installing $$i; \
643                         cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
644                         $(RANLIB) $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
645                         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
646                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i ); \
647                 fi; \
648         done;
649
650
651 # DO NOT DELETE THIS LINE -- make depend depends on it.