Makefile 3.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_ASM_OBJ=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
26
LIBSRC=aes_core.c aes_misc.c aes_ecb.c aes_cbc.c aes_cfb.c aes_ofb.c aes_ctr.c
27
LIBOBJ=aes_misc.o aes_ecb.o aes_cfb.o aes_ofb.o aes_ctr.o $(AES_ASM_OBJ)
28 29 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

$(LIBOBJ): $(LIBSRC)

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

51
ax86-elf.s: asm/aes-586.pl ../perlasm/x86asm.pl
52
	(cd asm; $(PERL) aes-586.pl elf $(CFLAGS) $(PROCESSOR) > ../$@)
53
ax86-cof.s: asm/aes-586.pl ../perlasm/x86asm.pl
54 55 56
	(cd asm; $(PERL) aes-586.pl coff $(CFLAGS) $(PROCESSOR) > ../$@)
ax86-out.s: asm/aes-586.pl ../perlasm/x86asm.pl
	(cd asm; $(PERL) aes-586.pl a.out $(CFLAGS) $(PROCESSOR) > ../$@)
57

58 59 60
aes-x86_64.s: asm/aes-x86_64.pl
	$(PERL) asm/aes-x86_64.pl $@

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

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

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

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

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

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

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

101 102 103 104 105
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
106
aes_x86core.o: ../../include/openssl/aes.h aes_locl.h
107 108 109 110 111 112 113 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_ctr.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
aes_ctr.o: ../../include/openssl/opensslconf.h aes_ctr.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
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