Makefile 2.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
#
# SSLeay/crypto/blowfish/Makefile
#

DIR=	bf
TOP=	../..
CC=	cc
CPP=	$(CC) -E
INCLUDES=
CFLAG=-g
11 12
INSTALL_PREFIX=
OPENSSLDIR=     /usr/local/ssl
13
INSTALLTOP=/usr/local/ssl
B
Ben Laurie 已提交
14
MAKE=		make
15 16
MAKEDEPPROG=	makedepend
MAKEDEPEND=	$(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
B
Ben Laurie 已提交
17
MAKEFILE=	Makefile
18 19 20 21 22 23 24
AR=		ar r

BF_ENC=		bf_enc.o
# or use
#DES_ENC=	bx86-elf.o

CFLAGS= $(INCLUDES) $(CFLAG)
25
ASFLAGS= $(INCLUDES) $(ASFLAG)
26
AFLAGS= $(ASFLAGS)
27 28 29 30 31 32

GENERAL=Makefile
TEST=bftest.c
APPS=

LIB=$(TOP)/libcrypto.a
33 34
LIBSRC=bf_skey.c bf_ecb.c bf_enc.c bf_cfb64.c bf_ofb64.c 
LIBOBJ=bf_skey.o bf_ecb.o $(BF_ENC) bf_cfb64.o bf_ofb64.o
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49

SRC= $(LIBSRC)

EXHEADER= blowfish.h
HEADER=	bf_pi.h bf_locl.h $(EXHEADER)

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

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

all:	lib

lib:	$(LIBOBJ)
	$(AR) $(LIB) $(LIBOBJ)
50
	$(RANLIB) $(LIB) || echo Never mind.
51 52
	@touch lib

53
# ELF
54
bx86-elf.s: asm/bf-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl
55 56
	(cd asm; $(PERL) bf-586.pl elf $(CFLAGS) $(PROCESSOR) > ../$@)
# COFF
57
bx86-cof.s: asm/bf-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl
58
	(cd asm; $(PERL) bf-586.pl coff $(CFLAGS) $(PROCESSOR) > ../$@)
59
# a.out
60 61
bx86-out.s: asm/bf-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl
	(cd asm; $(PERL) bf-586.pl a.out $(CFLAGS) $(PROCESSOR) > ../$@)
62

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

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

71 72 73
install: installs

installs:
74
	@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
75
	do  \
76 77
	(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
78 79 80 81 82 83 84 85 86 87 88
	done;

tags:
	ctags $(SRC)

tests:

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

depend:
89
	$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
90 91

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

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

# DO NOT DELETE THIS LINE -- make depend depends on it.
B
Ben Laurie 已提交
99

100
bf_cfb64.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h
R
Richard Levitte 已提交
101
bf_cfb64.o: ../../include/openssl/opensslconf.h bf_cfb64.c bf_locl.h
102 103
bf_ecb.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h
bf_ecb.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
R
Richard Levitte 已提交
104
bf_ecb.o: bf_ecb.c bf_locl.h
105
bf_enc.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h
R
Richard Levitte 已提交
106
bf_enc.o: ../../include/openssl/opensslconf.h bf_enc.c bf_locl.h
107
bf_ofb64.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h
R
Richard Levitte 已提交
108
bf_ofb64.o: ../../include/openssl/opensslconf.h bf_locl.h bf_ofb64.c
109
bf_skey.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h
R
Richard Levitte 已提交
110
bf_skey.o: ../../include/openssl/opensslconf.h bf_locl.h bf_pi.h bf_skey.c