]> git.ipfire.org Git - thirdparty/openssl.git/blame - Makefile.fips
Add flags for DH FIPS method.
[thirdparty/openssl.git] / Makefile.fips
CommitLineData
975138ed
DSH
1##
2## Makefile for OpenSSL: fipscanister.o only
3##
4
e3496215 5VERSION=fips-2.0-test
975138ed
DSH
6MAJOR=
7MINOR=
8SHLIB_VERSION_NUMBER=
9SHLIB_VERSION_HISTORY=
10SHLIB_MAJOR=
11SHLIB_MINOR=
12SHLIB_EXT=
13PLATFORM=dist
14OPTIONS=
15CONFIGURE_ARGS=
16SHLIB_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.
21HERE=.
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.
26INSTALL_PREFIX=
27INSTALLTOP=/usr/local/ssl
28
29# Do not edit this manually. Use Configure --openssldir=DIR do change this!
30OPENSSLDIR=/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
60CC= cc
61CFLAG= -O
62DEPFLAG=
63PEX_LIBS=
64EX_LIBS=
65EXE_EXT=
66ARFLAGS=
67AR=ar $(ARFLAGS) r
68RANLIB= ranlib
69NM= nm
70PERL= perl
71TAR= tar
72TARFLAGS= --no-recursion
73MAKEDEPPROG=makedepend
74LIBDIR=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.
5d439d69 81#AS=$(CC) -c
975138ed
DSH
82ASFLAG=$(CFLAG)
83
84# For x86 assembler: Set PROCESSOR to 386 if you want to support
85# the 80386.
86PROCESSOR=
87
88# CPUID module collects small commonly used assembler snippets
89CPUID_OBJ=
90BN_ASM= bn_asm.o
91DES_ENC= des_enc.o fcrypt_b.o
92AES_ENC= aes_core.o aes_cbc.o
93BF_ENC= bf_enc.o
94CAST_ENC= c_enc.o
95RC4_ENC= rc4_enc.o
96RC5_ENC= rc5_enc.o
97MD5_ASM_OBJ=
98SHA1_ASM_OBJ=
99RMD160_ASM_OBJ=
100WP_ASM_OBJ=
101CMLL_ENC=
102MODES_ASM_OBJ=
103PERLASM_SCHEME=
104
105# KRB5 stuff
106KRB5_INCLUDES=
107LIBKRB5=
108
109# Zlib stuff
110ZLIB_INCLUDE=
111LIBZLIB=
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
120FIPSLIBDIR=/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
125FIPSCANISTERINTERNAL=n
126
127# This is set if we only build fipscanister.o
128
129FIPSCANISTERONLY=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
136FIPSCANLIB=
137
138# Shared library base address. Currently only used on Windows.
139#
140
141BASEADDR=
142
4a716f5b 143DIRS= crypto fips test
975138ed
DSH
144ENGDIRS= ccgost
145SHLIBDIRS= crypto
146
147# dirs in crypto to build
148SDIRS= \
149 sha hmac des aes modes \
eead69f5 150 bn ec rsa dsa ecdsa dh \
42bd0a6b 151 buffer evp ecdh cmac
975138ed
DSH
152# keep in mind that the above list is adjusted by ./Configure
153# according to no-xxx arguments...
154
6892d0eb
DSH
155LINKDIRS= \
156 objects sha hmac des aes modes \
6ceb1e8e 157 bn ec rsa dsa ecdh cmac ecdsa dh engine \
6892d0eb 158 buffer bio stack lhash rand err \
95079792 159 evp asn1 ui
6892d0eb 160
975138ed
DSH
161# tests to perform. "alltests" is a special word indicating that all tests
162# should be performed.
163TESTS = alltests
164
165MAKEFILE= Makefile
166
167MANDIR=$(OPENSSLDIR)/man
168MAN1=1
169MAN3=3
170MANSUFFIX=
171HTMLSUFFIX=html
172HTMLDIR=$(OPENSSLDIR)/html
173SHELL=/bin/sh
174
175TOP= .
176ONEDIRS=out tmp
177EDIRS= times doc bugs util include certs ms shlib mt demos perl sf dep VMS
178WDIRS= windows
179LIBS=
180SHARED_CRYPTO=libcrypto$(SHLIB_EXT)
181SHARED_SSL=libssl$(SHLIB_EXT)
182SHARED_LIBS=
183SHARED_LIBS_LINK_EXTS=
184SHARED_LDFLAGS=
185
186GENERAL= Makefile
187BASENAME= openssl
188NAME= $(BASENAME)-$(VERSION)
114c8e22 189TARFILE= openssl-fips-2.0-test.tar
975138ed
DSH
190WTARFILE= $(NAME)-win.tar
191EXHEADER= e_os2.h
192HEADER= e_os.h
193
194all: 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:-(
201CLEARENV= 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
212BUILDENV= PLATFORM='$(PLATFORM)' PROCESSOR='$(PROCESSOR)' \
213 CC='$(CC)' CFLAG='$(CFLAG)' \
5d439d69 214 ASFLAG='$(CFLAG) -c' \
975138ed
DSH
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'.
264BUILD_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
269RECURSIVE_BUILD_CMD=for dir in $(DIRS); do $(BUILD_CMD); done
270BUILD_ONE_CMD=\
271 if expr " $(DIRS) " : ".* $$dir " >/dev/null 2>&1; then \
272 $(BUILD_CMD); \
273 fi
274
275reflect:
276 @[ -n "$(THIS)" ] && $(CLEARENV) && $(MAKE) $(THIS) -e $(BUILDENV)
277
975138ed
DSH
278FIPS_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 \
fe26d066 288 ../crypto/bn/bn_gf2m.o \
975138ed
DSH
289 ../crypto/bn/bn_lib.o \
290 ../crypto/bn/bn_mod.o \
291 ../crypto/bn/bn_mont.o \
292 ../crypto/bn/bn_mul.o \
fe26d066 293 ../crypto/bn/bn_nist.o \
975138ed
DSH
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 \
95079792 302 ../crypto/cmac/cmac.o \
975138ed
DSH
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 \
fe26d066
DSH
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 \
8857b380
DSH
327 ../crypto/ecdh/ech_key.o \
328 ../crypto/ecdh/ech_ossl.o \
fe26d066 329 ../crypto/ecdsa/ecs_ossl.o \
975138ed
DSH
330 ../crypto/evp/e_aes.o \
331 ../crypto/evp/e_des3.o \
332 ../crypto/evp/m_sha1.o \
bce1af77
DSH
333 ../crypto/evp/m_dss1.o \
334 ../crypto/evp/m_dss.o \
335 ../crypto/evp/m_ecdsa.o \
975138ed
DSH
336 ../crypto/hmac/hmac.o \
337 ../crypto/modes/cbc128.o \
23916810 338 ../crypto/modes/ccm128.o \
975138ed
DSH
339 ../crypto/modes/cfb128.o \
340 ../crypto/modes/ctr128.o \
341 ../crypto/modes/gcm128.o \
342 ../crypto/modes/ofb128.o \
114c8e22 343 ../crypto/modes/xts128.o \
975138ed
DSH
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
360sub_all: build_all
4a716f5b 361build_all: build_libs build_tests
975138ed
DSH
362
363build_libs: build_crypto build_fips
364
365build_fips:
366 @dir=fips; target=all; [ -z "$(FIPSCANLIB)" ] || $(BUILD_ONE_CMD)
367
368build_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 ; \
5d439d69
DSH
375 if [ $(FIPSCANISTERINTERNAL) = "y" ]; then \
376 AS='$(PERL) $${TOP}/util/fipsas.pl $${TOP} $${<} $(CC)' ; \
377 else \
378 AS='$(CC) -c' ; \
379 fi ; export AS ; \
eead69f5 380 dir=crypto; target=fips; $(BUILD_ONE_CMD)
975138ed
DSH
381build_ssl:
382 @dir=ssl; target=all; $(BUILD_ONE_CMD)
383build_engines:
384 @dir=engines; target=all; $(BUILD_ONE_CMD)
385build_apps:
386 @dir=apps; target=all; $(BUILD_ONE_CMD)
387build_tests:
388 @dir=test; target=fipsexe; $(BUILD_ONE_CMD)
389build_tools:
390 @dir=tools; target=all; $(BUILD_ONE_CMD)
391
392all_testapps: build_libs build_testapps
393build_testapps:
394 @dir=crypto; target=testapps; $(BUILD_ONE_CMD)
395
396libcrypto$(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
408libssl$(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
416clean-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
430link-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
439build-shared: do_$(SHLIB_TARGET) link-shared
440
441do_$(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
454libcrypto.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
467libssl.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
480openssl.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
c105c96b 493Makefile: Makefile.fips Configure config
975138ed
DSH
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
498libclean:
499 rm -f *.map *.so *.so.* *.dll engines/*.so engines/*.dll *.a engines/*.a */lib */*/lib
500
501clean: libclean
4a716f5b 502 rm -f shlib/*.o *.o core a.out fluff testlog make.log cctest cctest.c
975138ed
DSH
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
513makefile.one: files
514 $(PERL) util/mk1mf.pl >makefile.one; \
515 sh util/do_ms.sh
516
517files:
518 $(PERL) $(TOP)/util/files.pl Makefile > $(TOP)/MINFO
519 @set -e; target=files; $(RECURSIVE_BUILD_CMD)
520
521links:
522 @$(PERL) $(TOP)/util/mkdir-p.pl include/openssl
523 @$(PERL) $(TOP)/util/mklink.pl include/openssl $(EXHEADER)
199e92bb 524 @set -e; dir=fips target=links; $(RECURSIVE_BUILD_CMD)
614dd926 525 @(cd crypto ; SDIRS='$(LINKDIRS)' $(MAKE) -e links)
975138ed
DSH
526
527gentests:
528 @(cd test && echo "generating dummy tests (if needed)..." && \
529 $(CLEARENV) && $(MAKE) -e $(BUILDENV) TESTS='$(TESTS)' OPENSSL_DEBUG_MEMORY=on generate );
530
531dclean:
532 rm -rf *.bak include/openssl certs/.0
533 @set -e; target=dclean; $(RECURSIVE_BUILD_CMD)
534
975138ed
DSH
535test: tests
536
4a716f5b 537tests:
975138ed
DSH
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
542report:
543 @$(PERL) util/selftest.pl
544
545depend:
f9bf6314 546 @echo make depend not supported ; false
975138ed
DSH
547
548lint:
549 @set -e; target=lint; $(RECURSIVE_BUILD_CMD)
550
551tags:
552 rm -f TAGS
553 find . -name '[^.]*.[ch]' | xargs etags -a
554
555errors:
556 $(PERL) util/mkerr.pl -recurse -write
557 (cd engines; $(MAKE) PERL=$(PERL) errors)
558 $(PERL) util/ck_errf.pl -strict */*.c */*/*.c
559
560stacks:
561 $(PERL) util/mkstack.pl -write
562
563util/libeay.num::
564 $(PERL) util/mkdef.pl crypto update
565
566util/ssleay.num::
567 $(PERL) util/mkdef.pl ssl update
568
569crypto/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
571crypto/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
573crypto/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
576apps/openssl-vms.cnf: apps/openssl.cnf
577 $(PERL) VMS/VMSify-conf.pl < apps/openssl.cnf > apps/openssl-vms.cnf
578
579crypto/bn/bn_prime.h: crypto/bn/bn_prime.pl
580 $(PERL) crypto/bn/bn_prime.pl >crypto/bn/bn_prime.h
581
582
583TABLE: Configure
584 (echo 'Output of `Configure TABLE'"':"; \
585 $(PERL) Configure TABLE) > TABLE
586
587update: 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.
594tar:
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
bfba6e05 598 find * \! -path CVS/\* \! -path \*/CVS/\* \! -name CVS \! -name .cvsignore \! -name STATUS \! -name TABLE | $(BUILDENV) LINKDIRS='$(LINKDIRS)' $(PERL) util/fipsdist.pl | sort > ../$(TARFILE).list; \
975138ed
DSH
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
607tar-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
615dist:
e3496215 616 $(PERL) Configure dist fipscanisteronly
975138ed
DSH
617 @$(MAKE) dist_pem_h
618 @$(MAKE) SDIRS='$(SDIRS)' clean
83dfcd72 619 @$(MAKE) -f Makefile.fips TAR='$(TAR)' TARFLAGS='$(TARFLAGS)' tar
975138ed
DSH
620
621dist_pem_h:
622 (cd crypto/pem; $(MAKE) -e $(BUILDENV) pem.h; $(MAKE) clean)
623
6ceb1e8e 624install: all install_sw
975138ed
DSH
625
626install_sw:
627 @$(PERL) $(TOP)/util/mkdir-p.pl $(INSTALL_PREFIX)$(INSTALLTOP)/bin \
628 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR) \
946f5710 629 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl
975138ed
DSH
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;
975138ed 646
975138ed
DSH
647
648# DO NOT DELETE THIS LINE -- make depend depends on it.