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

DIR=	md
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
MAKEFILE=	Makefile.ssl
AR=		ar r

CFLAGS= $(INCLUDES) $(CFLAG)

GENERAL=Makefile
TEST=md2test.c
APPS=

LIB=$(TOP)/libcrypto.a
26
LIBSRC=md2_dgst.c md2_one.c
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
LIBOBJ=md2_dgst.o md2_one.o

SRC= $(LIBSRC)

EXHEADER= md2.h
HEADER=	$(EXHEADER)

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

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

all:	lib

lib:	$(LIBOBJ)
	$(AR) $(LIB) $(LIBOBJ)
43 44
	@echo You may get an error following this line.  Please ignore.
	- $(RANLIB) $(LIB)
45 46 47
	@touch lib

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

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

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

tags:
	ctags $(SRC)

tests:

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

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

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

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

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

B
Bodo Möller 已提交
83
md2_dgst.o: ../../include/openssl/md2.h ../../include/openssl/opensslconf.h
84
md2_dgst.o: ../../include/openssl/opensslv.h md2_dgst.c
85 86
md2_one.o: ../../e_os.h ../../include/openssl/bio.h
md2_one.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
87
md2_one.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
88 89 90
md2_one.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
md2_one.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
md2_one.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
91
md2_one.o: ../../include/openssl/symhacks.h ../cryptlib.h md2_one.c