Makefile revision 167613
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
28LIBOBJ=aes_misc.o aes_ecb.o aes_cfb.o aes_ofb.o aes_ctr.o aes_ige.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	$(AR) $(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
60files:
61	$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
62
63links:
64	@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
65	@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
66	@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
67
68install:
69	@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
70	@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
71	do  \
72	(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
73	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
74	done;
75
76tags:
77	ctags $(SRC)
78
79tests:
80
81lint:
82	lint -DLINT $(INCLUDES) $(SRC)>fluff
83
84depend:
85	@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
86	$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
87
88dclean:
89	$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
90	mv -f Makefile.new $(MAKEFILE)
91
92clean:
93	rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
94
95# DO NOT DELETE THIS LINE -- make depend depends on it.
96
97aes_cbc.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
98aes_cbc.o: ../../include/openssl/opensslconf.h aes_cbc.c aes_locl.h
99aes_cfb.o: ../../e_os.h ../../include/openssl/aes.h
100aes_cfb.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
101aes_cfb.o: aes_cfb.c aes_locl.h
102aes_core.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
103aes_core.o: ../../include/openssl/opensslconf.h aes_core.c aes_locl.h
104aes_ctr.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
105aes_ctr.o: ../../include/openssl/opensslconf.h aes_ctr.c aes_locl.h
106aes_ecb.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
107aes_ecb.o: ../../include/openssl/opensslconf.h aes_ecb.c aes_locl.h
108aes_ige.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/bio.h
109aes_ige.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
110aes_ige.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
111aes_ige.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
112aes_ige.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
113aes_ige.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
114aes_ige.o: ../../include/openssl/symhacks.h ../cryptlib.h aes_ige.c aes_locl.h
115aes_misc.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
116aes_misc.o: ../../include/openssl/opensslconf.h
117aes_misc.o: ../../include/openssl/opensslv.h aes_locl.h aes_misc.c
118aes_ofb.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
119aes_ofb.o: ../../include/openssl/opensslconf.h aes_locl.h aes_ofb.c
120