diff options
Diffstat (limited to 'src/lib/libcrypto/Attic/Makefile')
-rw-r--r-- | src/lib/libcrypto/Attic/Makefile | 34 |
1 files changed, 25 insertions, 9 deletions
diff --git a/src/lib/libcrypto/Attic/Makefile b/src/lib/libcrypto/Attic/Makefile index 85d9f249c5..947dd5d44e 100644 --- a/src/lib/libcrypto/Attic/Makefile +++ b/src/lib/libcrypto/Attic/Makefile | |||
@@ -7,7 +7,7 @@ TOP= .. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDE= -I. -I$(TOP) -I../include $(ZLIB_INCLUDE) | 8 | INCLUDE= -I. -I$(TOP) -I../include $(ZLIB_INCLUDE) |
9 | # INCLUDES targets sudbirs! | 9 | # INCLUDES targets sudbirs! |
10 | INCLUDES= -I.. -I../.. -I../asn1 -I../evp -I../../include $(ZLIB_INCLUDE) | 10 | INCLUDES= -I.. -I../.. -I../modes -I../asn1 -I../evp -I../../include $(ZLIB_INCLUDE) |
11 | CFLAG= -g | 11 | CFLAG= -g |
12 | MAKEDEPPROG= makedepend | 12 | MAKEDEPPROG= makedepend |
13 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | 13 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) |
@@ -34,8 +34,10 @@ GENERAL=Makefile README crypto-lib.com install.com | |||
34 | 34 | ||
35 | LIB= $(TOP)/libcrypto.a | 35 | LIB= $(TOP)/libcrypto.a |
36 | SHARED_LIB= libcrypto$(SHLIB_EXT) | 36 | SHARED_LIB= libcrypto$(SHLIB_EXT) |
37 | LIBSRC= cryptlib.c mem.c mem_clr.c mem_dbg.c cversion.c ex_data.c cpt_err.c ebcdic.c uid.c o_time.c o_str.c o_dir.c | 37 | LIBSRC= cryptlib.c mem.c mem_clr.c mem_dbg.c cversion.c ex_data.c cpt_err.c \ |
38 | LIBOBJ= cryptlib.o mem.o mem_dbg.o cversion.o ex_data.o cpt_err.o ebcdic.o uid.o o_time.o o_str.o o_dir.o $(CPUID_OBJ) | 38 | ebcdic.c uid.c o_time.c o_str.c o_dir.c o_fips.c o_init.c fips_ers.c |
39 | LIBOBJ= cryptlib.o mem.o mem_dbg.o cversion.o ex_data.o cpt_err.o ebcdic.o \ | ||
40 | uid.o o_time.o o_str.o o_dir.o o_fips.o o_init.o fips_ers.o $(CPUID_OBJ) | ||
39 | 41 | ||
40 | SRC= $(LIBSRC) | 42 | SRC= $(LIBSRC) |
41 | 43 | ||
@@ -67,14 +69,13 @@ applink.o: $(TOP)/ms/applink.c | |||
67 | uplink.o: $(TOP)/ms/uplink.c applink.o | 69 | uplink.o: $(TOP)/ms/uplink.c applink.o |
68 | $(CC) $(CFLAGS) -c -o $@ $(TOP)/ms/uplink.c | 70 | $(CC) $(CFLAGS) -c -o $@ $(TOP)/ms/uplink.c |
69 | 71 | ||
70 | uplink-cof.s: $(TOP)/ms/uplink.pl | 72 | uplink-x86.s: $(TOP)/ms/uplink-x86.pl |
71 | $(PERL) $(TOP)/ms/uplink.pl coff > $@ | 73 | $(PERL) $(TOP)/ms/uplink-x86.pl $(PERLASM_SCHEME) > $@ |
72 | 74 | ||
73 | x86_64cpuid.s: x86_64cpuid.pl | 75 | x86_64cpuid.s: x86_64cpuid.pl; $(PERL) x86_64cpuid.pl $(PERLASM_SCHEME) > $@ |
74 | $(PERL) x86_64cpuid.pl $(PERLASM_SCHEME) > $@ | 76 | ia64cpuid.s: ia64cpuid.S; $(CC) $(CFLAGS) -E ia64cpuid.S > $@ |
75 | ia64cpuid.s: ia64cpuid.S | ||
76 | $(CC) $(CFLAGS) -E ia64cpuid.S > $@ | ||
77 | ppccpuid.s: ppccpuid.pl; $(PERL) ppccpuid.pl $(PERLASM_SCHEME) $@ | 77 | ppccpuid.s: ppccpuid.pl; $(PERL) ppccpuid.pl $(PERLASM_SCHEME) $@ |
78 | pariscid.s: pariscid.pl; $(PERL) pariscid.pl $(PERLASM_SCHEME) $@ | ||
78 | alphacpuid.s: alphacpuid.pl | 79 | alphacpuid.s: alphacpuid.pl |
79 | $(PERL) $< | $(CC) -E - | tee $@ > /dev/null | 80 | $(PERL) $< | $(CC) -E - | tee $@ > /dev/null |
80 | 81 | ||
@@ -102,6 +103,7 @@ lib: $(LIB) | |||
102 | @touch lib | 103 | @touch lib |
103 | $(LIB): $(LIBOBJ) | 104 | $(LIB): $(LIBOBJ) |
104 | $(AR) $(LIB) $(LIBOBJ) | 105 | $(AR) $(LIB) $(LIBOBJ) |
106 | [ -z "$(FIPSLIBDIR)" ] || $(AR) $(LIB) $(FIPSLIBDIR)fipscanister.o | ||
105 | $(RANLIB) $(LIB) || echo Never mind. | 107 | $(RANLIB) $(LIB) || echo Never mind. |
106 | 108 | ||
107 | shared: buildinf.h lib subdirs | 109 | shared: buildinf.h lib subdirs |
@@ -171,6 +173,7 @@ ex_data.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | |||
171 | ex_data.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h | 173 | ex_data.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h |
172 | ex_data.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.h | 174 | ex_data.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.h |
173 | ex_data.o: ex_data.c | 175 | ex_data.o: ex_data.c |
176 | fips_ers.o: ../include/openssl/opensslconf.h fips_ers.c | ||
174 | mem.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h | 177 | mem.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h |
175 | mem.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | 178 | mem.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
176 | mem.o: ../include/openssl/err.h ../include/openssl/lhash.h | 179 | mem.o: ../include/openssl/err.h ../include/openssl/lhash.h |
@@ -191,6 +194,19 @@ mem_dbg.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.h | |||
191 | mem_dbg.o: mem_dbg.c | 194 | mem_dbg.o: mem_dbg.c |
192 | o_dir.o: ../e_os.h ../include/openssl/e_os2.h ../include/openssl/opensslconf.h | 195 | o_dir.o: ../e_os.h ../include/openssl/e_os2.h ../include/openssl/opensslconf.h |
193 | o_dir.o: LPdir_unix.c o_dir.c o_dir.h | 196 | o_dir.o: LPdir_unix.c o_dir.c o_dir.h |
197 | o_fips.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h | ||
198 | o_fips.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | ||
199 | o_fips.o: ../include/openssl/err.h ../include/openssl/lhash.h | ||
200 | o_fips.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
201 | o_fips.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h | ||
202 | o_fips.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.h | ||
203 | o_fips.o: o_fips.c | ||
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 | ||
194 | 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 |
195 | o_str.o: o_str.c o_str.h | 211 | o_str.o: o_str.c o_str.h |
196 | 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 |