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