Don't include des.h any more: it is not needed.
[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 FIPS_EX_OBJ= ../crypto/aes/aes_cfb.o \
279         ../crypto/aes/aes_ecb.o \
280         ../crypto/aes/aes_ofb.o \
281         ../crypto/bn/bn_add.o \
282         ../crypto/bn/bn_blind.o \
283         ../crypto/bn/bn_ctx.o \
284         ../crypto/bn/bn_div.o \
285         ../crypto/bn/bn_exp2.o \
286         ../crypto/bn/bn_exp.o \
287         ../crypto/bn/bn_gcd.o \
288         ../crypto/bn/bn_gf2m.o \
289         ../crypto/bn/bn_lib.o \
290         ../crypto/bn/bn_mod.o \
291         ../crypto/bn/bn_mont.o \
292         ../crypto/bn/bn_mul.o \
293         ../crypto/bn/bn_nist.o \
294         ../crypto/bn/bn_prime.o \
295         ../crypto/bn/bn_rand.o \
296         ../crypto/bn/bn_recp.o \
297         ../crypto/bn/bn_shift.o \
298         ../crypto/bn/bn_sqr.o \
299         ../crypto/bn/bn_word.o \
300         ../crypto/bn/bn_x931p.o \
301         ../crypto/buffer/buf_str.o \
302         ../crypto/cmac/cmac.o \
303         ../crypto/cryptlib.o \
304         ../crypto/des/cfb64ede.o \
305         ../crypto/des/cfb64enc.o \
306         ../crypto/des/cfb_enc.o \
307         ../crypto/des/ecb3_enc.o \
308         ../crypto/des/ofb64ede.o \
309         ../crypto/des/fcrypt.o \
310         ../crypto/des/set_key.o \
311         ../crypto/dh/dh_check.o \
312         ../crypto/dh/dh_gen.o \
313         ../crypto/dh/dh_key.o \
314         ../crypto/dsa/dsa_gen.o \
315         ../crypto/dsa/dsa_key.o \
316         ../crypto/dsa/dsa_ossl.o \
317         ../crypto/ec/ec_curve.o \
318         ../crypto/ec/ec_cvt.o \
319         ../crypto/ec/ec_key.o \
320         ../crypto/ec/ec_lib.o \
321         ../crypto/ec/ecp_mont.o \
322         ../crypto/ec/ec_mult.o \
323         ../crypto/ec/ecp_nist.o \
324         ../crypto/ec/ecp_smpl.o \
325         ../crypto/ec/ec2_mult.o \
326         ../crypto/ec/ec2_smpl.o \
327         ../crypto/ecdh/ech_key.o \
328         ../crypto/ecdh/ech_ossl.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/evp/m_dss1.o \
334         ../crypto/evp/m_dss.o \
335         ../crypto/evp/m_ecdsa.o \
336         ../crypto/hmac/hmac.o \
337         ../crypto/modes/cbc128.o \
338         ../crypto/modes/ccm128.o \
339         ../crypto/modes/cfb128.o \
340         ../crypto/modes/ctr128.o \
341         ../crypto/modes/gcm128.o \
342         ../crypto/modes/ofb128.o \
343         ../crypto/modes/xts128.o \
344         ../crypto/rsa/rsa_eay.o \
345         ../crypto/rsa/rsa_gen.o \
346         ../crypto/rsa/rsa_crpt.o \
347         ../crypto/rsa/rsa_none.o \
348         ../crypto/rsa/rsa_oaep.o \
349         ../crypto/rsa/rsa_pk1.o \
350         ../crypto/rsa/rsa_pss.o \
351         ../crypto/rsa/rsa_ssl.o \
352         ../crypto/rsa/rsa_x931.o \
353         ../crypto/rsa/rsa_x931g.o \
354         ../crypto/sha/sha1dgst.o \
355         ../crypto/sha/sha256.o \
356         ../crypto/sha/sha512.o \
357         ../crypto/thr_id.o \
358         ../crypto/uid.o
359
360 sub_all: build_all
361 build_all: build_libs build_tests
362
363 build_libs: build_crypto build_fips
364
365 build_fips:
366         @dir=fips; target=all; [ -z "$(FIPSCANLIB)" ] || $(BUILD_ONE_CMD)
367
368 build_crypto:
369         if [ -n "$(FIPSCANLIB)" ]; then \
370                 EXCL_OBJ='$(AES_ENC) $(BN_ASM) $(DES_ENC) $(CPUID_OBJ) $(SHA1_ASM_OBJ) $(MODES_ASM_OBJ) $(FIPS_EX_OBJ)' ; export EXCL_OBJ ; \
371                 ARX='$(PERL) $${TOP}/util/arx.pl $(AR)' ; \
372         else \
373                 ARX='${AR}' ; \
374         fi ; export ARX ; \
375         if [ $(FIPSCANISTERINTERNAL) = "y" ]; then \
376                 AS='$(PERL) $${TOP}/util/fipsas.pl $${TOP} $${<} $(CC)' ; \
377         else \
378                 AS='$(CC) -c' ; \
379         fi ; export AS ; \
380                 dir=crypto; target=fips; $(BUILD_ONE_CMD)
381 build_ssl:
382         @dir=ssl; target=all; $(BUILD_ONE_CMD)
383 build_engines:
384         @dir=engines; target=all; $(BUILD_ONE_CMD)
385 build_apps:
386         @dir=apps; target=all; $(BUILD_ONE_CMD)
387 build_tests:
388         @dir=test; target=fipsexe; $(BUILD_ONE_CMD)
389 build_tools:
390         @dir=tools; target=all; $(BUILD_ONE_CMD)
391
392 all_testapps: build_libs build_testapps
393 build_testapps:
394         @dir=crypto; target=testapps; $(BUILD_ONE_CMD)
395
396 libcrypto$(SHLIB_EXT): libcrypto.a build_fips
397         @if [ "$(SHLIB_TARGET)" != "" ]; then \
398                 if [ "$(FIPSCANLIB)" = "libcrypto" ]; then \
399                         FIPSLD_CC="$(CC)"; CC=fips/fipsld; \
400                         export CC FIPSLD_CC; \
401                 fi; \
402                 $(MAKE) SHLIBDIRS=crypto build-shared; \
403         else \
404                 echo "There's no support for shared libraries on this platform" >&2; \
405                 exit 1; \
406         fi
407
408 libssl$(SHLIB_EXT): libcrypto$(SHLIB_EXT) libssl.a
409         @if [ "$(SHLIB_TARGET)" != "" ]; then \
410                 $(MAKE) SHLIBDIRS=ssl SHLIBDEPS='-lcrypto' build-shared; \
411         else \
412                 echo "There's no support for shared libraries on this platform" >&2; \
413                 exit 1; \
414         fi
415
416 clean-shared:
417         @set -e; for i in $(SHLIBDIRS); do \
418                 if [ -n "$(SHARED_LIBS_LINK_EXTS)" ]; then \
419                         tmp="$(SHARED_LIBS_LINK_EXTS)"; \
420                         for j in $${tmp:-x}; do \
421                                 ( set -x; rm -f lib$$i$$j ); \
422                         done; \
423                 fi; \
424                 ( set -x; rm -f lib$$i$(SHLIB_EXT) ); \
425                 if [ "$(PLATFORM)" = "Cygwin" ]; then \
426                         ( set -x; rm -f cyg$$i$(SHLIB_EXT) lib$$i$(SHLIB_EXT).a ); \
427                 fi; \
428         done
429
430 link-shared:
431         @ set -e; for i in $(SHLIBDIRS); do \
432                 $(MAKE) -f $(HERE)/Makefile.shared -e $(BUILDENV) \
433                         LIBNAME=$$i LIBVERSION=$(SHLIB_MAJOR).$(SHLIB_MINOR) \
434                         LIBCOMPATVERSIONS=";$(SHLIB_VERSION_HISTORY)" \
435                         symlink.$(SHLIB_TARGET); \
436                 libs="$$libs -l$$i"; \
437         done
438
439 build-shared: do_$(SHLIB_TARGET) link-shared
440
441 do_$(SHLIB_TARGET):
442         @ set -e; libs='-L. $(SHLIBDEPS)'; for i in $(SHLIBDIRS); do \
443                 if [ "$$i" = "ssl" -a -n "$(LIBKRB5)" ]; then \
444                         libs="$(LIBKRB5) $$libs"; \
445                 fi; \
446                 $(CLEARENV) && $(MAKE) -f Makefile.shared -e $(BUILDENV) \
447                         LIBNAME=$$i LIBVERSION=$(SHLIB_MAJOR).$(SHLIB_MINOR) \
448                         LIBCOMPATVERSIONS=";$(SHLIB_VERSION_HISTORY)" \
449                         LIBDEPS="$$libs $(EX_LIBS)" \
450                         link_a.$(SHLIB_TARGET); \
451                 libs="-l$$i $$libs"; \
452         done
453
454 libcrypto.pc: Makefile
455         @ ( echo 'prefix=$(INSTALLTOP)'; \
456             echo 'exec_prefix=$${prefix}'; \
457             echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
458             echo 'includedir=$${prefix}/include'; \
459             echo ''; \
460             echo 'Name: OpenSSL-libcrypto'; \
461             echo 'Description: OpenSSL cryptography library'; \
462             echo 'Version: '$(VERSION); \
463             echo 'Requires: '; \
464             echo 'Libs: -L$${libdir} -lcrypto $(EX_LIBS)'; \
465             echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libcrypto.pc
466
467 libssl.pc: Makefile
468         @ ( echo 'prefix=$(INSTALLTOP)'; \
469             echo 'exec_prefix=$${prefix}'; \
470             echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
471             echo 'includedir=$${prefix}/include'; \
472             echo ''; \
473             echo 'Name: OpenSSL'; \
474             echo 'Description: Secure Sockets Layer and cryptography libraries'; \
475             echo 'Version: '$(VERSION); \
476             echo 'Requires: '; \
477             echo 'Libs: -L$${libdir} -lssl -lcrypto $(EX_LIBS)'; \
478             echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libssl.pc
479
480 openssl.pc: Makefile
481         @ ( echo 'prefix=$(INSTALLTOP)'; \
482             echo 'exec_prefix=$${prefix}'; \
483             echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
484             echo 'includedir=$${prefix}/include'; \
485             echo ''; \
486             echo 'Name: OpenSSL'; \
487             echo 'Description: Secure Sockets Layer and cryptography libraries and tools'; \
488             echo 'Version: '$(VERSION); \
489             echo 'Requires: '; \
490             echo 'Libs: -L$${libdir} -lssl -lcrypto $(EX_LIBS)'; \
491             echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > openssl.pc
492
493 Makefile: Makefile.fips Configure config
494         @echo "Makefile is older than Makefile.org, Configure or config."
495         @echo "Reconfigure the source tree (via './config' or 'perl Configure'), please."
496         @false
497
498 libclean:
499         rm -f *.map *.so *.so.* *.dll engines/*.so engines/*.dll *.a engines/*.a */lib */*/lib
500
501 clean:  libclean
502         rm -f shlib/*.o *.o core a.out fluff testlog make.log cctest cctest.c
503         @set -e; target=clean; $(RECURSIVE_BUILD_CMD)
504         rm -f $(LIBS)
505         rm -f openssl.pc libssl.pc libcrypto.pc
506         rm -f speed.* .pure
507         rm -f $(TARFILE)
508         @set -e; for i in $(ONEDIRS) ;\
509         do \
510         rm -fr $$i/*; \
511         done
512
513 makefile.one: files
514         $(PERL) util/mk1mf.pl >makefile.one; \
515         sh util/do_ms.sh
516
517 files:
518         $(PERL) $(TOP)/util/files.pl Makefile > $(TOP)/MINFO
519         @set -e; target=files; $(RECURSIVE_BUILD_CMD)
520
521 links:
522         @$(PERL) $(TOP)/util/mkdir-p.pl include/openssl
523         @$(PERL) $(TOP)/util/mklink.pl include/openssl $(EXHEADER)
524         @set -e; dir=fips target=links; $(RECURSIVE_BUILD_CMD)
525         @(cd crypto ; SDIRS='$(LINKDIRS)' $(MAKE) -e links)
526
527 gentests:
528         @(cd test && echo "generating dummy tests (if needed)..." && \
529         $(CLEARENV) && $(MAKE) -e $(BUILDENV) TESTS='$(TESTS)' OPENSSL_DEBUG_MEMORY=on generate );
530
531 dclean:
532         rm -rf *.bak include/openssl certs/.0
533         @set -e; target=dclean; $(RECURSIVE_BUILD_CMD)
534
535 test:   tests
536
537 tests:
538         @(cd test && echo "testing..." && \
539         $(CLEARENV) && $(MAKE) -e $(BUILDENV) TOP=.. TESTS='$(TESTS)' OPENSSL_DEBUG_MEMORY=on OPENSSL_CONF=../apps/openssl.cnf tests );
540         OPENSSL_CONF=apps/openssl.cnf util/opensslwrap.sh version -a
541
542 report:
543         @$(PERL) util/selftest.pl
544
545 depend:
546         @echo make depend not supported ; false
547
548 lint:
549         @set -e; target=lint; $(RECURSIVE_BUILD_CMD)
550
551 tags:
552         rm -f TAGS
553         find . -name '[^.]*.[ch]' | xargs etags -a
554
555 errors:
556         $(PERL) util/mkerr.pl -recurse -write
557         (cd engines; $(MAKE) PERL=$(PERL) errors)
558         $(PERL) util/ck_errf.pl -strict */*.c */*/*.c
559
560 stacks:
561         $(PERL) util/mkstack.pl -write
562
563 util/libeay.num::
564         $(PERL) util/mkdef.pl crypto update
565
566 util/ssleay.num::
567         $(PERL) util/mkdef.pl ssl update
568
569 crypto/objects/obj_dat.h: crypto/objects/obj_dat.pl crypto/objects/obj_mac.h
570         $(PERL) crypto/objects/obj_dat.pl crypto/objects/obj_mac.h crypto/objects/obj_dat.h
571 crypto/objects/obj_mac.h: crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num
572         $(PERL) crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num crypto/objects/obj_mac.h
573 crypto/objects/obj_xref.h: crypto/objects/objxref.pl crypto/objects/obj_xref.txt crypto/objects/obj_mac.num
574         $(PERL) crypto/objects/objxref.pl crypto/objects/obj_mac.num crypto/objects/obj_xref.txt >crypto/objects/obj_xref.h
575
576 apps/openssl-vms.cnf: apps/openssl.cnf
577         $(PERL) VMS/VMSify-conf.pl < apps/openssl.cnf > apps/openssl-vms.cnf
578
579 crypto/bn/bn_prime.h: crypto/bn/bn_prime.pl
580         $(PERL) crypto/bn/bn_prime.pl >crypto/bn/bn_prime.h
581
582
583 TABLE: Configure
584         (echo 'Output of `Configure TABLE'"':"; \
585         $(PERL) Configure TABLE) > TABLE
586
587 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
588
589 # Build distribution tar-file. As the list of files returned by "find" is
590 # pretty long, on several platforms a "too many arguments" error or similar
591 # would occur. Therefore the list of files is temporarily stored into a file
592 # and read directly, requiring GNU-Tar. Call "make TAR=gtar dist" if the normal
593 # tar does not support the --files-from option.
594 tar:
595         find . -type d -print | xargs chmod 755
596         find . -type f -print | xargs chmod a+r
597         find . -type f -perm -0100 -print | xargs chmod a+x
598         find * \! -path CVS/\* \! -path \*/CVS/\* \! -name CVS \! -name .cvsignore \! -name STATUS \! -name TABLE | $(BUILDENV) LINKDIRS='$(LINKDIRS)' $(PERL) util/fipsdist.pl | sort > ../$(TARFILE).list; \
599         $(TAR) $(TARFLAGS) --files-from ../$(TARFILE).list -cvf - | \
600         tardy --user_number=0  --user_name=openssl \
601               --group_number=0 --group_name=openssl \
602               --prefix=openssl-$(VERSION) - |\
603         gzip --best >../$(TARFILE).gz; \
604         rm -f ../$(TARFILE).list; \
605         ls -l ../$(TARFILE).gz
606
607 tar-snap:
608         @$(TAR) $(TARFLAGS) -cvf - \
609                 `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` |\
610         tardy --user_number=0  --user_name=openssl \
611               --group_number=0 --group_name=openssl \
612               --prefix=openssl-$(VERSION) - > ../$(TARFILE);\
613         ls -l ../$(TARFILE)
614
615 dist:   
616         $(PERL) Configure dist fipscanisteronly
617         @$(MAKE) dist_pem_h
618         @$(MAKE) SDIRS='$(SDIRS)' clean
619         @$(MAKE) -f Makefile.fips TAR='$(TAR)' TARFLAGS='$(TARFLAGS)' tar
620
621 dist_pem_h:
622         (cd crypto/pem; $(MAKE) -e $(BUILDENV) pem.h; $(MAKE) clean)
623
624 install: all install_sw
625
626 install_sw:
627         @$(PERL) $(TOP)/util/mkdir-p.pl $(INSTALL_PREFIX)$(INSTALLTOP)/bin \
628                 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR) \
629                 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl
630         @set -e; headerlist="$(EXHEADER)"; for i in $$headerlist;\
631         do \
632         (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
633         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
634         done;
635         @set -e; target=install; $(RECURSIVE_BUILD_CMD)
636         @set -e; for i in $(LIBS) ;\
637         do \
638                 if [ -f "$$i" ]; then \
639                 (       echo installing $$i; \
640                         cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
641                         $(RANLIB) $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
642                         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
643                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i ); \
644                 fi; \
645         done;
646
647
648 # DO NOT DELETE THIS LINE -- make depend depends on it.