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