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

DIR=	aes
TOP=	../..
CC=	cc
CPP=	$(CC) -E
INCLUDES=
CFLAG=-g
MAKEDEPPROG=	makedepend
MAKEDEPEND=	$(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
B
Ben Laurie 已提交
13
MAKEFILE=	Makefile
14 15
AR=		ar r

16
AES_ASM_OBJ=aes_core.o aes_cbc.o
17

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

GENERAL=Makefile
23 24
#TEST=aestest.c
TEST=
25 26 27
APPS=

LIB=$(TOP)/libcrypto.a
28
LIBSRC=aes_core.c aes_misc.c aes_ecb.c aes_cbc.c aes_cfb.c aes_ofb.c aes_ctr.c
29
LIBOBJ=aes_misc.o aes_ecb.o aes_cfb.o aes_ofb.o aes_ctr.o $(AES_ASM_OBJ)
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49

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)

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

53
ax86-elf.s: asm/aes-586.pl ../perlasm/x86asm.pl
54
	(cd asm; $(PERL) aes-586.pl elf $(CFLAGS) $(PROCESSOR) > ../$@)
55
ax86-cof.s: asm/aes-586.pl ../perlasm/x86asm.pl
56 57 58
	(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) > ../$@)
59

60
files:
B
Ben Laurie 已提交
61
	$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
62 63 64

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

install: installs

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

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

clean:
94
	rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
95 96 97

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