Makefile 2.5 KB
Newer Older
1
#
2
# OpenSSL/crypto/ripemd/Makefile
3 4 5 6 7 8 9 10
#

DIR=    ripemd
TOP=    ../..
CC=     cc
CPP=    $(CC) -E
INCLUDES=
CFLAG=-g
B
Ben Laurie 已提交
11
MAKEFILE=       Makefile
12 13 14 15 16
AR=             ar r

RIP_ASM_OBJ=

CFLAGS= $(INCLUDES) $(CFLAG)
17
ASFLAGS= $(INCLUDES) $(ASFLAG)
18
AFLAGS= $(ASFLAGS)
19 20 21

GENERAL=Makefile
TEST=rmdtest.c
22
APPS=
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41

LIB=$(TOP)/libcrypto.a
LIBSRC=rmd_dgst.c rmd_one.c
LIBOBJ=rmd_dgst.o rmd_one.o $(RMD160_ASM_OBJ)

SRC= $(LIBSRC)

EXHEADER= ripemd.h
HEADER= rmd_locl.h rmdconst.h $(EXHEADER)

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

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

all:    lib

lib:    $(LIBOBJ)
	$(AR) $(LIB) $(LIBOBJ)
42
	$(RANLIB) $(LIB) || echo Never mind.
43 44
	@touch lib

45
# ELF
46
rm86-elf.s: asm/rmd-586.pl ../perlasm/x86asm.pl
47 48
	(cd asm; $(PERL) rmd-586.pl elf $(CFLAGS) > ../$@)
# COFF
49
rm86-cof.s: asm/rmd-586.pl ../perlasm/x86asm.pl
50
	(cd asm; $(PERL) rmd-586.pl coff $(CFLAGS) > ../$@)
51
# a.out
52 53
rm86-out.s: asm/rmd-586.pl ../perlasm/x86asm.pl
	(cd asm; $(PERL) rmd-586.pl a.out $(CFLAGS) > ../$@)
54 55

files:
B
Ben Laurie 已提交
56
	$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
57 58

links:
59 60 61
	@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
	@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
	@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
62 63

install:
A
Andy Polyakov 已提交
64
	@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
65
	@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
66
	do  \
67 68
	(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
69 70 71 72 73 74 75 76 77 78 79
	done;

tags:
	ctags $(SRC)

tests:

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

depend:
80
	@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
81
	$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
82 83

dclean:
84
	$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
85 86 87
	mv -f Makefile.new $(MAKEFILE)

clean:
88
	rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
89 90

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

92 93 94 95 96 97 98 99
rmd_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
rmd_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ripemd.h
rmd_dgst.o: ../md32_common.h rmd_dgst.c rmd_locl.h rmdconst.h
rmd_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
rmd_one.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
rmd_one.o: ../../include/openssl/ossl_typ.h ../../include/openssl/ripemd.h
rmd_one.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
rmd_one.o: ../../include/openssl/symhacks.h rmd_one.c