X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=blobdiff_plain;f=Makefile.org;h=5f9c86c73a944b67cdd705e79d9f140e9acccf8c;hp=a3f51912df5bc5313a1198bdd99d80da91f20a6b;hb=3d8accc3ae7a6899ac67719bd9e7f24892de4f21;hpb=c54b4ee16ae208237b9ec06b6fa39169fca07f13 diff --git a/Makefile.org b/Makefile.org index a3f51912df..5f9c86c73a 100644 --- a/Makefile.org +++ b/Makefile.org @@ -1,6 +1,6 @@ # # Makefile for all the SSL related library routines and utilities -VERSION = 0.9.1c +VERSION = 0.9.2 PLATFORM=FreeBSD # # make install will install: @@ -156,8 +156,8 @@ SDIRS= \ md2 md5 sha mdc2 hmac ripemd \ des rc2 rc4 rc5 idea bf cast \ bn rsa dsa dh \ - buffer bio stack lhash rand pem err objects \ - evp asn1 x509 conf txt_db pkcs7 comp + buffer bio stack lhash rand err objects \ + evp asn1 pem x509 x509v3 conf txt_db pkcs7 comp # If you change the INSTALLTOP, make sure to also change the values # in crypto/location.h @@ -184,20 +184,25 @@ WTARFILE= $(NAME)-win.tar EXHEADER= e_os.h HEADER= e_os.h -all: +all: Makefile.ssl @for i in $(DIRS) ;\ do \ - (cd $$i; echo "making $$i..."; \ - $(MAKE) CC='${CC}' PLATFORM='${PLATFORM}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' SDIRS='${SDIRS}' AR='${AR}' all ); \ + (cd $$i && echo "making $$i..." && \ + $(MAKE) CC='${CC}' PLATFORM='${PLATFORM}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' SDIRS='${SDIRS}' AR='${AR}' all ) || exit 1; \ done; sub_all: @for i in $(DIRS) ;\ do \ - (cd $$i; echo "making $$i..."; \ - $(MAKE) CC='${CC}' PLATFORM='${PLATFORM}' CFLAG='${CFLAG}' SDIRS='$(SDIRS)' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' AR='${AR}' all ); \ + (cd $$i && echo "making $$i..." && \ + $(MAKE) CC='${CC}' PLATFORM='${PLATFORM}' CFLAG='${CFLAG}' SDIRS='$(SDIRS)' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' AR='${AR}' all ) || exit 1; \ done; +Makefile.ssl: Makefile.org + @echo "Makefile.ssl is older than Makefile.org. Rerun Configuration" + @echo "and do a make links and a make errors." + @false + libclean: /bin/rm *.a */lib */*/lib @@ -205,8 +210,8 @@ clean: /bin/rm -f shlib/*.o *.o core a.out fluff *.map @for i in $(DIRS) ;\ do \ - (cd $$i; echo "cleaning $$i..."; \ - $(MAKE) SDIRS='${SDIRS}' clean ); \ + (cd $$i && echo "cleaning $$i..." && \ + $(MAKE) SDIRS='${SDIRS}' clean ) || exit 1; \ /bin/rm -f $(LIBS); \ done; /bin/rm -f *.a *.o speed.* *.map *.so .pure core @@ -224,8 +229,8 @@ files: MINFO perl $(TOP)/util/files.pl Makefile.ssl > $(TOP)/MINFO @for i in $(DIRS) ;\ do \ - (cd $$i; echo "making 'files' in $$i..."; \ - $(MAKE) SDIRS='${SDIRS}' files ); \ + (cd $$i && echo "making 'files' in $$i..." && \ + $(MAKE) SDIRS='${SDIRS}' files ) || exit 1; \ done; links: @@ -234,55 +239,55 @@ links: $(TOP)/util/mklink.sh include $(EXHEADER) @for i in $(DIRS) ;\ do \ - (cd $$i; echo "making links in $$i..."; \ - $(MAKE) SDIRS='${SDIRS}' links ); \ + (cd $$i && echo "making links in $$i..." && \ + $(MAKE) SDIRS='${SDIRS}' links ) || exit 1; \ done; - @(SSLEAY="`pwd`/apps/ssleay"; export SSLEAY; sh tools/c_rehash certs) + @(OPENSSL="`pwd`/apps/openssl"; export OPENSSL; sh tools/c_rehash certs) dclean: /bin/rm -f *.bak @for i in $(DIRS) ;\ do \ - (cd $$i; echo "undoing makedepend in $$i..."; \ - $(MAKE) SDIRS='${SDIRS}' dclean ); \ + (cd $$i && echo "undoing makedepend in $$i..." && \ + $(MAKE) SDIRS='${SDIRS}' dclean ) || exit 1; \ done; rehash: - @(PATH="`pwd`/apps:${PATH}"; sh tools/c_rehash certs) + @(OPENSSL="`pwd`/apps/openssl"; export OPENSSL; sh tools/c_rehash certs) test: tests tests: - (cd test; echo "testing $$i..."; \ + (cd test && echo "testing $$i..." && \ $(MAKE) CC='${CC}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SDIRS='${SDIRS}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' AR='${AR}' tests ); - @apps/ssleay version -a + @apps/openssl version -a depend: @for i in $(DIRS) ;\ do \ - (cd $$i; echo "making dependancies $$i..."; \ - $(MAKE) SDIRS='${SDIRS}' depend ); \ + (cd $$i && echo "making dependancies $$i..." && \ + $(MAKE) SDIRS='${SDIRS}' depend ) || exit 1; \ done; lint: @for i in $(DIRS) ;\ do \ - (cd $$i; echo "making lint $$i..."; \ - $(MAKE) SDIRS='${SDIRS}' lint ); \ + (cd $$i && echo "making lint $$i..." && \ + $(MAKE) SDIRS='${SDIRS}' lint ) || exit 1; \ done; tags: @for i in $(DIRS) ;\ do \ - (cd $$i; echo "making tags $$i..."; \ - $(MAKE) SDIRS='${SDIRS}' tags ); \ + (cd $$i && echo "making tags $$i..." && \ + $(MAKE) SDIRS='${SDIRS}' tags ) || exit 1; \ done; errors: @for i in $(DIRS) ;\ do \ - (cd $$i; echo "making errors in $$i..."; \ - $(MAKE) SDIRS='${SDIRS}' errors ); \ + (cd $$i && echo "making errors in $$i..." && \ + $(MAKE) SDIRS='${SDIRS}' errors ) || exit 1; \ done; tar: