With the changed des_old API, let's complete the work by renaming the
[openssl.git] / crypto / des / Makefile.ssl
1 #
2 # SSLeay/crypto/des/Makefile
3 #
4
5 DIR=    des
6 TOP=    ../..
7 CC=     cc
8 CPP=    $(CC) -E
9 INCLUDES=-I$(TOP) -I../../include
10 CFLAG=-g
11 INSTALL_PREFIX=
12 OPENSSLDIR=     /usr/local/ssl
13 INSTALLTOP=/usr/local/ssl
14 MAKE=           make -f Makefile.ssl
15 MAKEDEPPROG=    makedepend
16 MAKEDEPEND=     $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
17 MAKEFILE=       Makefile.ssl
18 AR=             ar r
19 RANLIB=         ranlib
20 DES_ENC=        des_enc.o fcrypt_b.o
21 # or use
22 #DES_ENC=       dx86-elf.o yx86-elf.o
23
24 CFLAGS= $(INCLUDES) $(CFLAG)
25
26 GENERAL=Makefile
27 TEST=destest.c
28 APPS=
29
30 LIB=$(TOP)/libcrypto.a
31 LIBSRC= cbc_cksm.c cbc_enc.c  cfb64enc.c cfb_enc.c  \
32         ecb3_enc.c ecb_enc.c  enc_read.c enc_writ.c \
33         fcrypt.c ofb64enc.c ofb_enc.c  pcbc_enc.c \
34         qud_cksm.c rand_key.c rpc_enc.c  set_key.c  \
35         des_enc.c fcrypt_b.c \
36         xcbc_enc.c \
37         str2key.c  cfb64ede.c ofb64ede.c ede_cbcm_enc.c des_old.c read2pwd.c
38
39 LIBOBJ= set_key.o  ecb_enc.o  cbc_enc.o \
40         ecb3_enc.o cfb64enc.o cfb64ede.o cfb_enc.o  ofb64ede.o \
41         enc_read.o enc_writ.o ofb64enc.o \
42         ofb_enc.o  str2key.o  pcbc_enc.o qud_cksm.o rand_key.o \
43         ${DES_ENC} \
44         fcrypt.o xcbc_enc.o rpc_enc.o  cbc_cksm.o \
45         ede_cbcm_enc.o des_old.o read2pwd.o
46
47 SRC= $(LIBSRC)
48
49 EXHEADER= des.h des_old.h
50 HEADER= des_locl.h rpc_des.h spr.h des_ver.h $(EXHEADER)
51
52 ALL=    $(GENERAL) $(SRC) $(HEADER)
53
54 top:
55         (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
56
57 all:    lib
58
59 lib:    $(LIBOBJ)
60         $(AR) $(LIB) $(LIBOBJ)
61         $(RANLIB) $(LIB) || echo Never mind.
62         @touch lib
63
64 des: des.o cbc3_enc.o lib
65         $(CC) $(CFLAGS) -o des des.o cbc3_enc.o $(LIB)
66
67 # elf
68 asm/dx86-elf.o: asm/dx86unix.cpp
69         $(CPP) -DELF -x c asm/dx86unix.cpp | as -o asm/dx86-elf.o
70
71 asm/yx86-elf.o: asm/yx86unix.cpp
72         $(CPP) -DELF -x c asm/yx86unix.cpp | as -o asm/yx86-elf.o
73
74 # solaris
75 asm/dx86-sol.o: asm/dx86unix.cpp
76         $(CC) -E -DSOL asm/dx86unix.cpp | sed 's/^#.*//' > asm/dx86-sol.s
77         as -o asm/dx86-sol.o asm/dx86-sol.s
78         rm -f asm/dx86-sol.s
79
80 asm/yx86-sol.o: asm/yx86unix.cpp
81         $(CC) -E -DSOL asm/yx86unix.cpp | sed 's/^#.*//' > asm/yx86-sol.s
82         as -o asm/yx86-sol.o asm/yx86-sol.s
83         rm -f asm/yx86-sol.s
84
85 # a.out
86 asm/dx86-out.o: asm/dx86unix.cpp
87         $(CPP) -DOUT asm/dx86unix.cpp | as -o asm/dx86-out.o
88
89 asm/yx86-out.o: asm/yx86unix.cpp
90         $(CPP) -DOUT asm/yx86unix.cpp | as -o asm/yx86-out.o
91
92 # bsdi
93 asm/dx86bsdi.o: asm/dx86unix.cpp
94         $(CPP) -DBSDI asm/dx86unix.cpp | sed 's/ :/:/' | as -o asm/dx86bsdi.o
95
96 asm/yx86bsdi.o: asm/yx86unix.cpp
97         $(CPP) -DBSDI asm/yx86unix.cpp | sed 's/ :/:/' | as -o asm/yx86bsdi.o
98
99 asm/dx86unix.cpp: asm/des-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl
100         (cd asm; $(PERL) des-586.pl cpp >dx86unix.cpp)
101
102 asm/yx86unix.cpp: asm/crypt586.pl ../perlasm/x86asm.pl
103         (cd asm; $(PERL) crypt586.pl cpp >yx86unix.cpp)
104
105 files:
106         $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
107
108 links:
109         @$(TOP)/util/point.sh Makefile.ssl Makefile
110         @$(TOP)/util/point.sh ../../perlasm asm/perlasm
111         @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
112         @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
113         @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
114
115 install: installs
116
117 installs:
118         @for i in $(EXHEADER) ; \
119         do  \
120         (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
121         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
122         done;
123
124 tags:
125         ctags $(SRC)
126
127 tests:
128
129 lint:
130         lint -DLINT $(INCLUDES) $(SRC)>fluff
131
132 depend:
133         $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
134
135 dclean:
136         $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
137         mv -f Makefile.new $(MAKEFILE)
138
139 clean:
140         rm -f asm/dx86unix.cpp asm/yx86unix.cpp *.o asm/*.o *.obj des lib tags core .pure .nfs* *.old *.bak fluff
141
142 # DO NOT DELETE THIS LINE -- make depend depends on it.
143
144 cbc_cksm.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
145 cbc_cksm.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
146 cbc_cksm.o: ../../include/openssl/symhacks.h cbc_cksm.c des_locl.h
147 cbc_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
148 cbc_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
149 cbc_enc.o: ../../include/openssl/symhacks.h cbc_enc.c des_locl.h ncbc_enc.c
150 cfb64ede.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
151 cfb64ede.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
152 cfb64ede.o: ../../include/openssl/symhacks.h cfb64ede.c des_locl.h
153 cfb64enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
154 cfb64enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
155 cfb64enc.o: ../../include/openssl/symhacks.h cfb64enc.c des_locl.h
156 cfb_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
157 cfb_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
158 cfb_enc.o: ../../include/openssl/symhacks.h cfb_enc.c des_locl.h
159 des_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
160 des_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
161 des_enc.o: ../../include/openssl/symhacks.h des_enc.c des_locl.h ncbc_enc.c
162 des_old.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
163 des_old.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
164 des_old.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
165 des_old.o: ../../include/openssl/symhacks.h des_old.c
166 ecb3_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
167 ecb3_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
168 ecb3_enc.o: ../../include/openssl/symhacks.h des_locl.h ecb3_enc.c
169 ecb_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
170 ecb_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
171 ecb_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/symhacks.h
172 ecb_enc.o: des_locl.h ecb_enc.c spr.h
173 ede_cbcm_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
174 ede_cbcm_enc.o: ../../include/openssl/e_os2.h
175 ede_cbcm_enc.o: ../../include/openssl/opensslconf.h
176 ede_cbcm_enc.o: ../../include/openssl/symhacks.h des_locl.h ede_cbcm_enc.c
177 enc_read.o: ../../e_os.h ../../include/openssl/bio.h
178 enc_read.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
179 enc_read.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
180 enc_read.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
181 enc_read.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
182 enc_read.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
183 enc_read.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
184 enc_read.o: ../cryptlib.h des_locl.h enc_read.c
185 enc_writ.o: ../../e_os.h ../../include/openssl/bio.h
186 enc_writ.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
187 enc_writ.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
188 enc_writ.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
189 enc_writ.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
190 enc_writ.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
191 enc_writ.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
192 enc_writ.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
193 enc_writ.o: ../cryptlib.h des_locl.h enc_writ.c
194 fcrypt.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
195 fcrypt.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
196 fcrypt.o: ../../include/openssl/symhacks.h des_locl.h fcrypt.c
197 fcrypt_b.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
198 fcrypt_b.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
199 fcrypt_b.o: ../../include/openssl/symhacks.h des_locl.h fcrypt_b.c
200 ofb64ede.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
201 ofb64ede.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
202 ofb64ede.o: ../../include/openssl/symhacks.h des_locl.h ofb64ede.c
203 ofb64enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
204 ofb64enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
205 ofb64enc.o: ../../include/openssl/symhacks.h des_locl.h ofb64enc.c
206 ofb_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
207 ofb_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
208 ofb_enc.o: ../../include/openssl/symhacks.h des_locl.h ofb_enc.c
209 pcbc_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
210 pcbc_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
211 pcbc_enc.o: ../../include/openssl/symhacks.h des_locl.h pcbc_enc.c
212 qud_cksm.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
213 qud_cksm.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
214 qud_cksm.o: ../../include/openssl/symhacks.h des_locl.h qud_cksm.c
215 rand_key.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
216 rand_key.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
217 rand_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
218 rand_key.o: ../../include/openssl/symhacks.h rand_key.c
219 rpc_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
220 rpc_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
221 rpc_enc.o: ../../include/openssl/symhacks.h des_locl.h des_ver.h rpc_des.h
222 rpc_enc.o: rpc_enc.c
223 set_key.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
224 set_key.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
225 set_key.o: ../../include/openssl/symhacks.h des_locl.h set_key.c
226 str2key.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
227 str2key.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
228 str2key.o: ../../include/openssl/symhacks.h des_locl.h str2key.c
229 xcbc_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
230 xcbc_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
231 xcbc_enc.o: ../../include/openssl/symhacks.h des_locl.h xcbc_enc.c