mirror of
https://github.com/openssl/openssl.git
synced 2024-11-27 05:21:51 +08:00
a7b42009c4
sooner and the programs get built against the shared libraries. This requires a bit more work. Things like -rpath and the possibility to still link the programs statically should be included. Some cleanup is also needed. This will be worked on.
215 lines
9.3 KiB
Makefile
215 lines
9.3 KiB
Makefile
#
|
|
# SSLeay/crypto/Makefile
|
|
#
|
|
|
|
DIR= crypto
|
|
TOP= ..
|
|
CC= cc
|
|
INCLUDE= -I. -I$(TOP) -I../include
|
|
INCLUDES= -I.. -I../.. -I../../include
|
|
CFLAG= -g
|
|
INSTALL_PREFIX=
|
|
OPENSSLDIR= /usr/local/ssl
|
|
INSTALLTOP= /usr/local/ssl
|
|
MAKE= make -f Makefile.ssl
|
|
MAKEDEPPROG= makedepend
|
|
MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
|
|
MAKEFILE= Makefile.ssl
|
|
RM= rm -f
|
|
AR= ar r
|
|
|
|
PEX_LIBS=
|
|
EX_LIBS=
|
|
|
|
CFLAGS= $(INCLUDE) $(CFLAG)
|
|
|
|
|
|
LIBS=
|
|
|
|
SDIRS= md2 md5 sha mdc2 hmac ripemd \
|
|
des rc2 rc4 rc5 idea bf cast \
|
|
bn ec rsa dsa dh dso engine rijndael \
|
|
buffer bio stack lhash rand err objects \
|
|
evp asn1 pem x509 x509v3 conf txt_db pkcs7 pkcs12 comp ocsp ui krb5
|
|
|
|
GENERAL=Makefile README crypto-lib.com install.com
|
|
|
|
LIB= $(TOP)/libcrypto.a
|
|
SHARED_LIB= libcrypto$(SHLIB_EXT)
|
|
LIBSRC= cryptlib.c mem.c mem_dbg.c cversion.c ex_data.c tmdiff.c cpt_err.c ebcdic.c uid.c o_time.c
|
|
LIBOBJ= cryptlib.o mem.o mem_dbg.o cversion.o ex_data.o tmdiff.o cpt_err.o ebcdic.o uid.o o_time.o
|
|
|
|
SRC= $(LIBSRC)
|
|
|
|
EXHEADER= crypto.h tmdiff.h opensslv.h opensslconf.h ebcdic.h symhacks.h \
|
|
ossl_typ.h
|
|
HEADER= cryptlib.h buildinf.h md32_common.h o_time.h $(EXHEADER)
|
|
|
|
ALL= $(GENERAL) $(SRC) $(HEADER)
|
|
|
|
top:
|
|
@(cd ..; $(MAKE) DIRS=$(DIR) all)
|
|
|
|
all: buildinf.h lib subdirs shared
|
|
|
|
buildinf.h: ../Makefile.ssl
|
|
( echo "#ifndef MK1MF_BUILD"; \
|
|
echo " /* auto-generated by crypto/Makefile.ssl for crypto/cversion.c */"; \
|
|
echo " #define CFLAGS \"$(CC) $(CFLAG)\""; \
|
|
echo " #define PLATFORM \"$(PLATFORM)\""; \
|
|
echo " #define DATE \"`date`\""; \
|
|
echo "#endif" ) >buildinf.h
|
|
|
|
testapps:
|
|
if echo ${SDIRS} | fgrep ' des '; \
|
|
then cd des && $(MAKE) CC='$(CC)' INCLUDES='${INCLUDES}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' AR='${AR}' PROCESSOR='${PROCESSOR}' PERL='${PERL}' RANLIB='${RANLIB}' des; fi
|
|
cd pkcs7 && $(MAKE) CC='$(CC)' INCLUDES='${INCLUDES}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' AR='${AR}' PROCESSOR='${PROCESSOR}' PERL='${PERL}' RANLIB='${RANLIB}' testapps
|
|
|
|
subdirs:
|
|
@for i in $(SDIRS) ;\
|
|
do \
|
|
(cd $$i && echo "making all in crypto/$$i..." && \
|
|
$(MAKE) CC='$(CC)' INCLUDES='${INCLUDES}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' AR='${AR}' PROCESSOR='${PROCESSOR}' PERL='${PERL}' RANLIB='${RANLIB}' all ) || exit 1; \
|
|
done;
|
|
|
|
files:
|
|
$(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
|
|
@for i in $(SDIRS) ;\
|
|
do \
|
|
(cd $$i && echo "making 'files' in crypto/$$i..." && \
|
|
$(MAKE) PERL='${PERL}' files ); \
|
|
done;
|
|
|
|
links:
|
|
@$(TOP)/util/point.sh Makefile.ssl Makefile
|
|
@$(PERL) $(TOP)/util/mklink.pl ../include/openssl $(EXHEADER)
|
|
@$(PERL) $(TOP)/util/mklink.pl ../test $(TEST)
|
|
@$(PERL) $(TOP)/util/mklink.pl ../apps $(APPS)
|
|
@$(TOP)/util/point.sh Makefile.ssl Makefile
|
|
@for i in $(SDIRS); do \
|
|
(cd $$i && echo "making links in crypto/$$i..." && \
|
|
$(MAKE) CC='$(CC)' INCLUDES='${INCLUDES}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' AR='${AR}' PERL='${PERL}' links ); \
|
|
done;
|
|
|
|
lib: $(LIBOBJ)
|
|
$(AR) $(LIB) $(LIBOBJ)
|
|
$(RANLIB) $(LIB) || echo Never mind.
|
|
@touch lib
|
|
|
|
shared:
|
|
if [ -n "$(SHARED_LIBS)" ]; then \
|
|
(cd ..; make $(SHARED_LIB)); \
|
|
fi
|
|
|
|
libs:
|
|
@for i in $(SDIRS) ;\
|
|
do \
|
|
(cd $$i && echo "making libs in crypto/$$i..." && \
|
|
$(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALL_PREFIX='${INSTALL_PREFIX}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' AR='${AR}' lib ); \
|
|
done;
|
|
|
|
tests:
|
|
@for i in $(SDIRS) ;\
|
|
do \
|
|
(cd $$i && echo "making tests in crypto/$$i..." && \
|
|
$(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' AR='${AR}' tests ); \
|
|
done;
|
|
|
|
install:
|
|
@for i in $(EXHEADER) ;\
|
|
do \
|
|
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
|
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
|
done;
|
|
@for i in $(SDIRS) ;\
|
|
do \
|
|
(cd $$i && echo "making install in crypto/$$i..." && \
|
|
$(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALL_PREFIX='${INSTALL_PREFIX}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' install ); \
|
|
done;
|
|
|
|
lint:
|
|
@for i in $(SDIRS) ;\
|
|
do \
|
|
(cd $$i && echo "making lint in crypto/$$i..." && \
|
|
$(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' lint ); \
|
|
done;
|
|
|
|
depend:
|
|
if [ ! -f buildinf.h ]; then touch buildinf.h; fi # fake buildinf.h if it does not exist
|
|
$(MAKEDEPEND) $(INCLUDE) $(DEPFLAG) $(PROGS) $(LIBSRC)
|
|
if [ ! -s buildinf.h ]; then rm buildinf.h; fi
|
|
@for i in $(SDIRS) ;\
|
|
do \
|
|
(cd $$i && echo "making depend in crypto/$$i..." && \
|
|
$(MAKE) MAKEFILE='${MAKEFILE}' INCLUDES='${INCLUDES}' DEPFLAG='${DEPFLAG}' depend ); \
|
|
done;
|
|
|
|
clean:
|
|
rm -f buildinf.h *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
|
@for i in $(SDIRS) ;\
|
|
do \
|
|
(cd $$i && echo "making clean in crypto/$$i..." && \
|
|
$(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' clean ); \
|
|
done;
|
|
|
|
dclean:
|
|
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
|
mv -f Makefile.new $(MAKEFILE)
|
|
@for i in $(SDIRS) ;\
|
|
do \
|
|
(cd $$i && echo "making dclean in crypto/$$i..." && \
|
|
$(MAKE) PERL='${PERL}' CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' dclean ); \
|
|
done;
|
|
|
|
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
|
|
|
cpt_err.o: ../include/openssl/bio.h ../include/openssl/crypto.h
|
|
cpt_err.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
|
cpt_err.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h
|
|
cpt_err.o: ../include/openssl/opensslv.h ../include/openssl/safestack.h
|
|
cpt_err.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cpt_err.c
|
|
cryptlib.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
|
|
cryptlib.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
|
|
cryptlib.o: ../include/openssl/err.h ../include/openssl/lhash.h
|
|
cryptlib.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
|
|
cryptlib.o: ../include/openssl/safestack.h ../include/openssl/stack.h
|
|
cryptlib.o: ../include/openssl/symhacks.h cryptlib.c cryptlib.h
|
|
cversion.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
|
|
cversion.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
|
|
cversion.o: ../include/openssl/err.h ../include/openssl/lhash.h
|
|
cversion.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
|
|
cversion.o: ../include/openssl/safestack.h ../include/openssl/stack.h
|
|
cversion.o: ../include/openssl/symhacks.h buildinf.h cryptlib.h cversion.c
|
|
ebcdic.o: ../include/openssl/opensslconf.h ebcdic.c
|
|
ex_data.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
|
|
ex_data.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
|
|
ex_data.o: ../include/openssl/err.h ../include/openssl/lhash.h
|
|
ex_data.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
|
|
ex_data.o: ../include/openssl/safestack.h ../include/openssl/stack.h
|
|
ex_data.o: ../include/openssl/symhacks.h cryptlib.h ex_data.c
|
|
mem.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
|
|
mem.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
|
|
mem.o: ../include/openssl/err.h ../include/openssl/lhash.h
|
|
mem.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
|
|
mem.o: ../include/openssl/safestack.h ../include/openssl/stack.h
|
|
mem.o: ../include/openssl/symhacks.h cryptlib.h mem.c
|
|
mem_dbg.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
|
|
mem_dbg.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
|
|
mem_dbg.o: ../include/openssl/err.h ../include/openssl/lhash.h
|
|
mem_dbg.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
|
|
mem_dbg.o: ../include/openssl/safestack.h ../include/openssl/stack.h
|
|
mem_dbg.o: ../include/openssl/symhacks.h cryptlib.h mem_dbg.c
|
|
o_time.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h o_time.c
|
|
o_time.o: o_time.h
|
|
tmdiff.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
|
|
tmdiff.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
|
|
tmdiff.o: ../include/openssl/err.h ../include/openssl/lhash.h
|
|
tmdiff.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
|
|
tmdiff.o: ../include/openssl/safestack.h ../include/openssl/stack.h
|
|
tmdiff.o: ../include/openssl/symhacks.h ../include/openssl/tmdiff.h cryptlib.h
|
|
tmdiff.o: tmdiff.c
|
|
uid.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
|
|
uid.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
|
|
uid.o: ../include/openssl/safestack.h ../include/openssl/stack.h
|
|
uid.o: ../include/openssl/symhacks.h uid.c
|