Makefile revision 296341
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) > $@
68
69aes-sparcv9.s: asm/aes-sparcv9.pl
70	$(PERL) asm/aes-sparcv9.pl $(CFLAGS) > $@
71
72aes-ppc.s:	asm/aes-ppc.pl
73	$(PERL) asm/aes-ppc.pl $(PERLASM_SCHEME) $@
74
75aes-parisc.s:	asm/aes-parisc.pl
76	$(PERL) asm/aes-parisc.pl $(PERLASM_SCHEME) $@
77
78aes-mips.S:	asm/aes-mips.pl
79	$(PERL) asm/aes-mips.pl $(PERLASM_SCHEME) $@
80
81# GNU make "catch all"
82aes-%.S:	asm/aes-%.pl;	$(PERL) $< $(PERLASM_SCHEME) > $@
83aes-armv4.o:	aes-armv4.S
84
85files:
86	$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
87
88links:
89	@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
90	@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
91	@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
92
93install:
94	@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
95	@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
96	do  \
97	(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
98	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
99	done;
100
101tags:
102	ctags $(SRC)
103
104tests:
105
106lint:
107	lint -DLINT $(INCLUDES) $(SRC)>fluff
108
109update: depend
110
111depend:
112	@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
113	$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
114
115dclean:
116	$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
117	mv -f Makefile.new $(MAKEFILE)
118
119clean:
120	rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
121
122# DO NOT DELETE THIS LINE -- make depend depends on it.
123
124aes_cbc.o: ../../include/openssl/aes.h ../../include/openssl/modes.h
125aes_cbc.o: ../../include/openssl/opensslconf.h aes_cbc.c
126aes_cfb.o: ../../include/openssl/aes.h ../../include/openssl/modes.h
127aes_cfb.o: ../../include/openssl/opensslconf.h aes_cfb.c
128aes_core.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
129aes_core.o: ../../include/openssl/opensslconf.h aes_core.c aes_locl.h
130aes_ctr.o: ../../include/openssl/aes.h ../../include/openssl/modes.h
131aes_ctr.o: ../../include/openssl/opensslconf.h aes_ctr.c
132aes_ecb.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
133aes_ecb.o: ../../include/openssl/opensslconf.h aes_ecb.c aes_locl.h
134aes_ige.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/bio.h
135aes_ige.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
136aes_ige.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
137aes_ige.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
138aes_ige.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
139aes_ige.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
140aes_ige.o: ../../include/openssl/symhacks.h ../cryptlib.h aes_ige.c aes_locl.h
141aes_misc.o: ../../include/openssl/aes.h ../../include/openssl/crypto.h
142aes_misc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
143aes_misc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
144aes_misc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
145aes_misc.o: ../../include/openssl/symhacks.h aes_locl.h aes_misc.c
146aes_ofb.o: ../../include/openssl/aes.h ../../include/openssl/modes.h
147aes_ofb.o: ../../include/openssl/opensslconf.h aes_ofb.c
148aes_wrap.o: ../../e_os.h ../../include/openssl/aes.h
149aes_wrap.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
150aes_wrap.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
151aes_wrap.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
152aes_wrap.o: ../../include/openssl/opensslconf.h
153aes_wrap.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
154aes_wrap.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
155aes_wrap.o: ../../include/openssl/symhacks.h ../cryptlib.h aes_wrap.c
156