ARM assembler pack: profiler-assisted optimizations and NEON support.
[oweals/openssl.git] / crypto / aes / Makefile
1 #
2 # crypto/aes/Makefile
3 #
4
5 DIR=    aes
6 TOP=    ../..
7 CC=     cc
8 CPP=    $(CC) -E
9 INCLUDES=
10 CFLAG=-g
11 MAKEFILE=       Makefile
12 AR=             ar r
13
14 AES_ENC=aes_core.o aes_cbc.o
15
16 CFLAGS= $(INCLUDES) $(CFLAG)
17 ASFLAGS= $(INCLUDES) $(ASFLAG)
18 AFLAGS= $(ASFLAGS)
19
20 GENERAL=Makefile
21 #TEST=aestest.c
22 TEST=
23 APPS=
24
25 LIB=$(TOP)/libcrypto.a
26 LIBSRC=aes_core.c aes_misc.c aes_ecb.c aes_cbc.c aes_cfb.c aes_ofb.c \
27        aes_ige.c aes_wrap.c
28 LIBOBJ=aes_misc.o aes_ecb.o aes_cfb.o aes_ofb.o aes_ige.o aes_wrap.o \
29        $(AES_ENC)
30
31 SRC= $(LIBSRC)
32
33 EXHEADER= aes.h
34 HEADER= aes_locl.h $(EXHEADER)
35
36 ALL=    $(GENERAL) $(SRC) $(HEADER)
37
38 top:
39         (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
40
41 all:    lib
42
43 lib:    $(LIBOBJ)
44         $(ARX) $(LIB) $(LIBOBJ)
45         $(RANLIB) $(LIB) || echo Never mind.
46         @touch lib
47
48 aes-ia64.s: asm/aes-ia64.S
49         $(CC) $(CFLAGS) -E asm/aes-ia64.S > $@
50
51 aes-586.s:      asm/aes-586.pl ../perlasm/x86asm.pl
52         $(PERL) asm/aes-586.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
53 aesni-x86.s:    asm/aesni-x86.pl ../perlasm/x86asm.pl
54         $(PERL) asm/aesni-x86.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
55
56 aes-x86_64.s: asm/aes-x86_64.pl
57         $(PERL) asm/aes-x86_64.pl $(PERLASM_SCHEME) > $@
58 aesni-x86_64.s: asm/aesni-x86_64.pl
59         $(PERL) asm/aesni-x86_64.pl $(PERLASM_SCHEME) > $@
60
61 aes-sparcv9.s: asm/aes-sparcv9.pl
62         $(PERL) asm/aes-sparcv9.pl $(CFLAGS) > $@
63
64 aes-ppc.s:      asm/aes-ppc.pl
65         $(PERL) asm/aes-ppc.pl $(PERLASM_SCHEME) $@
66
67 aes-parisc.s:   asm/aes-parisc.pl
68         $(PERL) asm/aes-parisc.pl $(PERLASM_SCHEME) $@
69
70 # GNU make "catch all"
71 aes-%.S:        asm/aes-%.pl;   $(PERL) $< $(PERLASM_SCHEME) $@
72 aes-armv4.o:    aes-armv4.S
73
74 files:
75         $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
76
77 links:
78         @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
79         @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
80         @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
81
82 install:
83         @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
84         @headerlist="$(EXHEADER)"; for i in $$headerlist ; \
85         do  \
86         (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
87         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
88         done;
89
90 tags:
91         ctags $(SRC)
92
93 tests:
94
95 lint:
96         lint -DLINT $(INCLUDES) $(SRC)>fluff
97
98 depend:
99         @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
100         $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
101
102 dclean:
103         $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
104         mv -f Makefile.new $(MAKEFILE)
105
106 clean:
107         rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
108
109 # DO NOT DELETE THIS LINE -- make depend depends on it.
110
111 aes_cbc.o: ../../include/openssl/aes.h ../../include/openssl/crypto.h
112 aes_cbc.o: ../../include/openssl/e_os2.h ../../include/openssl/modes.h
113 aes_cbc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
114 aes_cbc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
115 aes_cbc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
116 aes_cbc.o: aes_cbc.c
117 aes_cfb.o: ../../include/openssl/aes.h ../../include/openssl/crypto.h
118 aes_cfb.o: ../../include/openssl/e_os2.h ../../include/openssl/modes.h
119 aes_cfb.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
120 aes_cfb.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
121 aes_cfb.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
122 aes_cfb.o: aes_cfb.c
123 aes_core.o: ../../include/openssl/aes.h ../../include/openssl/crypto.h
124 aes_core.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
125 aes_core.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
126 aes_core.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
127 aes_core.o: ../../include/openssl/symhacks.h aes_core.c aes_locl.h
128 aes_ecb.o: ../../include/openssl/aes.h ../../include/openssl/crypto.h
129 aes_ecb.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
130 aes_ecb.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
131 aes_ecb.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
132 aes_ecb.o: ../../include/openssl/symhacks.h aes_ecb.c aes_locl.h
133 aes_ige.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/bio.h
134 aes_ige.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
135 aes_ige.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
136 aes_ige.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
137 aes_ige.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
138 aes_ige.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
139 aes_ige.o: ../../include/openssl/symhacks.h ../cryptlib.h aes_ige.c aes_locl.h
140 aes_misc.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
141 aes_misc.o: ../../include/openssl/opensslconf.h
142 aes_misc.o: ../../include/openssl/opensslv.h aes_locl.h aes_misc.c
143 aes_ofb.o: ../../include/openssl/aes.h ../../include/openssl/crypto.h
144 aes_ofb.o: ../../include/openssl/e_os2.h ../../include/openssl/modes.h
145 aes_ofb.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
146 aes_ofb.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
147 aes_ofb.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
148 aes_ofb.o: aes_ofb.c
149 aes_wrap.o: ../../e_os.h ../../include/openssl/aes.h
150 aes_wrap.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
151 aes_wrap.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
152 aes_wrap.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
153 aes_wrap.o: ../../include/openssl/opensslconf.h
154 aes_wrap.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
155 aes_wrap.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
156 aes_wrap.o: ../../include/openssl/symhacks.h ../cryptlib.h aes_wrap.c