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