OLD | NEW |
1 # | 1 # |
2 # OpenSSL/crypto/cast/Makefile | 2 # OpenSSL/crypto/cast/Makefile |
3 # | 3 # |
4 | 4 |
5 DIR= cast | 5 DIR= cast |
6 TOP= ../.. | 6 TOP= ../.. |
7 CC= cc | 7 CC= cc |
8 CPP= $(CC) -E | 8 CPP= $(CC) -E |
9 INCLUDES= | 9 INCLUDES= |
10 CFLAG=-g | 10 CFLAG=-g |
(...skipping 20 matching lines...) Expand all Loading... |
31 HEADER= cast_s.h cast_lcl.h $(EXHEADER) | 31 HEADER= cast_s.h cast_lcl.h $(EXHEADER) |
32 | 32 |
33 ALL= $(GENERAL) $(SRC) $(HEADER) | 33 ALL= $(GENERAL) $(SRC) $(HEADER) |
34 | 34 |
35 top: | 35 top: |
36 (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | 36 (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) |
37 | 37 |
38 all: lib | 38 all: lib |
39 | 39 |
40 lib: $(LIBOBJ) | 40 lib: $(LIBOBJ) |
41 » $(ARX) $(LIB) $(LIBOBJ) | 41 » $(AR) $(LIB) $(LIBOBJ) |
42 $(RANLIB) $(LIB) || echo Never mind. | 42 $(RANLIB) $(LIB) || echo Never mind. |
43 @touch lib | 43 @touch lib |
44 | 44 |
45 # ELF | 45 cast-586.s:» asm/cast-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl |
46 cx86-elf.s: asm/cast-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl | 46 » $(PERL)»asm/cast-586.pl $(PERLASM_SCHEME) $(CLAGS) $(PROCESSOR) > $@ |
47 » (cd asm; $(PERL) cast-586.pl elf $(CLAGS) $(PROCESSOR) > ../$@) | |
48 # COFF | |
49 cx86-cof.s: asm/cast-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl | |
50 » (cd asm; $(PERL) cast-586.pl coff $(CLAGS) $(PROCESSOR) > ../$@) | |
51 # a.out | |
52 cx86-out.s: asm/cast-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl | |
53 » (cd asm; $(PERL) cast-586.pl a.out $(CLAGS) $(PROCESSOR) > ../$@) | |
54 | 47 |
55 files: | 48 files: |
56 $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | 49 $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO |
57 | 50 |
58 links: | 51 links: |
59 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | 52 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
60 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | 53 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
61 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 54 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
62 | 55 |
63 install: | 56 install: |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 c_ecb.o: ../../e_os.h ../../include/openssl/cast.h | 88 c_ecb.o: ../../e_os.h ../../include/openssl/cast.h |
96 c_ecb.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | 89 c_ecb.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
97 c_ecb.o: ../../include/openssl/opensslv.h c_ecb.c cast_lcl.h | 90 c_ecb.o: ../../include/openssl/opensslv.h c_ecb.c cast_lcl.h |
98 c_enc.o: ../../e_os.h ../../include/openssl/cast.h | 91 c_enc.o: ../../e_os.h ../../include/openssl/cast.h |
99 c_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | 92 c_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
100 c_enc.o: c_enc.c cast_lcl.h | 93 c_enc.o: c_enc.c cast_lcl.h |
101 c_ofb64.o: ../../e_os.h ../../include/openssl/cast.h | 94 c_ofb64.o: ../../e_os.h ../../include/openssl/cast.h |
102 c_ofb64.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | 95 c_ofb64.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
103 c_ofb64.o: c_ofb64.c cast_lcl.h | 96 c_ofb64.o: c_ofb64.c cast_lcl.h |
104 c_skey.o: ../../e_os.h ../../include/openssl/cast.h | 97 c_skey.o: ../../e_os.h ../../include/openssl/cast.h |
105 c_skey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 98 c_skey.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
106 c_skey.o: ../../include/openssl/fips.h ../../include/openssl/opensslconf.h | 99 c_skey.o: c_skey.c cast_lcl.h cast_s.h |
107 c_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | |
108 c_skey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | |
109 c_skey.o: ../../include/openssl/symhacks.h c_skey.c cast_lcl.h cast_s.h | |
OLD | NEW |