diff options
Diffstat (limited to 'src/lib/libcrypto/md5/Makefile')
-rw-r--r-- | src/lib/libcrypto/md5/Makefile | 100 |
1 files changed, 100 insertions, 0 deletions
diff --git a/src/lib/libcrypto/md5/Makefile b/src/lib/libcrypto/md5/Makefile new file mode 100644 index 0000000000..9858d53d31 --- /dev/null +++ b/src/lib/libcrypto/md5/Makefile | |||
@@ -0,0 +1,100 @@ | |||
1 | # | ||
2 | # OpenSSL/crypto/md5/Makefile | ||
3 | # | ||
4 | |||
5 | DIR= md5 | ||
6 | TOP= ../.. | ||
7 | CC= cc | ||
8 | CPP= $(CC) -E | ||
9 | INCLUDES=-I.. -I$(TOP) -I../../include | ||
10 | CFLAG=-g | ||
11 | MAKEFILE= Makefile | ||
12 | AR= ar r | ||
13 | |||
14 | MD5_ASM_OBJ= | ||
15 | |||
16 | CFLAGS= $(INCLUDES) $(CFLAG) | ||
17 | ASFLAGS= $(INCLUDES) $(ASFLAG) | ||
18 | AFLAGS= $(ASFLAGS) | ||
19 | |||
20 | GENERAL=Makefile | ||
21 | TEST=md5test.c | ||
22 | APPS= | ||
23 | |||
24 | LIB=$(TOP)/libcrypto.a | ||
25 | LIBSRC=md5_dgst.c md5_one.c | ||
26 | LIBOBJ=md5_dgst.o md5_one.o $(MD5_ASM_OBJ) | ||
27 | |||
28 | SRC= $(LIBSRC) | ||
29 | |||
30 | EXHEADER= md5.h | ||
31 | HEADER= md5_locl.h $(EXHEADER) | ||
32 | |||
33 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
34 | |||
35 | top: | ||
36 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
37 | |||
38 | all: lib | ||
39 | |||
40 | lib: $(LIBOBJ) | ||
41 | $(AR) $(LIB) $(LIBOBJ) | ||
42 | $(RANLIB) $(LIB) || echo Never mind. | ||
43 | @touch lib | ||
44 | |||
45 | md5-586.s: asm/md5-586.pl ../perlasm/x86asm.pl | ||
46 | $(PERL) asm/md5-586.pl $(PERLASM_SCHEME) $(CFLAGS) > $@ | ||
47 | |||
48 | md5-x86_64.s: asm/md5-x86_64.pl | ||
49 | $(PERL) asm/md5-x86_64.pl $(PERLASM_SCHEME) > $@ | ||
50 | |||
51 | md5-ia64.s: asm/md5-ia64.S | ||
52 | $(CC) $(CFLAGS) -E asm/md5-ia64.S | \ | ||
53 | $(PERL) -ne 's/;\s+/;\n/g; print;' > $@ | ||
54 | |||
55 | files: | ||
56 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
57 | |||
58 | links: | ||
59 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
60 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
61 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
62 | |||
63 | install: | ||
64 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
65 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
66 | do \ | ||
67 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
68 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
69 | done; | ||
70 | |||
71 | tags: | ||
72 | ctags $(SRC) | ||
73 | |||
74 | tests: | ||
75 | |||
76 | lint: | ||
77 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
78 | |||
79 | 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 | mv -f Makefile.new $(MAKEFILE) | ||
86 | |||
87 | 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. | ||
91 | |||
92 | md5_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/md5.h | ||
93 | md5_dgst.o: ../../include/openssl/opensslconf.h | ||
94 | md5_dgst.o: ../../include/openssl/opensslv.h ../md32_common.h md5_dgst.c | ||
95 | md5_dgst.o: md5_locl.h | ||
96 | md5_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
97 | md5_one.o: ../../include/openssl/md5.h ../../include/openssl/opensslconf.h | ||
98 | md5_one.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
99 | md5_one.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
100 | md5_one.o: ../../include/openssl/symhacks.h md5_one.c | ||