Second round of fixing the OpenSSL perl/ stuff. It now at least compiled fine
[openssl.git] / Makefile.org
index 90828b0cc5959299fd41d71a3810e795d14f29b9..fbf293c76286006e69bc788abdf7fb44efc444e8 100644 (file)
@@ -1,6 +1,6 @@
 #
 # Makefile for all the SSL related library routines and utilities
 #
 # Makefile for all the SSL related library routines and utilities
-VERSION = 0.9.1c
+VERSION = 0.9.2
 PLATFORM=FreeBSD
 #
 # make install will install:
 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 \
        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
 
 # If you change the INSTALLTOP, make sure to also change the values
 # in crypto/location.h
@@ -184,36 +184,41 @@ WTARFILE=       $(NAME)-win.tar
 EXHEADER=       e_os.h
 HEADER=         e_os.h
 
 EXHEADER=       e_os.h
 HEADER=         e_os.h
 
-all:
+all: Makefile.ssl
        @for i in $(DIRS) ;\
        do \
        @for i in $(DIRS) ;\
        do \
-       (cd $$i && echo "making $$i..." && \
+       (cd $$i && echo "making all in $$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 \
        $(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..." && \
+       (cd $$i && echo "making all in $$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;
 
        $(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 Configure"
+       @echo "and do a make links and a make errors."
+       @false
+
 libclean:
 libclean:
-       /bin/rm *.a */lib */*/lib
+       rm -f *.a */lib */*/lib
 
 clean:
 
 clean:
-       /bin/rm -f shlib/*.o *.o core a.out fluff *.map
+       rm -f shlib/*.o *.o core a.out fluff *.map
        @for i in $(DIRS) ;\
        do \
        @for i in $(DIRS) ;\
        do \
-       (cd $$i && echo "cleaning $$i..." && \
+       (cd $$i && echo "making clean in $$i..." && \
        $(MAKE) SDIRS='${SDIRS}' clean ) || exit 1; \
        $(MAKE) SDIRS='${SDIRS}' clean ) || exit 1; \
-       /bin/rm -f $(LIBS); \
+       rm -f $(LIBS); \
        done;
        done;
-       /bin/rm -f *.a *.o speed.* *.map *.so .pure core
-       /bin/rm -f $(TARFILE)
+       rm -f *.a *.o speed.* *.map *.so .pure core
+       rm -f $(TARFILE)
        @for i in $(ONEDIRS) ;\
        do \
        @for i in $(ONEDIRS) ;\
        do \
-       /bin/rm -fr $$i/*; \
+       rm -fr $$i/*; \
        done
 
 makefile.one: files
        done
 
 makefile.one: files
@@ -229,31 +234,29 @@ files:  MINFO
        done;
 
 links:
        done;
 
 links:
-       /bin/rm -f Makefile
-       ./util/point.sh Makefile.ssl Makefile
-       $(TOP)/util/mklink.sh include $(EXHEADER)
-       @for i in $(DIRS) ;\
-       do \
+       @$(TOP)/util/point.sh Makefile.ssl Makefile
+       @$(TOP)/util/mklink.sh include $(EXHEADER)
+       @for i in $(DIRS); do \
        (cd $$i && echo "making links in $$i..." && \
        $(MAKE) SDIRS='${SDIRS}' links ) || exit 1; \
        done;
        (cd $$i && echo "making links in $$i..." && \
        $(MAKE) SDIRS='${SDIRS}' links ) || exit 1; \
        done;
-       @(SSLEAY="`pwd`/apps/openssl"; export SSLEAY; sh tools/c_rehash certs)
+       @(OPENSSL="`pwd`/apps/openssl"; export OPENSSL; sh tools/c_rehash certs)
 
 dclean:
 
 dclean:
-       /bin/rm -f *.bak
+       rm -f *.bak
        @for i in $(DIRS) ;\
        do \
        @for i in $(DIRS) ;\
        do \
-       (cd $$i && echo "undoing makedepend in $$i..." && \
+       (cd $$i && echo "making dclean in $$i..." && \
        $(MAKE) SDIRS='${SDIRS}' dclean ) || exit 1; \
        done;
 
 rehash:
        $(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:
 
 test:   tests
 
 tests:
-       (cd test && echo "testing $$i..." && \
+       @(cd test && echo "testing..." && \
        $(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/openssl version -a
 
        $(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/openssl version -a