~ubuntu-branches/ubuntu/maverick/openssl/maverick

« back to all changes in this revision

Viewing changes to crypto/rc5/Makefile.ssl

  • Committer: Bazaar Package Importer
  • Author(s): Christoph Martin
  • Date: 2004-12-16 18:41:29 UTC
  • mto: (11.1.1 lenny)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20041216184129-z7xjkul57mh1jiha
Tags: upstream-0.9.7e
ImportĀ upstreamĀ versionĀ 0.9.7e

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#
2
 
# SSLeay/crypto/rc5/Makefile
3
 
#
4
 
 
5
 
DIR=    rc5
6
 
TOP=    ../..
7
 
CC=     cc
8
 
CPP=    $(CC) -E
9
 
INCLUDES=
10
 
CFLAG=-g
11
 
INSTALL_PREFIX=
12
 
OPENSSLDIR=     /usr/local/ssl
13
 
INSTALLTOP=/usr/local/ssl
14
 
MAKE=           make -f Makefile.ssl
15
 
MAKEDEPPROG=    makedepend
16
 
MAKEDEPEND=     $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
17
 
MAKEFILE=       Makefile.ssl
18
 
AR=             ar r
19
 
 
20
 
RC5_ENC=                rc5_enc.o
21
 
# or use
22
 
#DES_ENC=       r586-elf.o
23
 
 
24
 
CFLAGS= $(INCLUDES) $(CFLAG)
25
 
ASFLAGS= $(INCLUDES) $(ASFLAG)
26
 
 
27
 
GENERAL=Makefile
28
 
TEST=rc5test.c
29
 
APPS=
30
 
 
31
 
LIB=$(TOP)/libcrypto.a
32
 
LIBSRC=rc5_skey.c rc5_ecb.c rc5_enc.c rc5cfb64.c rc5ofb64.c 
33
 
LIBOBJ=rc5_skey.o rc5_ecb.o $(RC5_ENC) rc5cfb64.o rc5ofb64.o
34
 
 
35
 
SRC= $(LIBSRC)
36
 
 
37
 
EXHEADER= rc5.h
38
 
HEADER= rc5_locl.h $(EXHEADER)
39
 
 
40
 
ALL=    $(GENERAL) $(SRC) $(HEADER)
41
 
 
42
 
top:
43
 
        (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
44
 
 
45
 
all:    lib
46
 
 
47
 
lib:    $(LIBOBJ)
48
 
        $(AR) $(LIB) $(LIBOBJ)
49
 
        $(RANLIB) $(LIB) || echo Never mind.
50
 
        @touch lib
51
 
 
52
 
# elf
53
 
asm/r586-elf.s: asm/rc5-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl
54
 
        (cd asm; $(PERL) rc5-586.pl elf $(CFLAGS) > r586-elf.s)
55
 
 
56
 
# a.out
57
 
asm/r586-out.o: asm/r586unix.cpp
58
 
        $(CPP) -DOUT asm/r586unix.cpp | as -o asm/r586-out.o
59
 
 
60
 
# bsdi
61
 
asm/r586bsdi.o: asm/r586unix.cpp
62
 
        $(CPP) -DBSDI asm/r586unix.cpp | sed 's/ :/:/' | as -o asm/r586bsdi.o
63
 
 
64
 
asm/r586unix.cpp: asm/rc5-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl
65
 
        (cd asm; $(PERL) rc5-586.pl cpp >r586unix.cpp)
66
 
 
67
 
files:
68
 
        $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
69
 
 
70
 
links:
71
 
        @sh $(TOP)/util/point.sh Makefile.ssl Makefile
72
 
        @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
73
 
        @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
74
 
        @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
75
 
 
76
 
install:
77
 
        @for i in $(EXHEADER) ; \
78
 
        do  \
79
 
        (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
80
 
        chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
81
 
        done;
82
 
 
83
 
tags:
84
 
        ctags $(SRC)
85
 
 
86
 
tests:
87
 
 
88
 
lint:
89
 
        lint -DLINT $(INCLUDES) $(SRC)>fluff
90
 
 
91
 
depend:
92
 
        $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
93
 
 
94
 
dclean:
95
 
        $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
96
 
        mv -f Makefile.new $(MAKEFILE)
97
 
 
98
 
clean:
99
 
        rm -f asm/r586unix.cpp asm/*-elf.* *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
100
 
 
101
 
# DO NOT DELETE THIS LINE -- make depend depends on it.
102
 
 
103
 
rc5_ecb.o: ../../include/openssl/opensslv.h ../../include/openssl/rc5.h
104
 
rc5_ecb.o: rc5_ecb.c rc5_locl.h
105
 
rc5_enc.o: ../../include/openssl/rc5.h rc5_enc.c rc5_locl.h
106
 
rc5_skey.o: ../../include/openssl/rc5.h rc5_locl.h rc5_skey.c
107
 
rc5cfb64.o: ../../include/openssl/rc5.h rc5_locl.h rc5cfb64.c
108
 
rc5ofb64.o: ../../include/openssl/rc5.h rc5_locl.h rc5ofb64.c