]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/aes/Makefile
Remove fipscanister build functionality from makefiles.
[thirdparty/openssl.git] / crypto / aes / Makefile
CommitLineData
6f9079fd
RL
1#
2# crypto/aes/Makefile
3#
4
5DIR= aes
6TOP= ../..
7CC= cc
8CPP= $(CC) -E
9INCLUDES=
10CFLAG=-g
42ba5d23 11MAKEFILE= Makefile
6f9079fd
RL
12AR= ar r
13
874a3757 14AES_ENC=aes_core.o aes_cbc.o
d0590fe6 15
6f9079fd 16CFLAGS= $(INCLUDES) $(CFLAG)
33c3ecf7 17ASFLAGS= $(INCLUDES) $(ASFLAG)
fbdce13e 18AFLAGS= $(ASFLAGS)
6f9079fd
RL
19
20GENERAL=Makefile
72165799
RL
21#TEST=aestest.c
22TEST=
6f9079fd
RL
23APPS=
24
25LIB=$(TOP)/libcrypto.a
aa6d1a0c 26LIBSRC=aes_core.c aes_misc.c aes_ecb.c aes_cbc.c aes_cfb.c aes_ofb.c \
874a3757 27 aes_ige.c aes_wrap.c
ea746dad 28LIBOBJ=aes_misc.o aes_ecb.o aes_cfb.o aes_ofb.o aes_ige.o aes_wrap.o \
0ddd3ea2 29 $(AES_ENC)
6f9079fd
RL
30
31SRC= $(LIBSRC)
32
33EXHEADER= aes.h
34HEADER= aes_locl.h $(EXHEADER)
35
36ALL= $(GENERAL) $(SRC) $(HEADER)
37
38top:
39 (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
40
41all: lib
42
43lib: $(LIBOBJ)
f072785e 44 $(AR) $(LIB) $(LIBOBJ)
6f9079fd
RL
45 $(RANLIB) $(LIB) || echo Never mind.
46 @touch lib
47
67ea999d 48aes-ia64.s: asm/aes-ia64.S
33c3ecf7
AP
49 $(CC) $(CFLAGS) -E asm/aes-ia64.S > $@
50
fa8e921f
AP
51aes-586.s: asm/aes-586.pl ../perlasm/x86asm.pl
52 $(PERL) asm/aes-586.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
8ca28da0
AP
53vpaes-x86.s: asm/vpaes-x86.pl ../perlasm/x86asm.pl
54 $(PERL) asm/vpaes-x86.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
d64a7232
AP
55aesni-x86.s: asm/aesni-x86.pl ../perlasm/x86asm.pl
56 $(PERL) asm/aesni-x86.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
045d3285 57
d8518521 58aes-x86_64.s: asm/aes-x86_64.pl
1416aec6 59 $(PERL) asm/aes-x86_64.pl $(PERLASM_SCHEME) > $@
8ca28da0
AP
60vpaes-x86_64.s: asm/vpaes-x86_64.pl
61 $(PERL) asm/vpaes-x86_64.pl $(PERLASM_SCHEME) > $@
993adc05
AP
62bsaes-x86_64.s: asm/bsaes-x86_64.pl
63 $(PERL) asm/bsaes-x86_64.pl $(PERLASM_SCHEME) > $@
d64a7232
AP
64aesni-x86_64.s: asm/aesni-x86_64.pl
65 $(PERL) asm/aesni-x86_64.pl $(PERLASM_SCHEME) > $@
c608171d
AP
66aesni-sha1-x86_64.s: asm/aesni-sha1-x86_64.pl
67 $(PERL) asm/aesni-sha1-x86_64.pl $(PERLASM_SCHEME) > $@
8a97a330
AP
68aesni-sha256-x86_64.s: asm/aesni-sha256-x86_64.pl
69 $(PERL) asm/aesni-sha256-x86_64.pl $(PERLASM_SCHEME) > $@
6bcb68da
AP
70aesni-mb-x86_64.s: asm/aesni-mb-x86_64.pl
71 $(PERL) asm/aesni-mb-x86_64.pl $(PERLASM_SCHEME) > $@
d8518521 72
064f6cb6
AP
73aes-sparcv9.s: asm/aes-sparcv9.pl
74 $(PERL) asm/aes-sparcv9.pl $(CFLAGS) > $@
c5f6da54
AP
75aest4-sparcv9.s: asm/aest4-sparcv9.pl
76 $(PERL) asm/aest4-sparcv9.pl $(CFLAGS) > $@
064f6cb6 77
addd641f
AP
78aes-ppc.s: asm/aes-ppc.pl
79 $(PERL) asm/aes-ppc.pl $(PERLASM_SCHEME) $@
b5c54c91
AP
80vpaes-ppc.s: asm/vpaes-ppc.pl
81 $(PERL) asm/vpaes-ppc.pl $(PERLASM_SCHEME) $@
de51e830
AP
82aesp8-ppc.s: asm/aesp8-ppc.pl
83 $(PERL) asm/aesp8-ppc.pl $(PERLASM_SCHEME) $@
addd641f 84
cb3b9b13
AP
85aes-parisc.s: asm/aes-parisc.pl
86 $(PERL) asm/aes-parisc.pl $(PERLASM_SCHEME) $@
87
227a822a 88aes-mips.S: asm/aes-mips.pl
be6ddecb
AP
89 $(PERL) asm/aes-mips.pl $(PERLASM_SCHEME) $@
90
ddacb8f2
AP
91aesv8-armx.S: asm/aesv8-armx.pl
92 $(PERL) asm/aesv8-armx.pl $(PERLASM_SCHEME) $@
93aesv8-armx.o: aesv8-armx.S
94
b900df52 95# GNU make "catch all"
1e863180
AP
96aes-%.S: asm/aes-%.pl; $(PERL) $< $(PERLASM_SCHEME) $@
97aes-armv4.o: aes-armv4.S
75fe4223
AP
98bsaes-%.S: asm/bsaes-%.pl; $(PERL) $< $(PERLASM_SCHEME) $@
99bsaes-armv7.o: bsaes-armv7.S
b900df52 100
6f9079fd 101files:
4e232289 102 $(PERL) $(TOP)/util/files.pl "AES_ENC=$(AES_ENC)" Makefile >> $(TOP)/MINFO
6f9079fd
RL
103
104links:
6f9079fd 105 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
3adb8c38 106 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
6f9079fd
RL
107 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
108
ce92b6eb 109install:
81a86fcf 110 @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
a2ac429d 111 @headerlist="$(EXHEADER)"; for i in $$headerlist ; \
6f9079fd
RL
112 do \
113 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
114 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
115 done;
116
117tags:
118 ctags $(SRC)
119
120tests:
121
122lint:
123 lint -DLINT $(INCLUDES) $(SRC)>fluff
124
125depend:
ce92b6eb 126 @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
001ab3ab 127 $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
6f9079fd
RL
128
129dclean:
130 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
131 mv -f Makefile.new $(MAKEFILE)
132
133clean:
67ea999d 134 rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
6f9079fd
RL
135
136# DO NOT DELETE THIS LINE -- make depend depends on it.
137
98a7edf9
DSH
138aes_cbc.o: ../../include/openssl/aes.h ../../include/openssl/modes.h
139aes_cbc.o: ../../include/openssl/opensslconf.h aes_cbc.c
140aes_cfb.o: ../../include/openssl/aes.h ../../include/openssl/modes.h
141aes_cfb.o: ../../include/openssl/opensslconf.h aes_cfb.c
b7056b64
DSH
142aes_core.o: ../../include/openssl/aes.h ../../include/openssl/crypto.h
143aes_core.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
144aes_core.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
145aes_core.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
146aes_core.o: ../../include/openssl/symhacks.h aes_core.c aes_locl.h
98a7edf9
DSH
147aes_ecb.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
148aes_ecb.o: ../../include/openssl/opensslconf.h aes_ecb.c aes_locl.h
4d7aff70
DSH
149aes_ige.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/bio.h
150aes_ige.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
151aes_ige.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
152aes_ige.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
153aes_ige.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
154aes_ige.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
155aes_ige.o: ../../include/openssl/symhacks.h ../cryptlib.h aes_ige.c aes_locl.h
ce92b6eb
AP
156aes_misc.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
157aes_misc.o: ../../include/openssl/opensslconf.h
158aes_misc.o: ../../include/openssl/opensslv.h aes_locl.h aes_misc.c
98a7edf9
DSH
159aes_ofb.o: ../../include/openssl/aes.h ../../include/openssl/modes.h
160aes_ofb.o: ../../include/openssl/opensslconf.h aes_ofb.c
fe591284
DSH
161aes_wrap.o: ../../e_os.h ../../include/openssl/aes.h
162aes_wrap.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
163aes_wrap.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
164aes_wrap.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
4cfeb00b 165aes_wrap.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
fe591284
DSH
166aes_wrap.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
167aes_wrap.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
168aes_wrap.o: ../../include/openssl/symhacks.h ../cryptlib.h aes_wrap.c