~ubuntu-branches/ubuntu/precise/openssl098/precise

« back to all changes in this revision

Viewing changes to crypto/cast/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Kurt Roeckx
  • Date: 2011-03-23 19:50:31 UTC
  • Revision ID: james.westby@ubuntu.com-20110323195031-6h9crj4bymhhr8b8
Tags: upstream-0.9.8o
ImportĀ upstreamĀ versionĀ 0.9.8o

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# OpenSSL/crypto/cast/Makefile
 
3
#
 
4
 
 
5
DIR=    cast
 
6
TOP=    ../..
 
7
CC=     cc
 
8
CPP=    $(CC) -E
 
9
INCLUDES=
 
10
CFLAG=-g
 
11
MAKEFILE=       Makefile
 
12
AR=             ar r
 
13
 
 
14
CAST_ENC=c_enc.o
 
15
 
 
16
CFLAGS= $(INCLUDES) $(CFLAG)
 
17
ASFLAGS= $(INCLUDES) $(ASFLAG)
 
18
AFLAGS= $(ASFLAGS)
 
19
 
 
20
GENERAL=Makefile
 
21
TEST=casttest.c
 
22
APPS=
 
23
 
 
24
LIB=$(TOP)/libcrypto.a
 
25
LIBSRC=c_skey.c c_ecb.c c_enc.c c_cfb64.c c_ofb64.c 
 
26
LIBOBJ=c_skey.o c_ecb.o $(CAST_ENC) c_cfb64.o c_ofb64.o
 
27
 
 
28
SRC= $(LIBSRC)
 
29
 
 
30
EXHEADER= cast.h
 
31
HEADER= cast_s.h cast_lcl.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
        $(ARX) $(LIB) $(LIBOBJ)
 
42
        $(RANLIB) $(LIB) || echo Never mind.
 
43
        @touch lib
 
44
 
 
45
# ELF
 
46
cx86-elf.s: asm/cast-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl
 
47
        (cd asm; $(PERL) cast-586.pl elf $(CLAGS) $(PROCESSOR) > ../$@)
 
48
# COFF
 
49
cx86-cof.s: asm/cast-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl
 
50
        (cd asm; $(PERL) cast-586.pl coff $(CLAGS) $(PROCESSOR) > ../$@)
 
51
# a.out
 
52
cx86-out.s: asm/cast-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl
 
53
        (cd asm; $(PERL) cast-586.pl a.out $(CLAGS) $(PROCESSOR) > ../$@)
 
54
 
 
55
files:
 
56
        $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
 
57
 
 
58
links:
 
59
        @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
 
60
        @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
 
61
        @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
 
62
 
 
63
install:
 
64
        @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
 
65
        @headerlist="$(EXHEADER)"; for i in $$headerlist ; \
 
66
        do  \
 
67
        (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
 
68
        chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
 
69
        done;
 
70
 
 
71
tags:
 
72
        ctags $(SRC)
 
73
 
 
74
tests:
 
75
 
 
76
lint:
 
77
        lint -DLINT $(INCLUDES) $(SRC)>fluff
 
78
 
 
79
depend:
 
80
        @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
 
81
        $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
 
82
 
 
83
dclean:
 
84
        $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
 
85
        mv -f Makefile.new $(MAKEFILE)
 
86
 
 
87
clean:
 
88
        rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
 
89
 
 
90
# DO NOT DELETE THIS LINE -- make depend depends on it.
 
91
 
 
92
c_cfb64.o: ../../e_os.h ../../include/openssl/cast.h
 
93
c_cfb64.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
 
94
c_cfb64.o: c_cfb64.c cast_lcl.h
 
95
c_ecb.o: ../../e_os.h ../../include/openssl/cast.h
 
96
c_ecb.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
 
97
c_ecb.o: ../../include/openssl/opensslv.h c_ecb.c cast_lcl.h
 
98
c_enc.o: ../../e_os.h ../../include/openssl/cast.h
 
99
c_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
 
100
c_enc.o: c_enc.c cast_lcl.h
 
101
c_ofb64.o: ../../e_os.h ../../include/openssl/cast.h
 
102
c_ofb64.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
 
103
c_ofb64.o: c_ofb64.c cast_lcl.h
 
104
c_skey.o: ../../e_os.h ../../include/openssl/cast.h
 
105
c_skey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
 
106
c_skey.o: ../../include/openssl/fips.h ../../include/openssl/opensslconf.h
 
107
c_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
 
108
c_skey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
 
109
c_skey.o: ../../include/openssl/symhacks.h c_skey.c cast_lcl.h cast_s.h