]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/aes/Makefile
AES x86_64 assembler implementation.
[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
ed65fab9 14AES_ASM_OBJ=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
97879bcd 26LIBSRC=aes_core.c aes_misc.c aes_ecb.c aes_cbc.c aes_cfb.c aes_ofb.c aes_ctr.c
ed65fab9 27LIBOBJ=aes_misc.o aes_ecb.o aes_cfb.o aes_ofb.o aes_ctr.o $(AES_ASM_OBJ)
6f9079fd
RL
28
29SRC= $(LIBSRC)
30
31EXHEADER= aes.h
32HEADER= aes_locl.h $(EXHEADER)
33
34ALL= $(GENERAL) $(SRC) $(HEADER)
35
36top:
37 (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
38
39all: lib
40
41lib: $(LIBOBJ)
42 $(AR) $(LIB) $(LIBOBJ)
43 $(RANLIB) $(LIB) || echo Never mind.
44 @touch lib
45
46$(LIBOBJ): $(LIBSRC)
47
67ea999d 48aes-ia64.s: asm/aes-ia64.S
33c3ecf7
AP
49 $(CC) $(CFLAGS) -E asm/aes-ia64.S > $@
50
67ea999d 51ax86-elf.s: asm/aes-586.pl ../perlasm/x86asm.pl
556b8f3f 52 (cd asm; $(PERL) aes-586.pl elf $(CFLAGS) $(PROCESSOR) > ../$@)
67ea999d 53ax86-cof.s: asm/aes-586.pl ../perlasm/x86asm.pl
556b8f3f
AP
54 (cd asm; $(PERL) aes-586.pl coff $(CFLAGS) $(PROCESSOR) > ../$@)
55ax86-out.s: asm/aes-586.pl ../perlasm/x86asm.pl
56 (cd asm; $(PERL) aes-586.pl a.out $(CFLAGS) $(PROCESSOR) > ../$@)
045d3285 57
d8518521
AP
58aes-x86_64.s: asm/aes-x86_64.pl
59 $(PERL) asm/aes-x86_64.pl $@
60
6f9079fd 61files:
42ba5d23 62 $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
6f9079fd
RL
63
64links:
6f9079fd 65 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
3adb8c38 66 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
6f9079fd
RL
67 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
68
ce92b6eb 69install:
81a86fcf 70 @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
a2ac429d 71 @headerlist="$(EXHEADER)"; for i in $$headerlist ; \
6f9079fd
RL
72 do \
73 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
74 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
75 done;
76
77tags:
78 ctags $(SRC)
79
80tests:
81
82lint:
83 lint -DLINT $(INCLUDES) $(SRC)>fluff
84
85depend:
ce92b6eb 86 @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
001ab3ab 87 $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
6f9079fd
RL
88
89dclean:
90 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
91 mv -f Makefile.new $(MAKEFILE)
92
93clean:
67ea999d 94 rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
6f9079fd
RL
95
96# DO NOT DELETE THIS LINE -- make depend depends on it.
97
ce92b6eb
AP
98aes_cbc.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
99aes_cbc.o: ../../include/openssl/opensslconf.h aes_cbc.c aes_locl.h
100aes_cfb.o: ../../e_os.h ../../include/openssl/aes.h
101aes_cfb.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
102aes_cfb.o: aes_cfb.c aes_locl.h
103aes_core.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
104aes_core.o: ../../include/openssl/opensslconf.h aes_core.c aes_locl.h
105aes_ctr.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
106aes_ctr.o: ../../include/openssl/opensslconf.h aes_ctr.c aes_locl.h
107aes_ecb.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
108aes_ecb.o: ../../include/openssl/opensslconf.h aes_ecb.c aes_locl.h
109aes_misc.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
110aes_misc.o: ../../include/openssl/opensslconf.h
111aes_misc.o: ../../include/openssl/opensslv.h aes_locl.h aes_misc.c
112aes_ofb.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
113aes_ofb.o: ../../include/openssl/opensslconf.h aes_locl.h aes_ofb.c