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