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

Side by Side Diff: openssl/crypto/seed/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/s390xcpuid.S ('k') | openssl/crypto/seed/seed.h » ('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/seed/Makefile 2 # crypto/seed/Makefile
3 # 3 #
4 4
5 DIR= seed 5 DIR= seed
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 16 matching lines...) Expand all
27 HEADER= seed_locl.h $(EXHEADER) 27 HEADER= seed_locl.h $(EXHEADER)
28 28
29 ALL= $(GENERAL) $(SRC) $(HEADER) 29 ALL= $(GENERAL) $(SRC) $(HEADER)
30 30
31 top: 31 top:
32 (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) 32 (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
33 33
34 all: lib 34 all: lib
35 35
36 lib: $(LIBOBJ) 36 lib: $(LIBOBJ)
37 » $(ARX) $(LIB) $(LIBOBJ) 37 » $(AR) $(LIB) $(LIBOBJ)
38 $(RANLIB) $(LIB) || echo Never mind. 38 $(RANLIB) $(LIB) || echo Never mind.
39 @touch lib 39 @touch lib
40 40
41 files: 41 files:
42 $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO 42 $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
43 43
44 links: 44 links:
45 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) 45 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
46 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) 46 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
47 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) 47 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
(...skipping 20 matching lines...) Expand all
68 68
69 dclean: 69 dclean:
70 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKE FILE) >Makefile.new 70 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKE FILE) >Makefile.new
71 mv -f Makefile.new $(MAKEFILE) 71 mv -f Makefile.new $(MAKEFILE)
72 72
73 clean: 73 clean:
74 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff 74 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
75 75
76 # DO NOT DELETE THIS LINE -- make depend depends on it. 76 # DO NOT DELETE THIS LINE -- make depend depends on it.
77 77
78 seed.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h 78 seed.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
79 seed.o: ../../include/openssl/seed.h seed.c seed_locl.h 79 seed.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
80 seed_cbc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h 80 seed.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
81 seed_cbc.o: ../../include/openssl/seed.h seed_cbc.c seed_locl.h 81 seed.o: ../../include/openssl/seed.h ../../include/openssl/stack.h
82 seed_cfb.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h 82 seed.o: ../../include/openssl/symhacks.h seed.c seed_locl.h
83 seed_cfb.o: ../../include/openssl/seed.h seed_cfb.c seed_locl.h 83 seed_cbc.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
84 seed_ecb.o: ../../include/openssl/opensslconf.h ../../include/openssl/seed.h 84 seed_cbc.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
85 seed_cbc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
86 seed_cbc.o: ../../include/openssl/safestack.h ../../include/openssl/seed.h
87 seed_cbc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
88 seed_cbc.o: seed_cbc.c
89 seed_cfb.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
90 seed_cfb.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
91 seed_cfb.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
92 seed_cfb.o: ../../include/openssl/safestack.h ../../include/openssl/seed.h
93 seed_cfb.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
94 seed_cfb.o: seed_cfb.c
95 seed_ecb.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
96 seed_ecb.o: ../../include/openssl/opensslconf.h
97 seed_ecb.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
98 seed_ecb.o: ../../include/openssl/safestack.h ../../include/openssl/seed.h
99 seed_ecb.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
85 seed_ecb.o: seed_ecb.c 100 seed_ecb.o: seed_ecb.c
86 seed_ofb.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h 101 seed_ofb.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
87 seed_ofb.o: ../../include/openssl/seed.h seed_locl.h seed_ofb.c 102 seed_ofb.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
103 seed_ofb.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
104 seed_ofb.o: ../../include/openssl/safestack.h ../../include/openssl/seed.h
105 seed_ofb.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
106 seed_ofb.o: seed_ofb.c
OLDNEW
« no previous file with comments | « openssl/crypto/s390xcpuid.S ('k') | openssl/crypto/seed/seed.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698