Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(231)

Side by Side Diff: openssl/crypto/camellia/Makefile

Issue 9254031: Upgrade chrome's OpenSSL to same version Android ships with. (Closed) Base URL: http://src.chromium.org/svn/trunk/deps/third_party/openssl/
Patch Set: '' Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « openssl/crypto/buffer/buffer.c ('k') | openssl/crypto/camellia/asm/cmll-x86.pl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # 1 #
2 # crypto/camellia/Makefile 2 # crypto/camellia/Makefile
3 # 3 #
4 4
5 DIR= camellia 5 DIR= camellia
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
11 MAKEFILE= Makefile 11 MAKEFILE= Makefile
12 AR= ar r 12 AR= ar r
13 13
14 CAMELLIA_ASM_OBJ= 14 CMLL_ENC= camellia.o cmll_misc.o cmll_cbc.o
15 15
16 CFLAGS= $(INCLUDES) $(CFLAG) 16 CFLAGS= $(INCLUDES) $(CFLAG)
17 ASFLAGS= $(INCLUDES) $(ASFLAG) 17 ASFLAGS= $(INCLUDES) $(ASFLAG)
18 AFLAGS= $(ASFLAGS) 18 AFLAGS= $(ASFLAGS)
19 19
20 GENERAL=Makefile 20 GENERAL=Makefile
21 #TEST=camelliatest.c 21 #TEST=camelliatest.c
22 APPS= 22 APPS=
23 23
24 LIB=$(TOP)/libcrypto.a 24 LIB=$(TOP)/libcrypto.a
25 LIBSRC=camellia.c cmll_misc.c cmll_ecb.c cmll_cbc.c cmll_ofb.c \ 25 LIBSRC=camellia.c cmll_misc.c cmll_ecb.c cmll_cbc.c cmll_ofb.c \
26 cmll_cfb.c cmll_ctr.c 26 cmll_cfb.c cmll_ctr.c
27 27
28 LIBOBJ= camellia.o cmll_misc.o cmll_ecb.o cmll_cbc.o cmll_ofb.o \ 28 LIBOBJ= cmll_ecb.o cmll_ofb.o cmll_cfb.o cmll_ctr.o $(CMLL_ENC)
29 » » cmll_cfb.o cmll_ctr.o $(CAMELLIA_ASM_OBJ)
30 29
31 SRC= $(LIBSRC) 30 SRC= $(LIBSRC)
32 31
33 EXHEADER= camellia.h 32 EXHEADER= camellia.h
34 HEADER= cmll_locl.h $(EXHEADER) 33 HEADER= cmll_locl.h $(EXHEADER)
35 34
36 ALL= $(GENERAL) $(SRC) $(HEADER) 35 ALL= $(GENERAL) $(SRC) $(HEADER)
37 36
38 top: 37 top:
39 (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) 38 (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
40 39
41 all: lib 40 all: lib
42 41
43 lib: $(LIBOBJ) 42 lib: $(LIBOBJ)
44 » $(ARX) $(LIB) $(LIBOBJ) 43 » $(AR) $(LIB) $(LIBOBJ)
45 $(RANLIB) $(LIB) || echo Never mind. 44 $(RANLIB) $(LIB) || echo Never mind.
46 @touch lib 45 @touch lib
47 46
48 $(LIBOBJ): $(LIBSRC) 47 cmll-x86.s:» asm/cmll-x86.pl ../perlasm/x86asm.pl
49 48 » $(PERL) asm/cmll-x86.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
49 cmll-x86_64.s: asm/cmll-x86_64.pl
50 » $(PERL) asm/cmll-x86_64.pl $(PERLASM_SCHEME) > $@
50 51
51 files: 52 files:
52 $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO 53 $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
53 54
54 links: 55 links:
55 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) 56 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
56 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) 57 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
57 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) 58 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
58 59
59 install: 60 install:
(...skipping 18 matching lines...) Expand all
78 79
79 dclean: 80 dclean:
80 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKE FILE) >Makefile.new 81 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKE FILE) >Makefile.new
81 mv -f Makefile.new $(MAKEFILE) 82 mv -f Makefile.new $(MAKEFILE)
82 83
83 clean: 84 clean:
84 rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff 85 rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
85 86
86 # DO NOT DELETE THIS LINE -- make depend depends on it. 87 # DO NOT DELETE THIS LINE -- make depend depends on it.
87 88
88 camellia.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h 89 camellia.o: ../../include/openssl/opensslconf.h camellia.c camellia.h
89 camellia.o: camellia.c camellia.h cmll_locl.h 90 camellia.o: cmll_locl.h
90 cmll_cbc.o: ../../include/openssl/camellia.h ../../include/openssl/e_os2.h 91 cmll_cbc.o: ../../include/openssl/camellia.h ../../include/openssl/modes.h
91 cmll_cbc.o: ../../include/openssl/opensslconf.h cmll_cbc.c cmll_locl.h 92 cmll_cbc.o: ../../include/openssl/opensslconf.h cmll_cbc.c
92 cmll_cfb.o: ../../e_os.h ../../include/openssl/camellia.h 93 cmll_cfb.o: ../../include/openssl/camellia.h ../../include/openssl/modes.h
93 cmll_cfb.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h 94 cmll_cfb.o: ../../include/openssl/opensslconf.h cmll_cfb.c
94 cmll_cfb.o: cmll_cfb.c cmll_locl.h 95 cmll_ctr.o: ../../include/openssl/camellia.h ../../include/openssl/modes.h
95 cmll_ctr.o: ../../include/openssl/camellia.h ../../include/openssl/e_os2.h 96 cmll_ctr.o: ../../include/openssl/opensslconf.h cmll_ctr.c
96 cmll_ctr.o: ../../include/openssl/opensslconf.h cmll_ctr.c cmll_locl.h 97 cmll_ecb.o: ../../include/openssl/camellia.h
97 cmll_ecb.o: ../../include/openssl/camellia.h ../../include/openssl/e_os2.h
98 cmll_ecb.o: ../../include/openssl/opensslconf.h cmll_ecb.c cmll_locl.h 98 cmll_ecb.o: ../../include/openssl/opensslconf.h cmll_ecb.c cmll_locl.h
99 cmll_misc.o: ../../include/openssl/camellia.h ../../include/openssl/crypto.h 99 cmll_misc.o: ../../include/openssl/camellia.h
100 cmll_misc.o: ../../include/openssl/e_os2.h ../../include/openssl/fips.h
101 cmll_misc.o: ../../include/openssl/opensslconf.h 100 cmll_misc.o: ../../include/openssl/opensslconf.h
102 cmll_misc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h 101 cmll_misc.o: ../../include/openssl/opensslv.h cmll_locl.h cmll_misc.c
103 cmll_misc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h 102 cmll_ofb.o: ../../include/openssl/camellia.h ../../include/openssl/modes.h
104 cmll_misc.o: ../../include/openssl/symhacks.h cmll_locl.h cmll_misc.c 103 cmll_ofb.o: ../../include/openssl/opensslconf.h cmll_ofb.c
105 cmll_ofb.o: ../../include/openssl/camellia.h ../../include/openssl/e_os2.h
106 cmll_ofb.o: ../../include/openssl/opensslconf.h cmll_locl.h cmll_ofb.c
OLDNEW
« no previous file with comments | « openssl/crypto/buffer/buffer.c ('k') | openssl/crypto/camellia/asm/cmll-x86.pl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698