'ranlib' doesn't always run on some systems. That's actually
[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../../include
10 CFLAG=-g
11 INSTALL_PREFIX=
12 OPENSSLDIR=     /usr/local/ssl
13 INSTALLTOP=/usr/local/ssl
14 MAKE=           make -f Makefile.ssl
15 MAKEDEPEND=     $(TOP)/util/domd $(TOP)
16 MAKEFILE=       Makefile.ssl
17 AR=             ar r
18 RANLIB=         ranlib
19 DES_ENC=        des_enc.o fcrypt_b.o
20 # or use
21 #DES_ENC=       dx86-elf.o yx86-elf.o
22
23 CFLAGS= $(INCLUDES) $(CFLAG)
24
25 GENERAL=Makefile
26 TEST=destest.c
27 APPS=
28
29 LIB=$(TOP)/libcrypto.a
30 LIBSRC= cbc_cksm.c cbc_enc.c  cfb64enc.c cfb_enc.c  \
31         ecb3_enc.c ecb_enc.c  enc_read.c enc_writ.c \
32         fcrypt.c ofb64enc.c ofb_enc.c  pcbc_enc.c \
33         qud_cksm.c rand_key.c read_pwd.c rpc_enc.c  set_key.c  \
34         des_enc.c fcrypt_b.c read2pwd.c \
35         xcbc_enc.c \
36         str2key.c  cfb64ede.c ofb64ede.c ede_cbcm_enc.c
37
38 LIBOBJ= set_key.o  ecb_enc.o  cbc_enc.o \
39         ecb3_enc.o cfb64enc.o cfb64ede.o cfb_enc.o  ofb64ede.o \
40         enc_read.o enc_writ.o ofb64enc.o \
41         ofb_enc.o  str2key.o  pcbc_enc.o qud_cksm.o rand_key.o \
42         ${DES_ENC} read2pwd.o \
43         fcrypt.o xcbc_enc.o read_pwd.o rpc_enc.o  cbc_cksm.o \
44         ede_cbcm_enc.o
45
46 SRC= $(LIBSRC)
47
48 EXHEADER= des.h
49 HEADER= des_locl.h rpc_des.h spr.h des_ver.h $(EXHEADER)
50
51 ALL=    $(GENERAL) $(SRC) $(HEADER)
52
53 top:
54         (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
55
56 all:    lib
57
58 lib:    $(LIBOBJ)
59         $(AR) $(LIB) $(LIBOBJ)
60         @echo You may get an error following this line.  Please ignore.
61         - $(RANLIB) $(LIB)
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/e_os2.h
145 cbc_cksm.o: ../../include/openssl/opensslconf.h des_locl.h
146 cbc_enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h
147 cbc_enc.o: ../../include/openssl/opensslconf.h des_locl.h ncbc_enc.c
148 cfb64ede.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h
149 cfb64ede.o: ../../include/openssl/opensslconf.h des_locl.h
150 cfb64enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h
151 cfb64enc.o: ../../include/openssl/opensslconf.h des_locl.h
152 cfb_enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h
153 cfb_enc.o: ../../include/openssl/opensslconf.h des_locl.h
154 des_enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h
155 des_enc.o: ../../include/openssl/opensslconf.h des_locl.h des_locl.h ncbc_enc.c
156 ecb3_enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h
157 ecb3_enc.o: ../../include/openssl/opensslconf.h des_locl.h
158 ecb_enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h
159 ecb_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
160 ecb_enc.o: des_locl.h spr.h
161 ede_cbcm_enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h
162 ede_cbcm_enc.o: ../../include/openssl/opensslconf.h des_locl.h
163 enc_read.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
164 enc_read.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
165 enc_read.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
166 enc_read.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
167 enc_read.o: ../../include/openssl/opensslconf.h
168 enc_read.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
169 enc_read.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
170 enc_read.o: ../cryptlib.h des_locl.h
171 enc_writ.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
172 enc_writ.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
173 enc_writ.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
174 enc_writ.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
175 enc_writ.o: ../../include/openssl/opensslconf.h
176 enc_writ.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h
177 enc_writ.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
178 enc_writ.o: ../../include/openssl/symhacks.h ../cryptlib.h des_locl.h
179 fcrypt.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h
180 fcrypt.o: ../../include/openssl/opensslconf.h des_locl.h
181 fcrypt_b.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h
182 fcrypt_b.o: ../../include/openssl/opensslconf.h des_locl.h
183 ofb64ede.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h
184 ofb64ede.o: ../../include/openssl/opensslconf.h des_locl.h
185 ofb64enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h
186 ofb64enc.o: ../../include/openssl/opensslconf.h des_locl.h
187 ofb_enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h
188 ofb_enc.o: ../../include/openssl/opensslconf.h des_locl.h
189 pcbc_enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h
190 pcbc_enc.o: ../../include/openssl/opensslconf.h des_locl.h
191 qud_cksm.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h
192 qud_cksm.o: ../../include/openssl/opensslconf.h des_locl.h
193 rand_key.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h
194 rand_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/rand.h
195 read2pwd.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h
196 read2pwd.o: ../../include/openssl/opensslconf.h des_locl.h
197 read_pwd.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
198 read_pwd.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
199 read_pwd.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h
200 read_pwd.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
201 read_pwd.o: ../../include/openssl/opensslconf.h
202 read_pwd.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
203 read_pwd.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
204 read_pwd.o: ../cryptlib.h des_locl.h
205 rpc_enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h
206 rpc_enc.o: ../../include/openssl/opensslconf.h des_locl.h des_ver.h rpc_des.h
207 set_key.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h
208 set_key.o: ../../include/openssl/opensslconf.h des_locl.h
209 str2key.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h
210 str2key.o: ../../include/openssl/opensslconf.h des_locl.h
211 xcbc_enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.h
212 xcbc_enc.o: ../../include/openssl/opensslconf.h des_locl.h