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
|
|
|
|
TEST=md5test.c
|
2000-06-19 19:38:22 +02:00
|
|
|
APPS=
|
1998-12-21 11:56:39 +01: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)
|
|
|
|
$(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;' > $@
|
|
|
|
|
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
|
|
|
|
|
|
|
links:
|
1999-04-29 14:46:59 +02: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 11:56:39 +01:00
|
|
|
|
|
|
|
install:
|
2005-05-16 00:23:26 +02:00
|
|
|
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
2004-11-03 00:55:01 +01:00
|
|
|
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
1998-12-21 11:56:39 +01:00
|
|
|
do \
|
1999-04-29 23:52:08 +02:00
|
|
|
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
|
|
|
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
1998-12-21 11:56:39 +01:00
|
|
|
done;
|
|
|
|
|
|
|
|
tags:
|
|
|
|
ctags $(SRC)
|
|
|
|
|
|
|
|
tests:
|
|
|
|
|
|
|
|
lint:
|
|
|
|
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
|
|
|
|
|
|
|
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
|
|
|
|
2011-08-14 15:47:30 +02:00
|
|
|
md5_dgst.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
|
|
|
md5_dgst.o: ../../include/openssl/md5.h ../../include/openssl/opensslconf.h
|
|
|
|
md5_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
|
|
|
md5_dgst.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
|
|
|
md5_dgst.o: ../../include/openssl/symhacks.h ../md32_common.h md5_dgst.c
|
2001-07-31 19:07:24 +02:00
|
|
|
md5_dgst.o: 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
|