1998-12-21 10:52:47 +00:00
|
|
|
#
|
|
|
|
# SSLeay/crypto/Makefile
|
|
|
|
#
|
|
|
|
|
|
|
|
DIR= crypto
|
|
|
|
TOP= ..
|
|
|
|
CC= cc
|
|
|
|
INCLUDE= -I. -I../include
|
|
|
|
INCLUDES= -I.. -I../../include
|
|
|
|
CFLAG= -g
|
1999-04-29 21:52:08 +00:00
|
|
|
INSTALL_PREFIX=
|
|
|
|
OPENSSLDIR= /usr/local/ssl
|
1998-12-21 10:52:47 +00:00
|
|
|
INSTALLTOP= /usr/local/ssl
|
|
|
|
MAKE= make -f Makefile.ssl
|
1999-01-19 21:36:31 +00:00
|
|
|
MAKEDEPEND= $(TOP)/util/domd $(TOP)
|
1998-12-21 10:52:47 +00:00
|
|
|
MAKEFILE= Makefile.ssl
|
1999-03-06 12:32:06 +00:00
|
|
|
RM= rm -f
|
1998-12-21 10:52:47 +00:00
|
|
|
AR= ar r
|
|
|
|
|
|
|
|
PEX_LIBS=
|
|
|
|
EX_LIBS=
|
|
|
|
|
1999-07-21 20:49:15 +00:00
|
|
|
CFLAGS= $(INCLUDE) $(CFLAG)
|
1998-12-21 10:52:47 +00:00
|
|
|
|
1998-12-21 10:56:39 +00:00
|
|
|
|
1998-12-21 10:52:47 +00:00
|
|
|
LIBS=
|
|
|
|
|
1998-12-21 10:56:39 +00:00
|
|
|
SDIRS= md2 md5 sha mdc2 hmac ripemd \
|
|
|
|
des rc2 rc4 rc5 idea bf cast \
|
2000-04-04 22:32:19 +00:00
|
|
|
bn rsa dsa dh dso \
|
1998-12-21 10:52:47 +00:00
|
|
|
buffer bio stack lhash rand err objects \
|
1999-03-28 23:17:34 +00:00
|
|
|
evp asn1 pem x509 x509v3 conf txt_db pkcs7 pkcs12 comp
|
1998-12-21 10:52:47 +00:00
|
|
|
|
1999-05-13 11:37:32 +00:00
|
|
|
GENERAL=Makefile README crypto-lib.com install.com
|
1998-12-21 10:52:47 +00:00
|
|
|
|
|
|
|
LIB= $(TOP)/libcrypto.a
|
2000-02-01 02:21:16 +00:00
|
|
|
LIBSRC= cryptlib.c mem.c mem_dbg.c cversion.c ex_data.c tmdiff.c cpt_err.c ebcdic.c
|
|
|
|
LIBOBJ= cryptlib.o mem.o mem_dbg.o cversion.o ex_data.o tmdiff.o cpt_err.o ebcdic.o
|
1998-12-21 10:52:47 +00:00
|
|
|
|
|
|
|
SRC= $(LIBSRC)
|
|
|
|
|
2000-09-07 08:18:05 +00:00
|
|
|
EXHEADER= crypto.h tmdiff.h opensslv.h opensslconf.h ebcdic.h symhacks.h
|
2000-03-20 13:40:16 +00:00
|
|
|
HEADER= cryptlib.h buildinf.h md32_common.h $(EXHEADER)
|
1998-12-21 10:52:47 +00:00
|
|
|
|
|
|
|
ALL= $(GENERAL) $(SRC) $(HEADER)
|
|
|
|
|
|
|
|
top:
|
|
|
|
@(cd ..; $(MAKE) DIRS=$(DIR) all)
|
|
|
|
|
1999-07-21 20:49:15 +00:00
|
|
|
all: buildinf.h lib subdirs
|
1998-12-21 10:52:47 +00:00
|
|
|
|
1999-07-21 20:49:15 +00:00
|
|
|
buildinf.h: ../Makefile.ssl
|
1999-07-29 12:57:23 +00:00
|
|
|
( 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
|
1998-12-21 10:52:47 +00:00
|
|
|
|
1999-08-28 12:50:48 +00:00
|
|
|
testapps:
|
2000-01-07 12:15:54 +00:00
|
|
|
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
|
1999-09-10 16:13:24 +00:00
|
|
|
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
|
1999-08-28 12:50:48 +00:00
|
|
|
|
1998-12-21 10:52:47 +00:00
|
|
|
subdirs:
|
|
|
|
@for i in $(SDIRS) ;\
|
|
|
|
do \
|
1999-03-06 12:32:06 +00:00
|
|
|
(cd $$i && echo "making all in crypto/$$i..." && \
|
1999-04-22 19:24:18 +00:00
|
|
|
$(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; \
|
1998-12-21 10:52:47 +00:00
|
|
|
done;
|
|
|
|
|
|
|
|
files:
|
1999-04-01 12:34:33 +00:00
|
|
|
$(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
|
1998-12-21 10:52:47 +00:00
|
|
|
@for i in $(SDIRS) ;\
|
|
|
|
do \
|
1999-03-06 12:32:06 +00:00
|
|
|
(cd $$i; echo "making 'files' in crypto/$$i..."; \
|
1999-05-08 10:40:01 +00:00
|
|
|
$(MAKE) PERL='${PERL}' files ); \
|
1998-12-21 10:52:47 +00:00
|
|
|
done;
|
|
|
|
|
|
|
|
links:
|
1999-03-06 12:32:06 +00:00
|
|
|
@$(TOP)/util/point.sh Makefile.ssl Makefile
|
1999-04-29 12:46:59 +00:00
|
|
|
@$(PERL) $(TOP)/util/mklink.pl ../include/openssl $(EXHEADER)
|
|
|
|
@$(PERL) $(TOP)/util/mklink.pl ../test $(TEST)
|
|
|
|
@$(PERL) $(TOP)/util/mklink.pl ../apps $(APPS)
|
1999-03-06 12:32:06 +00:00
|
|
|
@$(TOP)/util/point.sh Makefile.ssl Makefile
|
|
|
|
@for i in $(SDIRS); do \
|
|
|
|
(cd $$i; echo "making links in crypto/$$i..."; \
|
1999-04-29 13:10:45 +00:00
|
|
|
$(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 ); \
|
1998-12-21 10:52:47 +00:00
|
|
|
done;
|
|
|
|
|
|
|
|
lib: $(LIBOBJ)
|
|
|
|
$(AR) $(LIB) $(LIBOBJ)
|
1999-04-01 12:34:33 +00:00
|
|
|
$(RANLIB) $(LIB)
|
1998-12-21 10:52:47 +00:00
|
|
|
@touch lib
|
|
|
|
|
|
|
|
libs:
|
|
|
|
@for i in $(SDIRS) ;\
|
|
|
|
do \
|
1999-03-06 12:32:06 +00:00
|
|
|
(cd $$i; echo "making libs in crypto/$$i..."; \
|
1999-04-29 21:52:08 +00:00
|
|
|
$(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALL_PREFIX='${INSTALL_PREFIX}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' AR='${AR}' lib ); \
|
1998-12-21 10:52:47 +00:00
|
|
|
done;
|
|
|
|
|
|
|
|
tests:
|
|
|
|
@for i in $(SDIRS) ;\
|
|
|
|
do \
|
1999-03-06 12:32:06 +00:00
|
|
|
(cd $$i; echo "making tests in crypto/$$i..."; \
|
1998-12-21 10:52:47 +00:00
|
|
|
$(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 \
|
1999-04-29 21:52:08 +00:00
|
|
|
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
|
|
|
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
1998-12-21 10:52:47 +00:00
|
|
|
done;
|
|
|
|
@for i in $(SDIRS) ;\
|
|
|
|
do \
|
1999-03-06 12:32:06 +00:00
|
|
|
(cd $$i; echo "making install in crypto/$$i..."; \
|
1999-05-28 23:27:09 +00:00
|
|
|
$(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALL_PREFIX='${INSTALL_PREFIX}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' install ); \
|
1998-12-21 10:52:47 +00:00
|
|
|
done;
|
|
|
|
|
|
|
|
lint:
|
|
|
|
@for i in $(SDIRS) ;\
|
|
|
|
do \
|
1999-03-06 12:32:06 +00:00
|
|
|
(cd $$i; echo "making lint in crypto/$$i..."; \
|
1998-12-21 10:52:47 +00:00
|
|
|
$(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' lint ); \
|
|
|
|
done;
|
|
|
|
|
|
|
|
depend:
|
1999-09-10 15:34:55 +00:00
|
|
|
if [ ! -f buildinf.h ]; then touch buildinf.h; fi # fake buildinf.h if it does not exist
|
1999-04-27 01:14:46 +00:00
|
|
|
$(MAKEDEPEND) $(INCLUDE) $(DEPFLAG) $(PROGS) $(LIBSRC)
|
1999-08-02 21:44:49 +00:00
|
|
|
if [ ! -s buildinf.h ]; then rm buildinf.h; fi
|
1998-12-21 10:52:47 +00:00
|
|
|
@for i in $(SDIRS) ;\
|
|
|
|
do \
|
1999-03-06 12:32:06 +00:00
|
|
|
(cd $$i; echo "making depend in crypto/$$i..."; \
|
1999-04-27 01:14:46 +00:00
|
|
|
$(MAKE) MAKEFILE='${MAKEFILE}' INCLUDES='${INCLUDES}' DEPFLAG='${DEPFLAG}' depend ); \
|
1998-12-21 10:52:47 +00:00
|
|
|
done;
|
|
|
|
|
|
|
|
clean:
|
1999-07-29 12:57:23 +00:00
|
|
|
rm -f buildinf.h *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
1998-12-21 10:52:47 +00:00
|
|
|
@for i in $(SDIRS) ;\
|
|
|
|
do \
|
1999-03-06 12:32:06 +00:00
|
|
|
(cd $$i; echo "making clean in crypto/$$i..."; \
|
1998-12-21 10:52:47 +00:00
|
|
|
$(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' clean ); \
|
|
|
|
done;
|
|
|
|
|
|
|
|
dclean:
|
1999-04-01 12:34:33 +00:00
|
|
|
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
1998-12-21 10:52:47 +00:00
|
|
|
mv -f Makefile.new $(MAKEFILE)
|
|
|
|
@for i in $(SDIRS) ;\
|
|
|
|
do \
|
1999-03-06 12:32:06 +00:00
|
|
|
(cd $$i; echo "making dclean in crypto/$$i..."; \
|
1999-04-28 22:15:13 +00:00
|
|
|
$(MAKE) PERL='${PERL}' CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' dclean ); \
|
1998-12-21 10:52:47 +00:00
|
|
|
done;
|
|
|
|
|
|
|
|
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
1999-03-06 14:32:48 +00:00
|
|
|
|
2000-06-13 12:59:38 +00:00
|
|
|
cpt_err.o: ../include/openssl/bio.h ../include/openssl/crypto.h
|
|
|
|
cpt_err.o: ../include/openssl/err.h ../include/openssl/lhash.h
|
2000-01-23 23:41:49 +00:00
|
|
|
cpt_err.o: ../include/openssl/opensslv.h ../include/openssl/safestack.h
|
|
|
|
cpt_err.o: ../include/openssl/stack.h
|
1999-05-21 11:16:48 +00:00
|
|
|
cryptlib.o: ../include/openssl/bio.h ../include/openssl/buffer.h
|
|
|
|
cryptlib.o: ../include/openssl/crypto.h ../include/openssl/e_os.h
|
|
|
|
cryptlib.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
2000-06-13 12:59:38 +00:00
|
|
|
cryptlib.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h
|
|
|
|
cryptlib.o: ../include/openssl/opensslv.h ../include/openssl/safestack.h
|
|
|
|
cryptlib.o: ../include/openssl/stack.h cryptlib.h
|
1999-05-21 11:16:48 +00:00
|
|
|
cversion.o: ../include/openssl/bio.h ../include/openssl/buffer.h
|
|
|
|
cversion.o: ../include/openssl/crypto.h ../include/openssl/e_os.h
|
|
|
|
cversion.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
2000-06-13 12:59:38 +00:00
|
|
|
cversion.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h
|
|
|
|
cversion.o: ../include/openssl/opensslv.h ../include/openssl/safestack.h
|
|
|
|
cversion.o: ../include/openssl/stack.h buildinf.h cryptlib.h
|
1999-05-21 11:16:48 +00:00
|
|
|
ex_data.o: ../include/openssl/bio.h ../include/openssl/buffer.h
|
|
|
|
ex_data.o: ../include/openssl/crypto.h ../include/openssl/e_os.h
|
|
|
|
ex_data.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
|
|
|
ex_data.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h
|
2000-01-23 23:41:49 +00:00
|
|
|
ex_data.o: ../include/openssl/opensslv.h ../include/openssl/safestack.h
|
|
|
|
ex_data.o: ../include/openssl/stack.h cryptlib.h
|
1999-05-21 11:16:48 +00:00
|
|
|
mem.o: ../include/openssl/bio.h ../include/openssl/buffer.h
|
|
|
|
mem.o: ../include/openssl/crypto.h ../include/openssl/e_os.h
|
|
|
|
mem.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
2000-06-13 12:59:38 +00:00
|
|
|
mem.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h
|
|
|
|
mem.o: ../include/openssl/opensslv.h ../include/openssl/safestack.h
|
|
|
|
mem.o: ../include/openssl/stack.h cryptlib.h
|
1999-12-17 12:56:24 +00:00
|
|
|
mem_dbg.o: ../include/openssl/bio.h ../include/openssl/buffer.h
|
|
|
|
mem_dbg.o: ../include/openssl/crypto.h ../include/openssl/e_os.h
|
|
|
|
mem_dbg.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
|
|
|
mem_dbg.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h
|
2000-01-23 23:41:49 +00:00
|
|
|
mem_dbg.o: ../include/openssl/opensslv.h ../include/openssl/safestack.h
|
|
|
|
mem_dbg.o: ../include/openssl/stack.h cryptlib.h
|
1999-05-21 11:16:48 +00:00
|
|
|
tmdiff.o: ../include/openssl/bio.h ../include/openssl/buffer.h
|
|
|
|
tmdiff.o: ../include/openssl/crypto.h ../include/openssl/e_os.h
|
|
|
|
tmdiff.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
2000-06-13 12:59:38 +00:00
|
|
|
tmdiff.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h
|
|
|
|
tmdiff.o: ../include/openssl/opensslv.h ../include/openssl/safestack.h
|
|
|
|
tmdiff.o: ../include/openssl/stack.h ../include/openssl/tmdiff.h cryptlib.h
|