Engage MD5 assembler module.
[openssl.git] / crypto / md5 / Makefile
1 #
2 # SSLeay/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 # ELF
46 mx86-elf.s: asm/md5-586.pl ../perlasm/x86asm.pl
47         (cd asm; $(PERL) md5-586.pl elf $(CFLAGS) > ../$@)
48 # COFF
49 mx86-cof.s: asm/md5-586.pl ../perlasm/x86asm.pl
50         (cd asm; $(PERL) md5-586.pl coff $(CFLAGS) > ../$@)
51 # a.out
52 mx86-out.s: asm/md5-586.pl ../perlasm/x86asm.pl
53         (cd asm; $(PERL) md5-586.pl a.out $(CFLAGS) > ../$@)
54
55 md5-sparcv8plus.o: asm/md5-sparcv9.S
56         $(CC) $(ASFLAGS) -DMD5_BLOCK_DATA_ORDER -c \
57                 -o md5-sparcv8plus.o asm/md5-sparcv9.S
58
59 # Old GNU assembler doesn't understand V9 instructions, so we
60 # hire /usr/ccs/bin/as to do the job. Note that option is called
61 # *-gcc27, but even gcc 2>=8 users may experience similar problem
62 # if they didn't bother to upgrade GNU assembler. Such users should
63 # not choose this option, but be adviced to *remove* GNU assembler
64 # or upgrade it.
65 md5-sparcv8plus-gcc27.o: asm/md5-sparcv9.S
66         $(CC) $(ASFLAGS) -DMD5_BLOCK_DATA_ORDER -E asm/md5-sparcv9.S | \
67                 /usr/ccs/bin/as -xarch=v8plus - -o md5-sparcv8plus-gcc27.o
68
69 md5-sparcv9.o: asm/md5-sparcv9.S
70         $(CC) $(ASFLAGS) -DMD5_BLOCK_DATA_ORDER -c \
71                 -o md5-sparcv9.o asm/md5-sparcv9.S
72
73 md5-x86_64.s:   asm/md5-x86_64.pl;      $(PERL) asm/md5-x86_64.pl $@
74
75 md5-ia64.s: asm/md5-ia64.S
76         $(CC) $(CFLAGS) -E asm/md5-ia64.S | \
77         $(PERL) -ne 's/;\s+/;\n/g; print;' > $@
78
79 files:
80         $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
81
82 links:
83         @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
84         @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
85         @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
86
87 install:
88         @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
89         @headerlist="$(EXHEADER)"; for i in $$headerlist ; \
90         do  \
91         (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
92         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
93         done;
94
95 tags:
96         ctags $(SRC)
97
98 tests:
99
100 lint:
101         lint -DLINT $(INCLUDES) $(SRC)>fluff
102
103 depend:
104         @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
105         $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
106
107 dclean:
108         $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
109         mv -f Makefile.new $(MAKEFILE)
110
111 clean:
112         rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
113
114 # DO NOT DELETE THIS LINE -- make depend depends on it.
115
116 md5_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/md5.h
117 md5_dgst.o: ../../include/openssl/opensslconf.h
118 md5_dgst.o: ../../include/openssl/opensslv.h ../md32_common.h md5_dgst.c
119 md5_dgst.o: md5_locl.h
120 md5_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
121 md5_one.o: ../../include/openssl/md5.h ../../include/openssl/opensslconf.h
122 md5_one.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
123 md5_one.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
124 md5_one.o: ../../include/openssl/symhacks.h md5_one.c