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_ASM_OBJ=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_ASM_OBJ)
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	$(ARX) $(LIB) $(LIBOBJ)
45	$(RANLIB) $(LIB) || echo Never mind.
46	@touch lib
47
48$(LIBOBJ): $(LIBSRC)
49
50aes-ia64.s: asm/aes-ia64.S
51	$(CC) $(CFLAGS) -E asm/aes-ia64.S > $@
52
53ax86-elf.s: asm/aes-586.pl ../perlasm/x86asm.pl
54	(cd asm; $(PERL) aes-586.pl elf $(CFLAGS) $(PROCESSOR) > ../$@)
55ax86-cof.s: asm/aes-586.pl ../perlasm/x86asm.pl
56	(cd asm; $(PERL) aes-586.pl coff $(CFLAGS) $(PROCESSOR) > ../$@)
57ax86-out.s: asm/aes-586.pl ../perlasm/x86asm.pl
58	(cd asm; $(PERL) aes-586.pl a.out $(CFLAGS) $(PROCESSOR) > ../$@)
59
60aes-x86_64.s: asm/aes-x86_64.pl
61	$(PERL) asm/aes-x86_64.pl $@
62
63files:
64	$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
65
66links:
67	@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
68	@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
69	@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
70
71install:
72	@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
73	@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
74	do  \
75	(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
76	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
77	done;
78
79tags:
80	ctags $(SRC)
81
82tests:
83
84lint:
85	lint -DLINT $(INCLUDES) $(SRC)>fluff
86
87depend:
88	@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
89	$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
90
91dclean:
92	$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
93	mv -f Makefile.new $(MAKEFILE)
94
95clean:
96	rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
97
98# DO NOT DELETE THIS LINE -- make depend depends on it.
99
100aes_cbc.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
101aes_cbc.o: ../../include/openssl/opensslconf.h aes_cbc.c aes_locl.h
102aes_cfb.o: ../../e_os.h ../../include/openssl/aes.h
103aes_cfb.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
104aes_cfb.o: aes_cfb.c aes_locl.h
105aes_core.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
106aes_core.o: ../../include/openssl/fips.h ../../include/openssl/opensslconf.h
107aes_core.o: aes_core.c aes_locl.h
108aes_ctr.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
109aes_ctr.o: ../../include/openssl/opensslconf.h aes_ctr.c aes_locl.h
110aes_ecb.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
111aes_ecb.o: ../../include/openssl/opensslconf.h aes_ecb.c aes_locl.h
112aes_ige.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/bio.h
113aes_ige.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
114aes_ige.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
115aes_ige.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
116aes_ige.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
117aes_ige.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
118aes_ige.o: ../../include/openssl/symhacks.h ../cryptlib.h aes_ige.c aes_locl.h
119aes_misc.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
120aes_misc.o: ../../include/openssl/opensslconf.h
121aes_misc.o: ../../include/openssl/opensslv.h aes_locl.h aes_misc.c
122aes_ofb.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
123aes_ofb.o: ../../include/openssl/opensslconf.h aes_locl.h aes_ofb.c
124aes_wrap.o: ../../e_os.h ../../include/openssl/aes.h
125aes_wrap.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
126aes_wrap.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
127aes_wrap.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
128aes_wrap.o: ../../include/openssl/opensslconf.h
129aes_wrap.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
130aes_wrap.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
131aes_wrap.o: ../../include/openssl/symhacks.h ../cryptlib.h aes_wrap.c
132