Makefile revision 325335
1#
2# OpenSSL/crypto/md5/Makefile
3#
4
5DIR=    md5
6TOP=    ../..
7CC=     cc
8CPP=    $(CC) -E
9INCLUDES=-I.. -I$(TOP) -I../../include
10CFLAG=-g
11MAKEFILE=       Makefile
12AR=             ar r
13
14MD5_ASM_OBJ=
15
16CFLAGS= $(INCLUDES) $(CFLAG)
17ASFLAGS= $(INCLUDES) $(ASFLAG)
18AFLAGS= $(ASFLAGS)
19
20GENERAL=Makefile
21TEST=md5test.c
22APPS=
23
24LIB=$(TOP)/libcrypto.a
25LIBSRC=md5_dgst.c md5_one.c
26LIBOBJ=md5_dgst.o md5_one.o $(MD5_ASM_OBJ)
27
28SRC= $(LIBSRC)
29
30EXHEADER= md5.h
31HEADER= md5_locl.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
45md5-586.s:	asm/md5-586.pl ../perlasm/x86asm.pl
46	$(PERL) asm/md5-586.pl $(PERLASM_SCHEME) $(CFLAGS) > $@
47
48md5-x86_64.s:	asm/md5-x86_64.pl
49	$(PERL) asm/md5-x86_64.pl $(PERLASM_SCHEME) > $@
50
51md5-ia64.s: asm/md5-ia64.S
52	$(CC) $(CFLAGS) -E asm/md5-ia64.S | \
53	$(PERL) -ne 's/;\s+/;\n/g; print;' > $@
54
55md5-sparcv9.S:	asm/md5-sparcv9.pl
56	$(PERL) asm/md5-sparcv9.pl $@ $(CFLAGS)
57
58files:
59	$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
60
61links:
62	@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
63	@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
64	@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
65
66install:
67	@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
68	@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
69	do  \
70	(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
71	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
72	done;
73
74tags:
75	ctags $(SRC)
76
77tests:
78
79lint:
80	lint -DLINT $(INCLUDES) $(SRC)>fluff
81
82update: depend
83
84depend:
85	@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
86	$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
87
88dclean:
89	$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
90	mv -f Makefile.new $(MAKEFILE)
91
92clean:
93	rm -f *.s *.S *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
94
95# DO NOT DELETE THIS LINE -- make depend depends on it.
96
97md5_dgst.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
98md5_dgst.o: ../../include/openssl/md5.h ../../include/openssl/opensslconf.h
99md5_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
100md5_dgst.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
101md5_dgst.o: ../../include/openssl/symhacks.h ../md32_common.h md5_dgst.c
102md5_dgst.o: md5_locl.h
103md5_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
104md5_one.o: ../../include/openssl/md5.h ../../include/openssl/opensslconf.h
105md5_one.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
106md5_one.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
107md5_one.o: ../../include/openssl/symhacks.h md5_one.c
108