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

Side by Side Diff: openssl/fips/des/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/fips/aes/fips_aesavs.c ('k') | openssl/fips/des/fips_des_selftest.c » ('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 # OpenSSL/fips/des/Makefile
3 #
4
5 DIR= des
6 TOP= ../..
7 CC= cc
8 INCLUDES=
9 CFLAG=-g
10 INSTALL_PREFIX=
11 OPENSSLDIR= /usr/local/ssl
12 INSTALLTOP=/usr/local/ssl
13 MAKEDEPPROG= makedepend
14 MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
15 MAKEFILE= Makefile
16 AR= ar r
17
18 ASFLAGS= $(INCLUDES) $(ASFLAG)
19 AFLAGS= $(ASFLAGS)
20
21 CFLAGS= $(INCLUDES) $(CFLAG)
22
23 GENERAL=Makefile
24 TEST= fips_desmovs.c
25 APPS=
26
27 LIB=$(TOP)/libcrypto.a
28 LIBSRC=fips_des_selftest.c
29 LIBOBJ=fips_des_selftest.o
30
31 SRC= $(LIBSRC)
32
33 EXHEADER=
34 HEADER=
35
36 ALL= $(GENERAL) $(SRC) $(HEADER)
37
38 top:
39 (cd $(TOP); $(MAKE) DIRS=fips FDIRS=$(DIR) sub_all)
40
41 all: lib
42
43 lib: $(LIBOBJ)
44 @echo $(LIBOBJ) > lib
45
46 files:
47 $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
48
49 links:
50 @$(PERL) $(TOP)/util/mklink.pl $(TOP)/include/openssl $(EXHEADER)
51 @$(PERL) $(TOP)/util/mklink.pl $(TOP)/test $(TEST)
52 @$(PERL) $(TOP)/util/mklink.pl $(TOP)/apps $(APPS)
53
54 install:
55 @headerlist="$(EXHEADER)"; for i in $$headerlist; \
56 do \
57 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
58 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
59 done
60
61 tags:
62 ctags $(SRC)
63
64 tests:
65
66 fips_test:
67 -find ../testvectors/tdes/req -name '*.req' > testlist
68 -rm -rf ../testvectors/tdes/rsp
69 mkdir ../testvectors/tdes/rsp
70 if [ -s testlist ]; then $(TOP)/util/shlib_wrap.sh $(TOP)/test/fips_desm ovs -d testlist; fi
71
72 lint:
73 lint -DLINT $(INCLUDES) $(SRC)>fluff
74
75 depend:
76 $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) \
77 $(SRC) $(TEST)
78 dclean:
79 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKE FILE) >Makefile.new
80 mv -f Makefile.new $(MAKEFILE)
81
82 clean:
83 rm -f *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff test list
84 # DO NOT DELETE THIS LINE -- make depend depends on it.
85
86 fips_des_selftest.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
87 fips_des_selftest.o: ../../include/openssl/crypto.h
88 fips_des_selftest.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
89 fips_des_selftest.o: ../../include/openssl/evp.h ../../include/openssl/fips.h
90 fips_des_selftest.o: ../../include/openssl/lhash.h
91 fips_des_selftest.o: ../../include/openssl/obj_mac.h
92 fips_des_selftest.o: ../../include/openssl/objects.h
93 fips_des_selftest.o: ../../include/openssl/opensslconf.h
94 fips_des_selftest.o: ../../include/openssl/opensslv.h
95 fips_des_selftest.o: ../../include/openssl/ossl_typ.h
96 fips_des_selftest.o: ../../include/openssl/safestack.h
97 fips_des_selftest.o: ../../include/openssl/stack.h
98 fips_des_selftest.o: ../../include/openssl/symhacks.h fips_des_selftest.c
99 fips_desmovs.o: ../../e_os.h ../../include/openssl/asn1.h
100 fips_desmovs.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
101 fips_desmovs.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
102 fips_desmovs.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
103 fips_desmovs.o: ../../include/openssl/err.h ../../include/openssl/evp.h
104 fips_desmovs.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h
105 fips_desmovs.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
106 fips_desmovs.o: ../../include/openssl/opensslconf.h
107 fips_desmovs.o: ../../include/openssl/opensslv.h
108 fips_desmovs.o: ../../include/openssl/ossl_typ.h
109 fips_desmovs.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
110 fips_desmovs.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
111 fips_desmovs.o: ../../include/openssl/ui_compat.h ../fips_utl.h fips_desmovs.c
OLDNEW
« no previous file with comments | « openssl/fips/aes/fips_aesavs.c ('k') | openssl/fips/des/fips_des_selftest.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698