Unify x86 perlasm make rules.
[openssl.git] / crypto / sha / Makefile
1 #
2 # OpenSSL/crypto/sha/Makefile
3 #
4
5 DIR=    sha
6 TOP=    ../..
7 CC=     cc
8 CPP=    $(CC) -E
9 INCLUDES=
10 CFLAG=-g
11 MAKEFILE=       Makefile
12 AR=             ar r
13
14 SHA1_ASM_OBJ=
15
16 CFLAGS= $(INCLUDES) $(CFLAG)
17 ASFLAGS= $(INCLUDES) $(ASFLAG)
18 AFLAGS= $(ASFLAGS)
19
20 GENERAL=Makefile
21 TEST=shatest.c sha1test.c sha256t.c sha512t.c
22 APPS=
23
24 LIB=$(TOP)/libcrypto.a
25 LIBSRC=sha_dgst.c sha1dgst.c sha_one.c sha1_one.c sha256.c sha512.c
26 LIBOBJ=sha_dgst.o sha1dgst.o sha_one.o sha1_one.o sha256.o sha512.o $(SHA1_ASM_OBJ)
27
28 SRC= $(LIBSRC)
29
30 EXHEADER= sha.h
31 HEADER= sha_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 sha1-586.s:     asm/sha1-586.pl ../perlasm/x86asm.pl
46         $(PERL) asm/sha1-586.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
47 sha256-586.s:   asm/sha256-586.pl ../perlasm/x86asm.pl
48         $(PERL) asm/sha256-586.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
49 sha512-586.s:   asm/sha512-586.pl ../perlasm/x86asm.pl
50         $(PERL) asm/sha512-586.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
51
52 sha1-ia64.s:   asm/sha1-ia64.pl
53         (cd asm; $(PERL) sha1-ia64.pl $(CFLAGS) ) > $@
54 sha256-ia64.s: asm/sha512-ia64.pl
55         (cd asm; $(PERL) sha512-ia64.pl ../$@ $(CFLAGS))
56 sha512-ia64.s: asm/sha512-ia64.pl
57         (cd asm; $(PERL) sha512-ia64.pl ../$@ $(CFLAGS))
58
59 sha256-armv4.s: asm/sha256-armv4.pl
60         $(PERL) $< $@
61
62 # Solaris make has to be explicitly told
63 sha1-x86_64.s:  asm/sha1-x86_64.pl;     $(PERL) asm/sha1-x86_64.pl $@
64 sha256-x86_64.s:asm/sha512-x86_64.pl;   $(PERL) asm/sha512-x86_64.pl $@
65 sha512-x86_64.s:asm/sha512-x86_64.pl;   $(PERL) asm/sha512-x86_64.pl $@
66 sha1-sparcv9.s: asm/sha1-sparcv9.pl;    $(PERL) asm/sha1-sparcv9.pl $@ $(CFLAGS)
67 sha256-sparcv9.s:asm/sha512-sparcv9.pl; $(PERL) asm/sha512-sparcv9.pl $@ $(CFLAGS)
68 sha512-sparcv9.s:asm/sha512-sparcv9.pl; $(PERL) asm/sha512-sparcv9.pl $@ $(CFLAGS)
69
70 # AIX make has to be explicitly told
71 sha1-ppc_aix32.s: asm/sha1-ppc.pl;      $(PERL) asm/sha1-ppc.pl $@
72 sha1-ppc_aix64.s: asm/sha1-ppc.pl;      $(PERL) asm/sha1-ppc.pl $@
73 sha256-ppc_aix32.s: asm/sha512-ppc.pl;  $(PERL) asm/sha512-ppc.pl $@
74 sha256-ppc_aix64.s: asm/sha512-ppc.pl;  $(PERL) asm/sha512-ppc.pl $@
75 sha512-ppc_aix32.s: asm/sha512-ppc.pl;  $(PERL) asm/sha512-ppc.pl $@
76 sha512-ppc_aix64.s: asm/sha512-ppc.pl;  $(PERL) asm/sha512-ppc.pl $@
77
78 # non-AIX ppc targets are believed to be armed with GNU make
79 sha1-ppc_%.s:   asm/sha1-ppc.pl;        $(PERL) $< $@
80 sha256-ppc_%.s: asm/sha512-ppc.pl;      $(PERL) $< $@
81 sha512-ppc_%.s: asm/sha512-ppc.pl;      $(PERL) $< $@
82 # GNU make "catch all"
83 sha1-%.s:       asm/sha1-%.pl;          $(PERL) $< $@
84 sha256-%.s:     asm/sha512-%.pl;        $(PERL) $< $@
85 sha512-%.s:     asm/sha512-%.pl;        $(PERL) $< $@
86
87 files:
88         $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
89
90 links:
91         @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
92         @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
93         @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
94
95 install:
96         @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
97         @headerlist="$(EXHEADER)"; for i in $$headerlist ; \
98         do  \
99         (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
100         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
101         done;
102
103 tags:
104         ctags $(SRC)
105
106 tests:
107
108 lint:
109         lint -DLINT $(INCLUDES) $(SRC)>fluff
110
111 depend:
112         @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
113         $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
114
115 dclean:
116         $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
117         mv -f Makefile.new $(MAKEFILE)
118
119 clean:
120         rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
121
122 # DO NOT DELETE THIS LINE -- make depend depends on it.
123
124 sha1_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
125 sha1_one.o: ../../include/openssl/opensslconf.h
126 sha1_one.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
127 sha1_one.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
128 sha1_one.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
129 sha1_one.o: sha1_one.c
130 sha1dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
131 sha1dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/sha.h
132 sha1dgst.o: ../md32_common.h sha1dgst.c sha_locl.h
133 sha256.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
134 sha256.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
135 sha256.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
136 sha256.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
137 sha256.o: ../../include/openssl/symhacks.h ../md32_common.h sha256.c
138 sha512.o: ../../e_os.h ../../include/openssl/bio.h
139 sha512.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
140 sha512.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
141 sha512.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
142 sha512.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
143 sha512.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
144 sha512.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
145 sha512.o: ../cryptlib.h sha512.c
146 sha_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
147 sha_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/sha.h
148 sha_dgst.o: ../md32_common.h sha_dgst.c sha_locl.h
149 sha_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
150 sha_one.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
151 sha_one.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
152 sha_one.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
153 sha_one.o: ../../include/openssl/symhacks.h sha_one.c