Makefile revision 325335
1#
2# crypto/aes/Makefile
3#
4
5DIR=	aes
6TOP=	../..
7CC=	cc
8CPP=	$(CC) -E
9INCLUDES=
10CFLAG=-g
11MAKEFILE=	Makefile
12AR=		ar r
13
14AES_ENC=aes_core.o aes_cbc.o
15
16CFLAGS= $(INCLUDES) $(CFLAG)
17ASFLAGS= $(INCLUDES) $(ASFLAG)
18AFLAGS= $(ASFLAGS)
19
20GENERAL=Makefile
21#TEST=aestest.c
22TEST=
23APPS=
24
25LIB=$(TOP)/libcrypto.a
26LIBSRC=aes_core.c aes_misc.c aes_ecb.c aes_cbc.c aes_cfb.c aes_ofb.c \
27       aes_ctr.c aes_ige.c aes_wrap.c
28LIBOBJ=aes_misc.o aes_ecb.o aes_cfb.o aes_ofb.o aes_ctr.o aes_ige.o aes_wrap.o \
29       $(AES_ENC)
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)
44	$(AR) $(LIB) $(LIBOBJ)
45	$(RANLIB) $(LIB) || echo Never mind.
46	@touch lib
47
48aes-ia64.s: asm/aes-ia64.S
49	$(CC) $(CFLAGS) -E asm/aes-ia64.S > $@
50
51aes-586.s:	asm/aes-586.pl ../perlasm/x86asm.pl
52	$(PERL) asm/aes-586.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
53vpaes-x86.s:	asm/vpaes-x86.pl ../perlasm/x86asm.pl
54	$(PERL) asm/vpaes-x86.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
55aesni-x86.s:	asm/aesni-x86.pl ../perlasm/x86asm.pl
56	$(PERL) asm/aesni-x86.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
57
58aes-x86_64.s: asm/aes-x86_64.pl
59	$(PERL) asm/aes-x86_64.pl $(PERLASM_SCHEME) > $@
60vpaes-x86_64.s:	asm/vpaes-x86_64.pl
61	$(PERL) asm/vpaes-x86_64.pl $(PERLASM_SCHEME) > $@
62bsaes-x86_64.s:	asm/bsaes-x86_64.pl
63	$(PERL) asm/bsaes-x86_64.pl $(PERLASM_SCHEME) > $@
64aesni-x86_64.s: asm/aesni-x86_64.pl
65	$(PERL) asm/aesni-x86_64.pl $(PERLASM_SCHEME) > $@
66aesni-sha1-x86_64.s:	asm/aesni-sha1-x86_64.pl
67	$(PERL) asm/aesni-sha1-x86_64.pl $(PERLASM_SCHEME) > $@
68aesni-sha256-x86_64.s:	asm/aesni-sha256-x86_64.pl
69	$(PERL) asm/aesni-sha256-x86_64.pl $(PERLASM_SCHEME) > $@
70aesni-mb-x86_64.s:	asm/aesni-mb-x86_64.pl
71	$(PERL) asm/aesni-mb-x86_64.pl $(PERLASM_SCHEME) > $@
72
73aes-sparcv9.s: asm/aes-sparcv9.pl
74	$(PERL) asm/aes-sparcv9.pl $(CFLAGS) > $@
75aest4-sparcv9.s: asm/aest4-sparcv9.pl ../perlasm/sparcv9_modes.pl
76	$(PERL) asm/aest4-sparcv9.pl $(CFLAGS) > $@
77
78aes-ppc.s:	asm/aes-ppc.pl
79	$(PERL) asm/aes-ppc.pl $(PERLASM_SCHEME) $@
80vpaes-ppc.s:	asm/vpaes-ppc.pl
81	$(PERL) asm/vpaes-ppc.pl $(PERLASM_SCHEME) $@
82aesp8-ppc.s:	asm/aesp8-ppc.pl
83	$(PERL) asm/aesp8-ppc.pl $(PERLASM_SCHEME) $@
84
85aes-parisc.s:	asm/aes-parisc.pl
86	$(PERL) asm/aes-parisc.pl $(PERLASM_SCHEME) $@
87
88aes-mips.S:	asm/aes-mips.pl
89	$(PERL) asm/aes-mips.pl $(PERLASM_SCHEME) $@
90
91aesv8-armx.S:	asm/aesv8-armx.pl
92	$(PERL) asm/aesv8-armx.pl $(PERLASM_SCHEME) $@
93aesv8-armx.o:	aesv8-armx.S
94
95# GNU make "catch all"
96aes-%.S:	asm/aes-%.pl;	$(PERL) $< $(PERLASM_SCHEME) > $@
97aes-armv4.o:	aes-armv4.S
98bsaes-%.S:	asm/bsaes-%.pl;	$(PERL) $< $(PERLASM_SCHEME) $@
99bsaes-armv7.o:	bsaes-armv7.S
100
101files:
102	$(PERL) $(TOP)/util/files.pl "AES_ENC=$(AES_ENC)" Makefile >> $(TOP)/MINFO
103
104links:
105	@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
106	@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
107	@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
108
109install:
110	@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
111	@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
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
125update: depend
126
127depend:
128	@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
129	$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
130
131dclean:
132	$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
133	mv -f Makefile.new $(MAKEFILE)
134
135clean:
136	rm -f *.s *.S *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
137
138# DO NOT DELETE THIS LINE -- make depend depends on it.
139
140aes_cbc.o: ../../include/openssl/aes.h ../../include/openssl/modes.h
141aes_cbc.o: ../../include/openssl/opensslconf.h aes_cbc.c
142aes_cfb.o: ../../include/openssl/aes.h ../../include/openssl/modes.h
143aes_cfb.o: ../../include/openssl/opensslconf.h aes_cfb.c
144aes_core.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
145aes_core.o: ../../include/openssl/opensslconf.h aes_core.c aes_locl.h
146aes_ctr.o: ../../include/openssl/aes.h ../../include/openssl/modes.h
147aes_ctr.o: ../../include/openssl/opensslconf.h aes_ctr.c
148aes_ecb.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
149aes_ecb.o: ../../include/openssl/opensslconf.h aes_ecb.c aes_locl.h
150aes_ige.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/bio.h
151aes_ige.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
152aes_ige.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
153aes_ige.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
154aes_ige.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
155aes_ige.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
156aes_ige.o: ../../include/openssl/symhacks.h ../cryptlib.h aes_ige.c aes_locl.h
157aes_misc.o: ../../include/openssl/aes.h ../../include/openssl/crypto.h
158aes_misc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
159aes_misc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
160aes_misc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
161aes_misc.o: ../../include/openssl/symhacks.h aes_locl.h aes_misc.c
162aes_ofb.o: ../../include/openssl/aes.h ../../include/openssl/modes.h
163aes_ofb.o: ../../include/openssl/opensslconf.h aes_ofb.c
164aes_wrap.o: ../../e_os.h ../../include/openssl/aes.h
165aes_wrap.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
166aes_wrap.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
167aes_wrap.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
168aes_wrap.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
169aes_wrap.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
170aes_wrap.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
171aes_wrap.o: ../../include/openssl/symhacks.h ../cryptlib.h aes_wrap.c
172