Makefile 4.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
#
# crypto/aes/Makefile
#

DIR=	aes
TOP=	../..
CC=	cc
CPP=	$(CC) -E
INCLUDES=
CFLAG=-g
B
Ben Laurie 已提交
11
MAKEFILE=	Makefile
12 13
AR=		ar r

14
AES_ENC=aes_core.o aes_cbc.o
15

16
CFLAGS= $(INCLUDES) $(CFLAG)
17
ASFLAGS= $(INCLUDES) $(ASFLAG)
A
Andy Polyakov 已提交
18
AFLAGS= $(ASFLAGS)
19 20

GENERAL=Makefile
21 22
#TEST=aestest.c
TEST=
23 24 25
APPS=

LIB=$(TOP)/libcrypto.a
B
Ben Laurie 已提交
26
LIBSRC=aes_core.c aes_misc.c aes_ecb.c aes_cbc.c aes_cfb.c aes_ofb.c \
27
       aes_ige.c aes_wrap.c
28
LIBOBJ=aes_misc.o aes_ecb.o aes_cfb.o aes_ofb.o aes_ige.o aes_wrap.o \
A
Andy Polyakov 已提交
29
       $(AES_ENC)
30 31 32 33 34 35 36 37 38 39 40 41 42 43

SRC= $(LIBSRC)

EXHEADER= aes.h
HEADER= aes_locl.h $(EXHEADER)

ALL=    $(GENERAL) $(SRC) $(HEADER)

top:
	(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)

all:	lib

lib:	$(LIBOBJ)
44
	$(ARX) $(LIB) $(LIBOBJ)
45 46 47
	$(RANLIB) $(LIB) || echo Never mind.
	@touch lib

48
aes-ia64.s: asm/aes-ia64.S
49 50
	$(CC) $(CFLAGS) -E asm/aes-ia64.S > $@

A
Andy Polyakov 已提交
51 52
aes-586.s:	asm/aes-586.pl ../perlasm/x86asm.pl
	$(PERL) asm/aes-586.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
A
Andy Polyakov 已提交
53 54
aesni-x86.s:	asm/aesni-x86.pl ../perlasm/x86asm.pl
	$(PERL) asm/aesni-x86.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
55

56
aes-x86_64.s: asm/aes-x86_64.pl
57
	$(PERL) asm/aes-x86_64.pl $(PERLASM_SCHEME) > $@
A
Andy Polyakov 已提交
58 59
aesni-x86_64.s: asm/aesni-x86_64.pl
	$(PERL) asm/aesni-x86_64.pl $(PERLASM_SCHEME) > $@
60

61 62 63
aes-sparcv9.s: asm/aes-sparcv9.pl
	$(PERL) asm/aes-sparcv9.pl $(CFLAGS) > $@

A
Andy Polyakov 已提交
64 65 66
aes-ppc.s:	asm/aes-ppc.pl
	$(PERL) asm/aes-ppc.pl $(PERLASM_SCHEME) $@

A
Andy Polyakov 已提交
67 68 69
aes-parisc.s:	asm/aes-parisc.pl
	$(PERL) asm/aes-parisc.pl $(PERLASM_SCHEME) $@

A
Andy Polyakov 已提交
70
# GNU make "catch all"
71
aes-%.s:	asm/aes-%.pl;	$(PERL) $< $(PERLASM_SCHEME) $@
A
Andy Polyakov 已提交
72

73
files:
B
Ben Laurie 已提交
74
	$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
75 76 77

links:
	@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
78
	@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
79 80
	@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)

81
install:
A
Andy Polyakov 已提交
82
	@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
83
	@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
84 85 86 87 88 89 90 91 92 93 94 95 96 97
	do  \
	(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
	done;

tags:
	ctags $(SRC)

tests:

lint:
	lint -DLINT $(INCLUDES) $(SRC)>fluff

depend:
98
	@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
99
	$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
100 101 102 103 104 105

dclean:
	$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
	mv -f Makefile.new $(MAKEFILE)

clean:
106
	rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
107 108 109

# DO NOT DELETE THIS LINE -- make depend depends on it.

A
Andy Polyakov 已提交
110 111 112 113
aes_cbc.o: ../../include/openssl/aes.h ../../include/openssl/modes.h
aes_cbc.o: ../../include/openssl/opensslconf.h aes_cbc.c
aes_cfb.o: ../../include/openssl/aes.h ../../include/openssl/modes.h
aes_cfb.o: ../../include/openssl/opensslconf.h aes_cfb.c
114 115 116 117
aes_core.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
aes_core.o: ../../include/openssl/opensslconf.h aes_core.c aes_locl.h
aes_ecb.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
aes_ecb.o: ../../include/openssl/opensslconf.h aes_ecb.c aes_locl.h
D
Dr. Stephen Henson 已提交
118 119 120 121 122 123 124
aes_ige.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/bio.h
aes_ige.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
aes_ige.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
aes_ige.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
aes_ige.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
aes_ige.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
aes_ige.o: ../../include/openssl/symhacks.h ../cryptlib.h aes_ige.c aes_locl.h
125 126 127
aes_misc.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
aes_misc.o: ../../include/openssl/opensslconf.h
aes_misc.o: ../../include/openssl/opensslv.h aes_locl.h aes_misc.c
A
Andy Polyakov 已提交
128 129
aes_ofb.o: ../../include/openssl/aes.h ../../include/openssl/modes.h
aes_ofb.o: ../../include/openssl/opensslconf.h aes_ofb.c
D
Dr. Stephen Henson 已提交
130 131 132 133 134 135 136 137
aes_wrap.o: ../../e_os.h ../../include/openssl/aes.h
aes_wrap.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
aes_wrap.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
aes_wrap.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
aes_wrap.o: ../../include/openssl/opensslconf.h
aes_wrap.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
aes_wrap.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
aes_wrap.o: ../../include/openssl/symhacks.h ../cryptlib.h aes_wrap.c