~ubuntu-branches/ubuntu/utopic/openssl/utopic

« back to all changes in this revision

Viewing changes to crypto/md4/Makefile.save

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2014-01-08 15:57:24 UTC
  • mfrom: (11.1.46 sid)
  • Revision ID: package-import@ubuntu.com-20140108155724-kl61on9fyqmod2z9
Tags: 1.0.1f-1ubuntu1
* Merge with Debian, remaining changes.
  - debian/libssl1.0.0.postinst:
    + Display a system restart required notification on libssl1.0.0
      upgrade on servers.
    + Use a different priority for libssl1.0.0/restart-services depending
      on whether a desktop, or server dist-upgrade is being performed.
  - debian/{libssl1.0.0-udeb.dirs, control, rules}: Create
    libssl1.0.0-udeb, for the benefit of wget-udeb (no wget-udeb package
    in Debian).
  - debian/{libcrypto1.0.0-udeb.dirs, libssl1.0.0.dirs, libssl1.0.0.files,
    rules}: Move runtime libraries to /lib, for the benefit of
    wpasupplicant.
  - debian/patches/perlpath-quilt.patch: Don't change perl #! paths under
    .pc.
  - debian/rules:
    + Don't run 'make test' when cross-building.
    + Use host compiler when cross-building.  Patch from Neil Williams.
    + Don't build for processors no longer supported: i586 (on i386)
    + Fix Makefile to properly clean up libs/ dirs in clean target.
    + Replace duplicate files in the doc directory with symlinks.
  - debian/control: Mark Debian Vcs-* as XS-Debian-Vcs-*
  - debian/patches/ubuntu_deb676533_arm_asm.patch: Enable arm assembly
    code.
  - debian/rules: Enable optimized 64bit elliptic curve code contributed
    by Google.
* Dropped changes:
  - debian/patches/arm64-support: included in debian-targets.patch
  - debian/patches/no_default_rdrand.patch: upstream
  - debian/patches/openssl-1.0.1e-env-zlib.patch: zlib is now completely
    disabled in debian/rules

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# OpenSSL/crypto/md4/Makefile
 
3
#
 
4
 
 
5
DIR=    md4
 
6
TOP=    ../..
 
7
CC=     cc
 
8
CPP=    $(CC) -E
 
9
INCLUDES=
 
10
CFLAG=-g
 
11
MAKEFILE=       Makefile
 
12
AR=             ar r
 
13
 
 
14
CFLAGS= $(INCLUDES) $(CFLAG)
 
15
 
 
16
GENERAL=Makefile
 
17
TEST=md4test.c
 
18
APPS=md4.c
 
19
 
 
20
LIB=$(TOP)/libcrypto.a
 
21
LIBSRC=md4_dgst.c md4_one.c
 
22
LIBOBJ=md4_dgst.o md4_one.o
 
23
 
 
24
SRC= $(LIBSRC)
 
25
 
 
26
EXHEADER= md4.h
 
27
HEADER= md4_locl.h $(EXHEADER)
 
28
 
 
29
ALL=    $(GENERAL) $(SRC) $(HEADER)
 
30
 
 
31
top:
 
32
        (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
 
33
 
 
34
all:    lib
 
35
 
 
36
lib:    $(LIBOBJ)
 
37
        $(AR) $(LIB) $(LIBOBJ)
 
38
        $(RANLIB) $(LIB) || echo Never mind.
 
39
        @touch lib
 
40
 
 
41
files:
 
42
        $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
 
43
 
 
44
links:
 
45
        @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
 
46
        @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
 
47
        @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
 
48
 
 
49
install:
 
50
        @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
 
51
        @headerlist="$(EXHEADER)"; for i in $$headerlist ; \
 
52
        do  \
 
53
        (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
 
54
        chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
 
55
        done;
 
56
 
 
57
tags:
 
58
        ctags $(SRC)
 
59
 
 
60
tests:
 
61
 
 
62
lint:
 
63
        lint -DLINT $(INCLUDES) $(SRC)>fluff
 
64
 
 
65
depend:
 
66
        @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
 
67
        $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
 
68
 
 
69
dclean:
 
70
        $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
 
71
        mv -f Makefile.new $(MAKEFILE)
 
72
        rm -f ../../include/openssl/$(EXHEADER) ../../test/$(TEST) ../../apps/$(APPS)
 
73
 
 
74
clean:
 
75
        rm -f asm/mx86unix.cpp *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
 
76
 
 
77
# DO NOT DELETE THIS LINE -- make depend depends on it.
 
78
 
 
79
md4_dgst.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
 
80
md4_dgst.o: ../../include/openssl/md4.h ../../include/openssl/opensslconf.h
 
81
md4_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
 
82
md4_dgst.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
 
83
md4_dgst.o: ../../include/openssl/symhacks.h ../md32_common.h md4_dgst.c
 
84
md4_dgst.o: md4_locl.h
 
85
md4_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
 
86
md4_one.o: ../../include/openssl/md4.h ../../include/openssl/opensslconf.h
 
87
md4_one.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
 
88
md4_one.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
 
89
md4_one.o: ../../include/openssl/symhacks.h md4_one.c