Makefile revision 296341
1#
2# OpenSSL/crypto/ripemd/Makefile
3#
4
5DIR=    ripemd
6TOP=    ../..
7CC=     cc
8CPP=    $(CC) -E
9INCLUDES=
10CFLAG=-g
11MAKEFILE=       Makefile
12AR=             ar r
13
14RIP_ASM_OBJ=
15
16CFLAGS= $(INCLUDES) $(CFLAG)
17ASFLAGS= $(INCLUDES) $(ASFLAG)
18AFLAGS= $(ASFLAGS)
19
20GENERAL=Makefile
21TEST=rmdtest.c
22APPS=
23
24LIB=$(TOP)/libcrypto.a
25LIBSRC=rmd_dgst.c rmd_one.c
26LIBOBJ=rmd_dgst.o rmd_one.o $(RMD160_ASM_OBJ)
27
28SRC= $(LIBSRC)
29
30EXHEADER= ripemd.h
31HEADER= rmd_locl.h rmdconst.h $(EXHEADER)
32
33ALL=    $(GENERAL) $(SRC) $(HEADER)
34
35top:
36	(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
37
38all:    lib
39
40lib:    $(LIBOBJ)
41	$(AR) $(LIB) $(LIBOBJ)
42	$(RANLIB) $(LIB) || echo Never mind.
43	@touch lib
44
45rmd-586.s:	asm/rmd-586.pl ../perlasm/x86asm.pl
46	$(PERL) asm/rmd-586.pl $(PERLASM_SCHEME) $(CFLAGS) > $@
47
48files:
49	$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
50
51links:
52	@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
53	@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
54	@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
55
56install:
57	@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
58	@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
59	do  \
60	(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
61	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
62	done;
63
64tags:
65	ctags $(SRC)
66
67tests:
68
69lint:
70	lint -DLINT $(INCLUDES) $(SRC)>fluff
71
72update: depend
73
74depend:
75	@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
76	$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
77
78dclean:
79	$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
80	mv -f Makefile.new $(MAKEFILE)
81
82clean:
83	rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
84
85# DO NOT DELETE THIS LINE -- make depend depends on it.
86
87rmd_dgst.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
88rmd_dgst.o: ../../include/openssl/opensslconf.h
89rmd_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
90rmd_dgst.o: ../../include/openssl/ripemd.h ../../include/openssl/safestack.h
91rmd_dgst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
92rmd_dgst.o: ../md32_common.h rmd_dgst.c rmd_locl.h rmdconst.h
93rmd_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
94rmd_one.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
95rmd_one.o: ../../include/openssl/ossl_typ.h ../../include/openssl/ripemd.h
96rmd_one.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
97rmd_one.o: ../../include/openssl/symhacks.h rmd_one.c
98