diff options
Diffstat (limited to 'src/lib/libcrypto/Attic/Makefile')
-rw-r--r-- | src/lib/libcrypto/Attic/Makefile | 36 |
1 files changed, 26 insertions, 10 deletions
diff --git a/src/lib/libcrypto/Attic/Makefile b/src/lib/libcrypto/Attic/Makefile index f4813d3aaa..c0b6e906a8 100644 --- a/src/lib/libcrypto/Attic/Makefile +++ b/src/lib/libcrypto/Attic/Makefile | |||
@@ -34,8 +34,8 @@ SDIRS= md2 md5 sha mdc2 hmac ripemd \ | |||
34 | GENERAL=Makefile README crypto-lib.com install.com | 34 | GENERAL=Makefile README crypto-lib.com install.com |
35 | 35 | ||
36 | LIB= $(TOP)/libcrypto.a | 36 | LIB= $(TOP)/libcrypto.a |
37 | LIBSRC= cryptlib.c mem.c cversion.c ex_data.c tmdiff.c cpt_err.c | 37 | LIBSRC= cryptlib.c mem.c mem_dbg.c cversion.c ex_data.c tmdiff.c cpt_err.c ebcdic.c |
38 | LIBOBJ= cryptlib.o mem.o cversion.o ex_data.o tmdiff.o cpt_err.o | 38 | LIBOBJ= cryptlib.o mem.o mem_dbg.o cversion.o ex_data.o tmdiff.o cpt_err.o ebcdic.o |
39 | 39 | ||
40 | SRC= $(LIBSRC) | 40 | SRC= $(LIBSRC) |
41 | 41 | ||
@@ -57,6 +57,11 @@ buildinf.h: ../Makefile.ssl | |||
57 | echo " #define DATE \"`date`\""; \ | 57 | echo " #define DATE \"`date`\""; \ |
58 | echo "#endif" ) >buildinf.h | 58 | echo "#endif" ) >buildinf.h |
59 | 59 | ||
60 | testapps: | ||
61 | if echo ${SDIRS} | fgrep ' des '; \ | ||
62 | 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 | ||
63 | 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 | ||
64 | |||
60 | subdirs: | 65 | subdirs: |
61 | @for i in $(SDIRS) ;\ | 66 | @for i in $(SDIRS) ;\ |
62 | do \ | 67 | do \ |
@@ -122,7 +127,7 @@ lint: | |||
122 | done; | 127 | done; |
123 | 128 | ||
124 | depend: | 129 | depend: |
125 | if [ ! -e buildinf.h ]; then touch buildinf.h; fi # fake buildinf.h if it does not exist | 130 | if [ ! -f buildinf.h ]; then touch buildinf.h; fi # fake buildinf.h if it does not exist |
126 | $(MAKEDEPEND) $(INCLUDE) $(DEPFLAG) $(PROGS) $(LIBSRC) | 131 | $(MAKEDEPEND) $(INCLUDE) $(DEPFLAG) $(PROGS) $(LIBSRC) |
127 | if [ ! -s buildinf.h ]; then rm buildinf.h; fi | 132 | if [ ! -s buildinf.h ]; then rm buildinf.h; fi |
128 | @for i in $(SDIRS) ;\ | 133 | @for i in $(SDIRS) ;\ |
@@ -151,29 +156,40 @@ dclean: | |||
151 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 156 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
152 | 157 | ||
153 | cpt_err.o: ../include/openssl/crypto.h ../include/openssl/err.h | 158 | cpt_err.o: ../include/openssl/crypto.h ../include/openssl/err.h |
154 | cpt_err.o: ../include/openssl/opensslv.h ../include/openssl/stack.h | 159 | cpt_err.o: ../include/openssl/opensslv.h ../include/openssl/safestack.h |
160 | cpt_err.o: ../include/openssl/stack.h | ||
155 | cryptlib.o: ../include/openssl/bio.h ../include/openssl/buffer.h | 161 | cryptlib.o: ../include/openssl/bio.h ../include/openssl/buffer.h |
156 | cryptlib.o: ../include/openssl/crypto.h ../include/openssl/e_os.h | 162 | cryptlib.o: ../include/openssl/crypto.h ../include/openssl/e_os.h |
157 | cryptlib.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 163 | cryptlib.o: ../include/openssl/e_os2.h ../include/openssl/err.h |
158 | cryptlib.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 164 | cryptlib.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
159 | cryptlib.o: ../include/openssl/stack.h cryptlib.h | 165 | cryptlib.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
166 | cryptlib.o: cryptlib.h | ||
160 | cversion.o: ../include/openssl/bio.h ../include/openssl/buffer.h | 167 | cversion.o: ../include/openssl/bio.h ../include/openssl/buffer.h |
161 | cversion.o: ../include/openssl/crypto.h ../include/openssl/e_os.h | 168 | cversion.o: ../include/openssl/crypto.h ../include/openssl/e_os.h |
162 | cversion.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 169 | cversion.o: ../include/openssl/e_os2.h ../include/openssl/err.h |
163 | cversion.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 170 | cversion.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
164 | cversion.o: ../include/openssl/stack.h buildinf.h cryptlib.h | 171 | cversion.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
172 | cversion.o: buildinf.h cryptlib.h | ||
165 | ex_data.o: ../include/openssl/bio.h ../include/openssl/buffer.h | 173 | ex_data.o: ../include/openssl/bio.h ../include/openssl/buffer.h |
166 | ex_data.o: ../include/openssl/crypto.h ../include/openssl/e_os.h | 174 | ex_data.o: ../include/openssl/crypto.h ../include/openssl/e_os.h |
167 | ex_data.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 175 | ex_data.o: ../include/openssl/e_os2.h ../include/openssl/err.h |
168 | ex_data.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h | 176 | ex_data.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h |
169 | ex_data.o: ../include/openssl/opensslv.h ../include/openssl/stack.h cryptlib.h | 177 | ex_data.o: ../include/openssl/opensslv.h ../include/openssl/safestack.h |
178 | ex_data.o: ../include/openssl/stack.h cryptlib.h | ||
170 | mem.o: ../include/openssl/bio.h ../include/openssl/buffer.h | 179 | mem.o: ../include/openssl/bio.h ../include/openssl/buffer.h |
171 | mem.o: ../include/openssl/crypto.h ../include/openssl/e_os.h | 180 | mem.o: ../include/openssl/crypto.h ../include/openssl/e_os.h |
172 | mem.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 181 | mem.o: ../include/openssl/e_os2.h ../include/openssl/err.h |
173 | mem.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h | 182 | mem.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
174 | mem.o: ../include/openssl/opensslv.h ../include/openssl/stack.h cryptlib.h | 183 | mem.o: ../include/openssl/safestack.h ../include/openssl/stack.h cryptlib.h |
184 | mem_dbg.o: ../include/openssl/bio.h ../include/openssl/buffer.h | ||
185 | mem_dbg.o: ../include/openssl/crypto.h ../include/openssl/e_os.h | ||
186 | mem_dbg.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
187 | mem_dbg.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h | ||
188 | mem_dbg.o: ../include/openssl/opensslv.h ../include/openssl/safestack.h | ||
189 | mem_dbg.o: ../include/openssl/stack.h cryptlib.h | ||
175 | tmdiff.o: ../include/openssl/bio.h ../include/openssl/buffer.h | 190 | tmdiff.o: ../include/openssl/bio.h ../include/openssl/buffer.h |
176 | tmdiff.o: ../include/openssl/crypto.h ../include/openssl/e_os.h | 191 | tmdiff.o: ../include/openssl/crypto.h ../include/openssl/e_os.h |
177 | tmdiff.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 192 | tmdiff.o: ../include/openssl/e_os2.h ../include/openssl/err.h |
178 | tmdiff.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 193 | tmdiff.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
179 | tmdiff.o: ../include/openssl/stack.h ../include/openssl/tmdiff.h cryptlib.h | 194 | tmdiff.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
195 | tmdiff.o: ../include/openssl/tmdiff.h cryptlib.h | ||