]> git.ipfire.org Git - thirdparty/openssl.git/blame - Makefile.fips
Add linux-mips32be target for new platform
[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)
c6162001 189TARFILE= openssl-fips-2.0.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 \
9ebc37e6 332 ../crypto/evp/e_null.o \
975138ed 333 ../crypto/evp/m_sha1.o \
bce1af77
DSH
334 ../crypto/evp/m_dss1.o \
335 ../crypto/evp/m_dss.o \
336 ../crypto/evp/m_ecdsa.o \
975138ed
DSH
337 ../crypto/hmac/hmac.o \
338 ../crypto/modes/cbc128.o \
23916810 339 ../crypto/modes/ccm128.o \
975138ed
DSH
340 ../crypto/modes/cfb128.o \
341 ../crypto/modes/ctr128.o \
342 ../crypto/modes/gcm128.o \
343 ../crypto/modes/ofb128.o \
114c8e22 344 ../crypto/modes/xts128.o \
975138ed
DSH
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
361sub_all: build_all
0a7fcce8 362build_all: build_libs
975138ed
DSH
363
364build_libs: build_crypto build_fips
365
366build_fips:
367 @dir=fips; target=all; [ -z "$(FIPSCANLIB)" ] || $(BUILD_ONE_CMD)
368
369build_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 ; \
5d439d69
DSH
376 if [ $(FIPSCANISTERINTERNAL) = "y" ]; then \
377 AS='$(PERL) $${TOP}/util/fipsas.pl $${TOP} $${<} $(CC)' ; \
378 else \
379 AS='$(CC) -c' ; \
380 fi ; export AS ; \
eead69f5 381 dir=crypto; target=fips; $(BUILD_ONE_CMD)
975138ed
DSH
382build_ssl:
383 @dir=ssl; target=all; $(BUILD_ONE_CMD)
384build_engines:
385 @dir=engines; target=all; $(BUILD_ONE_CMD)
386build_apps:
387 @dir=apps; target=all; $(BUILD_ONE_CMD)
388build_tests:
389 @dir=test; target=fipsexe; $(BUILD_ONE_CMD)
8b8096d0
DSH
390build_algvs:
391 @dir=test; target=fipsalgvs; $(BUILD_ONE_CMD)
975138ed
DSH
392build_tools:
393 @dir=tools; target=all; $(BUILD_ONE_CMD)
394
395all_testapps: build_libs build_testapps
396build_testapps:
397 @dir=crypto; target=testapps; $(BUILD_ONE_CMD)
398
399libcrypto$(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
411libssl$(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
419clean-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
433link-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
442build-shared: do_$(SHLIB_TARGET) link-shared
443
444do_$(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
457libcrypto.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
470libssl.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
483openssl.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
c105c96b 496Makefile: Makefile.fips Configure config
975138ed
DSH
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
501libclean:
502 rm -f *.map *.so *.so.* *.dll engines/*.so engines/*.dll *.a engines/*.a */lib */*/lib
503
504clean: libclean
4a716f5b 505 rm -f shlib/*.o *.o core a.out fluff testlog make.log cctest cctest.c
975138ed
DSH
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
516makefile.one: files
517 $(PERL) util/mk1mf.pl >makefile.one; \
518 sh util/do_ms.sh
519
520files:
521 $(PERL) $(TOP)/util/files.pl Makefile > $(TOP)/MINFO
522 @set -e; target=files; $(RECURSIVE_BUILD_CMD)
523
524links:
525 @$(PERL) $(TOP)/util/mkdir-p.pl include/openssl
526 @$(PERL) $(TOP)/util/mklink.pl include/openssl $(EXHEADER)
58886fde 527 @set -e; dir=fips target=links; $(BUILD_ONE_CMD)
1d235039 528 @(cd crypto ; TEST='' SDIRS='$(LINKDIRS)' $(MAKE) -e links)
975138ed
DSH
529
530gentests:
531 @(cd test && echo "generating dummy tests (if needed)..." && \
532 $(CLEARENV) && $(MAKE) -e $(BUILDENV) TESTS='$(TESTS)' OPENSSL_DEBUG_MEMORY=on generate );
533
534dclean:
535 rm -rf *.bak include/openssl certs/.0
536 @set -e; target=dclean; $(RECURSIVE_BUILD_CMD)
537
975138ed
DSH
538test: tests
539
4a716f5b 540tests:
cb47a710 541 @echo "Not implemented in FIPS build" ; false
975138ed
DSH
542
543report:
544 @$(PERL) util/selftest.pl
545
546depend:
f9bf6314 547 @echo make depend not supported ; false
975138ed
DSH
548
549lint:
550 @set -e; target=lint; $(RECURSIVE_BUILD_CMD)
551
552tags:
553 rm -f TAGS
554 find . -name '[^.]*.[ch]' | xargs etags -a
555
556errors:
557 $(PERL) util/mkerr.pl -recurse -write
558 (cd engines; $(MAKE) PERL=$(PERL) errors)
559 $(PERL) util/ck_errf.pl -strict */*.c */*/*.c
560
561stacks:
562 $(PERL) util/mkstack.pl -write
563
564util/libeay.num::
565 $(PERL) util/mkdef.pl crypto update
566
567util/ssleay.num::
568 $(PERL) util/mkdef.pl ssl update
569
570crypto/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
572crypto/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
574crypto/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
577apps/openssl-vms.cnf: apps/openssl.cnf
578 $(PERL) VMS/VMSify-conf.pl < apps/openssl.cnf > apps/openssl-vms.cnf
579
580crypto/bn/bn_prime.h: crypto/bn/bn_prime.pl
581 $(PERL) crypto/bn/bn_prime.pl >crypto/bn/bn_prime.h
582
583
584TABLE: Configure
585 (echo 'Output of `Configure TABLE'"':"; \
586 $(PERL) Configure TABLE) > TABLE
587
588update: 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.
595tar:
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
bfba6e05 599 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
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
608tar-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
616dist:
e3496215 617 $(PERL) Configure dist fipscanisteronly
975138ed
DSH
618 @$(MAKE) dist_pem_h
619 @$(MAKE) SDIRS='$(SDIRS)' clean
83dfcd72 620 @$(MAKE) -f Makefile.fips TAR='$(TAR)' TARFLAGS='$(TARFLAGS)' tar
975138ed
DSH
621
622dist_pem_h:
623 (cd crypto/pem; $(MAKE) -e $(BUILDENV) pem.h; $(MAKE) clean)
624
6ceb1e8e 625install: all install_sw
975138ed
DSH
626
627install_sw:
628 @$(PERL) $(TOP)/util/mkdir-p.pl $(INSTALL_PREFIX)$(INSTALLTOP)/bin \
629 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR) \
946f5710 630 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl
975138ed
DSH
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)
975138ed
DSH
637
638# DO NOT DELETE THIS LINE -- make depend depends on it.