Makefile.ssl 2.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
#
# SSLeay/crypto/ripemd/Makefile
#

DIR=    ripemd
TOP=    ../..
CC=     cc
CPP=    $(CC) -E
INCLUDES=
CFLAG=-g
11 12
INSTALL_PREFIX=
OPENSSLDIR=     /usr/local/ssl
13 14
INSTALLTOP=/usr/local/ssl
MAKE=           make -f Makefile.ssl
15
MAKEDEPEND=	$(TOP)/util/domd $(TOP)
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
MAKEFILE=       Makefile.ssl
AR=             ar r

RIP_ASM_OBJ=

CFLAGS= $(INCLUDES) $(CFLAG)

GENERAL=Makefile
TEST=rmdtest.c
APPS=rmd160.c

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)
45
	$(RANLIB) $(LIB)
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
	@touch lib

# elf
asm/rm86-elf.o: asm/rm86unix.cpp
	$(CPP) -DELF asm/rm86unix.cpp | as -o asm/rm86-elf.o

# solaris
asm/rm86-sol.o: asm/rm86unix.cpp
	$(CC) -E -DSOL asm/rm86unix.cpp | sed 's/^#.*//' > asm/rm86-sol.s
	as -o asm/rm86-sol.o asm/rm86-sol.s
	rm -f asm/rm86-sol.s

# a.out
asm/rm86-out.o: asm/rm86unix.cpp
	$(CPP) -DOUT asm/rm86unix.cpp | as -o asm/rm86-out.o

# bsdi
asm/rm86bsdi.o: asm/rm86unix.cpp
64
	$(CPP) -DBSDI asm/rm86unix.cpp | sed 's/ :/:/' | as -o asm/rm86bsdi.o
65

66
asm/rm86unix.cpp: asm/rmd-586.pl
67
	(cd asm; $(PERL) rmd-586.pl cpp >rm86unix.cpp)
68 69

files:
70
	$(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
71 72

links:
73
	@$(TOP)/util/point.sh Makefile.ssl Makefile
74 75 76
	@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
	@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
	@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
77 78 79 80

install:
	@for i in $(EXHEADER) ; \
	do  \
81 82
	(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
83 84 85 86 87 88 89 90 91 92 93
	done;

tags:
	ctags $(SRC)

tests:

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

depend:
94
	$(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
95 96

dclean:
97
	$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
98 99 100
	mv -f Makefile.new $(MAKEFILE)

clean:
101
	rm -f *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
102 103

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

B
Bodo Möller 已提交
105 106 107
rmd_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ripemd.h
rmd_dgst.o: rmd_locl.h rmdconst.h
rmd_one.o: ../../include/openssl/ripemd.h rmd_locl.h rmdconst.h