diff options
Diffstat (limited to 'src/lib/libssl/src/crypto/Makefile')
| -rw-r--r-- | src/lib/libssl/src/crypto/Makefile | 30 |
1 files changed, 25 insertions, 5 deletions
diff --git a/src/lib/libssl/src/crypto/Makefile b/src/lib/libssl/src/crypto/Makefile index bb8eaa036c..6557f2b4e1 100644 --- a/src/lib/libssl/src/crypto/Makefile +++ b/src/lib/libssl/src/crypto/Makefile | |||
| @@ -33,8 +33,8 @@ GENERAL=Makefile README crypto-lib.com install.com | |||
| 33 | 33 | ||
| 34 | LIB= $(TOP)/libcrypto.a | 34 | LIB= $(TOP)/libcrypto.a |
| 35 | SHARED_LIB= libcrypto$(SHLIB_EXT) | 35 | SHARED_LIB= libcrypto$(SHLIB_EXT) |
| 36 | LIBSRC= cryptlib.c mem.c mem_clr.c mem_dbg.c cversion.c ex_data.c tmdiff.c cpt_err.c ebcdic.c uid.c o_time.c o_str.c o_dir.c | 36 | LIBSRC= cryptlib.c dyn_lck.c mem.c mem_clr.c mem_dbg.c cversion.c ex_data.c tmdiff.c cpt_err.c ebcdic.c uid.c o_time.c o_str.c o_dir.c o_init.c fips_err.c |
| 37 | LIBOBJ= cryptlib.o mem.o mem_clr.o mem_dbg.o cversion.o ex_data.o tmdiff.o cpt_err.o ebcdic.o uid.o o_time.o o_str.o o_dir.o $(CPUID_OBJ) | 37 | LIBOBJ= cryptlib.o dyn_lck.o mem.o mem_clr.o mem_dbg.o cversion.o ex_data.o tmdiff.o cpt_err.o ebcdic.o uid.o o_time.o o_str.o o_dir.o o_init.o fips_err.o $(CPUID_OBJ) |
| 38 | 38 | ||
| 39 | SRC= $(LIBSRC) | 39 | SRC= $(LIBSRC) |
| 40 | 40 | ||
| @@ -47,7 +47,7 @@ ALL= $(GENERAL) $(SRC) $(HEADER) | |||
| 47 | top: | 47 | top: |
| 48 | @(cd ..; $(MAKE) DIRS=$(DIR) all) | 48 | @(cd ..; $(MAKE) DIRS=$(DIR) all) |
| 49 | 49 | ||
| 50 | all: shared | 50 | all: lib |
| 51 | 51 | ||
| 52 | buildinf.h: ../Makefile | 52 | buildinf.h: ../Makefile |
| 53 | ( echo "#ifndef MK1MF_BUILD"; \ | 53 | ( echo "#ifndef MK1MF_BUILD"; \ |
| @@ -95,10 +95,10 @@ links: | |||
| 95 | @target=links; $(RECURSIVE_MAKE) | 95 | @target=links; $(RECURSIVE_MAKE) |
| 96 | 96 | ||
| 97 | # lib: and $(LIB): are splitted to avoid end-less loop | 97 | # lib: and $(LIB): are splitted to avoid end-less loop |
| 98 | lib: $(LIB) | 98 | lib: buildinf.h $(LIB) subdirs |
| 99 | @touch lib | 99 | @touch lib |
| 100 | $(LIB): $(LIBOBJ) | 100 | $(LIB): $(LIBOBJ) |
| 101 | $(AR) $(LIB) $(LIBOBJ) | 101 | $(ARX) $(LIB) $(LIBOBJ) |
| 102 | $(RANLIB) $(LIB) || echo Never mind. | 102 | $(RANLIB) $(LIB) || echo Never mind. |
| 103 | 103 | ||
| 104 | shared: buildinf.h lib subdirs | 104 | shared: buildinf.h lib subdirs |
| @@ -159,6 +159,13 @@ cversion.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | |||
| 159 | cversion.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h | 159 | cversion.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h |
| 160 | cversion.o: ../include/openssl/stack.h ../include/openssl/symhacks.h buildinf.h | 160 | cversion.o: ../include/openssl/stack.h ../include/openssl/symhacks.h buildinf.h |
| 161 | cversion.o: cryptlib.h cversion.c | 161 | cversion.o: cryptlib.h cversion.c |
| 162 | dyn_lck.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h | ||
| 163 | dyn_lck.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | ||
| 164 | dyn_lck.o: ../include/openssl/err.h ../include/openssl/lhash.h | ||
| 165 | dyn_lck.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 166 | dyn_lck.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h | ||
| 167 | dyn_lck.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.h | ||
| 168 | dyn_lck.o: dyn_lck.c | ||
| 162 | ebcdic.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h ebcdic.c | 169 | ebcdic.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h ebcdic.c |
| 163 | ex_data.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h | 170 | ex_data.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h |
| 164 | ex_data.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | 171 | ex_data.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
| @@ -167,6 +174,13 @@ ex_data.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | |||
| 167 | ex_data.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h | 174 | ex_data.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h |
| 168 | ex_data.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.h | 175 | ex_data.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.h |
| 169 | ex_data.o: ex_data.c | 176 | ex_data.o: ex_data.c |
| 177 | fips_err.o: ../include/openssl/bio.h ../include/openssl/crypto.h | ||
| 178 | fips_err.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 179 | fips_err.o: ../include/openssl/fips.h ../include/openssl/lhash.h | ||
| 180 | fips_err.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 181 | fips_err.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h | ||
| 182 | fips_err.o: ../include/openssl/stack.h ../include/openssl/symhacks.h fips_err.c | ||
| 183 | fips_err.o: fips_err.h | ||
| 170 | mem.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h | 184 | mem.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h |
| 171 | mem.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | 185 | mem.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
| 172 | mem.o: ../include/openssl/err.h ../include/openssl/lhash.h | 186 | mem.o: ../include/openssl/err.h ../include/openssl/lhash.h |
| @@ -187,6 +201,12 @@ mem_dbg.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.h | |||
| 187 | mem_dbg.o: mem_dbg.c | 201 | mem_dbg.o: mem_dbg.c |
| 188 | o_dir.o: ../e_os.h ../include/openssl/e_os2.h ../include/openssl/opensslconf.h | 202 | o_dir.o: ../e_os.h ../include/openssl/e_os2.h ../include/openssl/opensslconf.h |
| 189 | o_dir.o: LPdir_unix.c o_dir.c o_dir.h | 203 | o_dir.o: LPdir_unix.c o_dir.c o_dir.h |
| 204 | o_init.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/crypto.h | ||
| 205 | o_init.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 206 | o_init.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h | ||
| 207 | o_init.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 208 | o_init.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 209 | o_init.o: ../include/openssl/symhacks.h o_init.c | ||
| 190 | o_str.o: ../e_os.h ../include/openssl/e_os2.h ../include/openssl/opensslconf.h | 210 | o_str.o: ../e_os.h ../include/openssl/e_os2.h ../include/openssl/opensslconf.h |
| 191 | o_str.o: o_str.c o_str.h | 211 | o_str.o: o_str.c o_str.h |
| 192 | o_time.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h o_time.c | 212 | o_time.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h o_time.c |
