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

Side by Side Diff: openssl/crypto/whrlpool/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/vms_rms.h ('k') | openssl/crypto/whrlpool/asm/wp-mmx.pl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #
2 # crypto/whrlpool/Makefile
3 #
4
5 DIR= whrlpool
6 TOP= ../..
7 CC= cc
8 CPP= $(CC) -E
9 INCLUDES=
10 CFLAG=-g
11 MAKEFILE= Makefile
12 AR= ar r
13
14 WP_ASM_OBJ=wp_block.o
15
16 CFLAGS= $(INCLUDES) $(CFLAG)
17 ASFLAGS= $(INCLUDES) $(ASFLAG)
18 AFLAGS= $(ASFLAGS)
19
20 GENERAL=Makefile
21 TEST=wp_test.c
22 APPS=
23
24 LIB=$(TOP)/libcrypto.a
25 LIBSRC=wp_dgst.c wp_block.c
26 LIBOBJ=wp_dgst.o $(WP_ASM_OBJ)
27
28 SRC= $(LIBSRC)
29
30 EXHEADER= whrlpool.h
31 HEADER= wp_locl.h $(EXHEADER)
32
33 ALL= $(GENERAL) $(SRC) $(HEADER)
34
35 top:
36 (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
37
38 all: lib
39
40 lib: $(LIBOBJ)
41 $(AR) $(LIB) $(LIBOBJ)
42 $(RANLIB) $(LIB) || echo Never mind.
43 @touch lib
44
45 wp-mmx.s: asm/wp-mmx.pl ../perlasm/x86asm.pl
46 $(PERL) asm/wp-mmx.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
47
48 wp-x86_64.s: asm/wp-x86_64.pl
49 $(PERL) asm/wp-x86_64.pl $(PERLASM_SCHEME) > $@
50
51 $(LIBOBJ): $(LIBSRC)
52
53 files:
54 $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
55
56 links:
57 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
58 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
59 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
60
61 install:
62 @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
63 @headerlist="$(EXHEADER)"; for i in $$headerlist ; \
64 do \
65 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
66 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
67 done;
68
69 tags:
70 ctags $(SRC)
71
72 tests:
73
74 lint:
75 lint -DLINT $(INCLUDES) $(SRC)>fluff
76
77 depend:
78 @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
79 $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
80
81 dclean:
82 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKE FILE) >Makefile.new
83 mv -f Makefile.new $(MAKEFILE)
84
85 clean:
86 rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
87
88 # DO NOT DELETE THIS LINE -- make depend depends on it.
89
90 wp_block.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
91 wp_block.o: ../../include/openssl/whrlpool.h wp_block.c wp_locl.h
92 wp_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
93 wp_dgst.o: ../../include/openssl/whrlpool.h wp_dgst.c wp_locl.h
OLDNEW
« no previous file with comments | « openssl/crypto/vms_rms.h ('k') | openssl/crypto/whrlpool/asm/wp-mmx.pl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698