Makefile 4.5 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

A
Andy Polyakov 已提交
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 28
       aes_ctr.c aes_ige.c aes_wrap.c
LIBOBJ=aes_misc.o aes_ecb.o aes_cfb.o aes_ofb.o aes_ctr.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 44 45 46 47

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)
	$(AR) $(LIB) $(LIBOBJ)
	$(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) > $@
53

54
aes-x86_64.s: asm/aes-x86_64.pl
55
	$(PERL) asm/aes-x86_64.pl $(PERLASM_SCHEME) > $@
56

57 58 59
aes-sparcv9.s: asm/aes-sparcv9.pl
	$(PERL) asm/aes-sparcv9.pl $(CFLAGS) > $@

A
Andy Polyakov 已提交
60 61 62
aes-ppc.s:	asm/aes-ppc.pl
	$(PERL) asm/aes-ppc.pl $(PERLASM_SCHEME) $@

A
Andy Polyakov 已提交
63 64 65
# GNU make "catch all"
aes-%.s:	asm/aes-%.pl;	$(PERL) $< $(CFLAGS) > $@

66
files:
B
Ben Laurie 已提交
67
	$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
68 69 70

links:
	@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
71
	@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
72 73
	@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)

74
install:
A
Andy Polyakov 已提交
75
	@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
76
	@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
77 78 79 80 81 82 83 84 85 86 87 88 89 90
	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:
91
	@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
92
	$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
93 94 95 96 97 98

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

clean:
99
	rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
100 101 102

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

103 104 105 106 107 108 109
aes_cbc.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
aes_cbc.o: ../../include/openssl/opensslconf.h aes_cbc.c aes_locl.h
aes_cfb.o: ../../e_os.h ../../include/openssl/aes.h
aes_cfb.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
aes_cfb.o: aes_cfb.c aes_locl.h
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
110 111 112 113 114
aes_ctr.o: ../../include/openssl/aes.h ../../include/openssl/crypto.h
aes_ctr.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
aes_ctr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
aes_ctr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
aes_ctr.o: ../../include/openssl/symhacks.h aes_ctr.c aes_locl.h
115 116
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 已提交
117 118 119 120 121 122 123
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
124 125 126 127 128
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
aes_ofb.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
aes_ofb.o: ../../include/openssl/opensslconf.h aes_locl.h aes_ofb.c
D
Dr. Stephen Henson 已提交
129 130 131 132 133 134 135 136
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