Makefile.ssl 2.2 KB
Newer Older
1 2 3 4 5 6 7 8 9
#
# SSLeay/crypto/mdc2/Makefile
#

DIR=	mdc2
TOP=	../..
CC=	cc
INCLUDES=
CFLAG=-g
10 11
INSTALL_PREFIX=
OPENSSLDIR=     /usr/local/ssl
12 13
INSTALLTOP=/usr/local/ssl
MAKE=		make -f Makefile.ssl
14 15
MAKEDEPPROG=	makedepend
MAKEDEPEND=	$(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
MAKEFILE=	Makefile.ssl
AR=		ar r

CFLAGS= $(INCLUDES) $(CFLAG)

GENERAL=Makefile
TEST= mdc2test.c
APPS=

LIB=$(TOP)/libcrypto.a
LIBSRC=mdc2dgst.c mdc2_one.c
LIBOBJ=mdc2dgst.o mdc2_one.o

SRC= $(LIBSRC)

EXHEADER= mdc2.h
HEADER=	$(EXHEADER)

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

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

all:	lib

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

files:
47
	$(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
48 49

links:
50
	@$(TOP)/util/point.sh Makefile.ssl Makefile
51 52 53
	@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
	@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
	@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
54 55 56 57

install:
	@for i in $(EXHEADER) ; \
	do  \
58 59
	(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
60 61 62 63 64 65 66 67 68 69 70
	done;

tags:
	ctags $(SRC)

tests:

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

depend:
71
	$(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
72 73

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

clean:
78
	rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
79 80

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

82 83 84
mdc2_one.o: ../../e_os.h ../../include/openssl/bio.h
mdc2_one.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
mdc2_one.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h
85 86
mdc2_one.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
mdc2_one.o: ../../include/openssl/mdc2.h ../../include/openssl/opensslconf.h
D
 
Dr. Stephen Henson 已提交
87
mdc2_one.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
R
Richard Levitte 已提交
88
mdc2_one.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
89
mdc2_one.o: ../cryptlib.h
B
Bodo Möller 已提交
90
mdc2dgst.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h
B
Ben Laurie 已提交
91
mdc2dgst.o: ../../include/openssl/mdc2.h ../../include/openssl/opensslconf.h