~ubuntu-branches/ubuntu/lucid/openssl/lucid-proposed

« back to all changes in this revision

Viewing changes to crypto/aes/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Nicolas Valcárcel Scerpella (Canonical)
  • Date: 2009-12-06 20:16:24 UTC
  • mfrom: (11.1.9 sid)
  • Revision ID: james.westby@ubuntu.com-20091206201624-u126qjpqm2n2uuhu
Tags: 0.9.8k-7ubuntu1
* Merge from debian unstable, remaining changes (LP: #493392):
  - Link using -Bsymbolic-functions
  - Add support for lpia
  - Disable SSLv2 during compile
  - Ship documentation in openssl-doc, suggested by the package.
  - Use a different priority for libssl0.9.8/restart-services
    depending on whether a desktop, or server dist-upgrade is being
    performed.
  - Display a system restart required notification bubble on libssl0.9.8
    upgrade.
  - Replace duplicate files in the doc directory with symlinks.
  - Move runtime libraries to /lib, for the benefit of wpasupplicant
* Strip the patches out of the source into quilt patches
* Disable CVE-2009-3555.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 
25
25
LIB=$(TOP)/libcrypto.a
26
26
LIBSRC=aes_core.c aes_misc.c aes_ecb.c aes_cbc.c aes_cfb.c aes_ofb.c \
27
 
       aes_ctr.c aes_ige.c
28
 
LIBOBJ=aes_misc.o aes_ecb.o aes_cfb.o aes_ofb.o aes_ctr.o aes_ige.o \
 
27
       aes_ctr.c aes_ige.c aes_wrap.c
 
28
LIBOBJ=aes_misc.o aes_ecb.o aes_cfb.o aes_ofb.o aes_ctr.o aes_ige.o aes_wrap.o \
29
29
       $(AES_ASM_OBJ)
30
30
 
31
31
SRC= $(LIBSRC)
41
41
all:    lib
42
42
 
43
43
lib:    $(LIBOBJ)
44
 
        $(AR) $(LIB) $(LIBOBJ)
 
44
        $(ARX) $(LIB) $(LIBOBJ)
45
45
        $(RANLIB) $(LIB) || echo Never mind.
46
46
        @touch lib
47
47
 
57
57
ax86-out.s: asm/aes-586.pl ../perlasm/x86asm.pl
58
58
        (cd asm; $(PERL) aes-586.pl a.out $(CFLAGS) $(PROCESSOR) > ../$@)
59
59
 
 
60
aes-x86_64.s: asm/aes-x86_64.pl
 
61
        $(PERL) asm/aes-x86_64.pl $@
 
62
 
60
63
files:
61
64
        $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
62
65
 
100
103
aes_cfb.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
101
104
aes_cfb.o: aes_cfb.c aes_locl.h
102
105
aes_core.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
103
 
aes_core.o: ../../include/openssl/opensslconf.h aes_core.c aes_locl.h
 
106
aes_core.o: ../../include/openssl/fips.h ../../include/openssl/opensslconf.h
 
107
aes_core.o: aes_core.c aes_locl.h
104
108
aes_ctr.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
105
109
aes_ctr.o: ../../include/openssl/opensslconf.h aes_ctr.c aes_locl.h
106
110
aes_ecb.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
117
121
aes_misc.o: ../../include/openssl/opensslv.h aes_locl.h aes_misc.c
118
122
aes_ofb.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
119
123
aes_ofb.o: ../../include/openssl/opensslconf.h aes_locl.h aes_ofb.c
 
124
aes_wrap.o: ../../e_os.h ../../include/openssl/aes.h
 
125
aes_wrap.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
 
126
aes_wrap.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
 
127
aes_wrap.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
 
128
aes_wrap.o: ../../include/openssl/opensslconf.h
 
129
aes_wrap.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
 
130
aes_wrap.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
 
131
aes_wrap.o: ../../include/openssl/symhacks.h ../cryptlib.h aes_wrap.c