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

« back to all changes in this revision

Viewing changes to fips/aes/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Kurt Roeckx
  • Date: 2009-06-13 18:15:46 UTC
  • mto: (11.1.5 squeeze)
  • mto: This revision was merged to the branch mainline in revision 34.
  • Revision ID: james.westby@ubuntu.com-20090613181546-vbfntai3b009dl1u
Tags: upstream-0.9.8k
ImportĀ upstreamĀ versionĀ 0.9.8k

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# OpenSSL/fips/aes/Makefile
 
3
#
 
4
 
 
5
DIR=    aes
 
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_aesavs.c
 
25
APPS=
 
26
 
 
27
LIB=$(TOP)/libcrypto.a
 
28
LIBSRC=fips_aes_selftest.c
 
29
LIBOBJ=fips_aes_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/aes/req -name '*.req' > testlist
 
68
        -rm -rf ../testvectors/aes/rsp
 
69
        mkdir ../testvectors/aes/rsp
 
70
        if [ -s testlist ]; then $(TOP)/util/shlib_wrap.sh $(TOP)/test/fips_aesavs -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
 
 
79
dclean:
 
80
        $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
 
81
        mv -f Makefile.new $(MAKEFILE)
 
82
 
 
83
clean:
 
84
        rm -f *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff testlist
 
85
# DO NOT DELETE THIS LINE -- make depend depends on it.
 
86
 
 
87
fips_aes_selftest.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
 
88
fips_aes_selftest.o: ../../include/openssl/crypto.h
 
89
fips_aes_selftest.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
 
90
fips_aes_selftest.o: ../../include/openssl/evp.h ../../include/openssl/fips.h
 
91
fips_aes_selftest.o: ../../include/openssl/lhash.h
 
92
fips_aes_selftest.o: ../../include/openssl/obj_mac.h
 
93
fips_aes_selftest.o: ../../include/openssl/objects.h
 
94
fips_aes_selftest.o: ../../include/openssl/opensslconf.h
 
95
fips_aes_selftest.o: ../../include/openssl/opensslv.h
 
96
fips_aes_selftest.o: ../../include/openssl/ossl_typ.h
 
97
fips_aes_selftest.o: ../../include/openssl/safestack.h
 
98
fips_aes_selftest.o: ../../include/openssl/stack.h
 
99
fips_aes_selftest.o: ../../include/openssl/symhacks.h fips_aes_selftest.c
 
100
fips_aesavs.o: ../../e_os.h ../../include/openssl/aes.h
 
101
fips_aesavs.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
 
102
fips_aesavs.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
 
103
fips_aesavs.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
 
104
fips_aesavs.o: ../../include/openssl/evp.h ../../include/openssl/fips.h
 
105
fips_aesavs.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
 
106
fips_aesavs.o: ../../include/openssl/objects.h
 
107
fips_aesavs.o: ../../include/openssl/opensslconf.h
 
108
fips_aesavs.o: ../../include/openssl/opensslv.h
 
109
fips_aesavs.o: ../../include/openssl/ossl_typ.h
 
110
fips_aesavs.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
 
111
fips_aesavs.o: ../../include/openssl/symhacks.h ../fips_utl.h fips_aesavs.c