1998-12-21 10:56:39 +00:00
|
|
|
#
|
2006-02-04 01:45:59 +00:00
|
|
|
# OpenSSL/crypto/md5/Makefile
|
1998-12-21 10:56:39 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
DIR= md5
|
|
|
|
TOP= ../..
|
|
|
|
CC= cc
|
|
|
|
CPP= $(CC) -E
|
2003-05-29 22:20:47 +00:00
|
|
|
INCLUDES=-I.. -I$(TOP) -I../../include
|
1998-12-21 10:56:39 +00:00
|
|
|
CFLAG=-g
|
2005-03-30 13:05:57 +00:00
|
|
|
MAKEFILE= Makefile
|
1998-12-21 10:56:39 +00:00
|
|
|
AR= ar r
|
|
|
|
|
|
|
|
MD5_ASM_OBJ=
|
|
|
|
|
|
|
|
CFLAGS= $(INCLUDES) $(CFLAG)
|
2003-05-29 22:20:47 +00:00
|
|
|
ASFLAGS= $(INCLUDES) $(ASFLAG)
|
2004-08-29 21:36:37 +00:00
|
|
|
AFLAGS= $(ASFLAGS)
|
1999-12-25 16:08:31 +00:00
|
|
|
|
1998-12-21 10:56:39 +00:00
|
|
|
GENERAL=Makefile
|
|
|
|
TEST=md5test.c
|
2000-06-19 17:38:22 +00:00
|
|
|
APPS=
|
1998-12-21 10:56:39 +00:00
|
|
|
|
|
|
|
LIB=$(TOP)/libcrypto.a
|
|
|
|
LIBSRC=md5_dgst.c md5_one.c
|
|
|
|
LIBOBJ=md5_dgst.o md5_one.o $(MD5_ASM_OBJ)
|
|
|
|
|
|
|
|
SRC= $(LIBSRC)
|
|
|
|
|
|
|
|
EXHEADER= md5.h
|
|
|
|
HEADER= md5_locl.h $(EXHEADER)
|
|
|
|
|
|
|
|
ALL= $(GENERAL) $(SRC) $(HEADER)
|
|
|
|
|
|
|
|
top:
|
|
|
|
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
|
|
|
|
|
|
|
all: lib
|
|
|
|
|
|
|
|
lib: $(LIBOBJ)
|
2011-01-26 16:08:08 +00:00
|
|
|
$(ARX) $(LIB) $(LIBOBJ)
|
2001-03-09 14:01:42 +00:00
|
|
|
$(RANLIB) $(LIB) || echo Never mind.
|
1998-12-21 10:56:39 +00:00
|
|
|
@touch lib
|
|
|
|
|
2008-01-11 13:15:11 +00:00
|
|
|
md5-586.s: asm/md5-586.pl ../perlasm/x86asm.pl
|
|
|
|
$(PERL) asm/md5-586.pl $(PERLASM_SCHEME) $(CFLAGS) > $@
|
1998-12-21 10:56:39 +00:00
|
|
|
|
2008-11-12 08:19:04 +00:00
|
|
|
md5-x86_64.s: asm/md5-x86_64.pl
|
|
|
|
$(PERL) asm/md5-x86_64.pl $(PERLASM_SCHEME) > $@
|
2005-05-03 22:59:17 +00:00
|
|
|
|
2005-07-19 22:37:57 +00:00
|
|
|
md5-ia64.s: asm/md5-ia64.S
|
|
|
|
$(CC) $(CFLAGS) -E asm/md5-ia64.S | \
|
|
|
|
$(PERL) -ne 's/;\s+/;\n/g; print;' > $@
|
|
|
|
|
1998-12-21 10:56:39 +00:00
|
|
|
files:
|
2005-03-30 13:05:57 +00:00
|
|
|
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
1998-12-21 10:56:39 +00:00
|
|
|
|
|
|
|
links:
|
1999-04-29 12:46:59 +00:00
|
|
|
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
|
|
|
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
|
|
|
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
1998-12-21 10:56:39 +00:00
|
|
|
|
|
|
|
install:
|
2005-05-15 22:23:26 +00:00
|
|
|
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
2004-11-02 23:55:01 +00:00
|
|
|
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
1998-12-21 10:56:39 +00:00
|
|
|
do \
|
1999-04-29 21:52:08 +00:00
|
|
|
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
|
|
|
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
1998-12-21 10:56:39 +00:00
|
|
|
done;
|
|
|
|
|
|
|
|
tags:
|
|
|
|
ctags $(SRC)
|
|
|
|
|
|
|
|
tests:
|
|
|
|
|
|
|
|
lint:
|
|
|
|
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
|
|
|
|
|
|
|
depend:
|
2005-05-16 16:55:47 +00:00
|
|
|
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
2002-10-09 13:25:12 +00:00
|
|
|
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
1998-12-21 10:56:39 +00:00
|
|
|
|
|
|
|
dclean:
|
1999-04-01 12:34:33 +00:00
|
|
|
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
1998-12-21 10:56:39 +00:00
|
|
|
mv -f Makefile.new $(MAKEFILE)
|
|
|
|
|
|
|
|
clean:
|
2005-02-06 13:23:34 +00:00
|
|
|
rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
1998-12-21 10:56:39 +00:00
|
|
|
|
|
|
|
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
1999-03-06 14:32:48 +00:00
|
|
|
|
2002-12-28 02:42:05 +00:00
|
|
|
md5_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/md5.h
|
|
|
|
md5_dgst.o: ../../include/openssl/opensslconf.h
|
2001-07-31 17:07:24 +00:00
|
|
|
md5_dgst.o: ../../include/openssl/opensslv.h ../md32_common.h md5_dgst.c
|
|
|
|
md5_dgst.o: md5_locl.h
|
2002-12-05 01:55:48 +00:00
|
|
|
md5_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
|
|
|
md5_one.o: ../../include/openssl/md5.h ../../include/openssl/opensslconf.h
|
2004-05-17 19:26:06 +00:00
|
|
|
md5_one.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
|
|
|
md5_one.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
|
|
|
md5_one.o: ../../include/openssl/symhacks.h md5_one.c
|