]> git.ipfire.org Git - thirdparty/openssl.git/blob - Makefile.org
Prevent name conflicts.
[thirdparty/openssl.git] / Makefile.org
1 ##
2 ## Makefile for OpenSSL
3 ##
4
5 VERSION=
6 MAJOR=
7 MINOR=
8 PLATFORM=dist
9 OPTIONS=
10 # INSTALL_PREFIX is for package builders so that they can configure
11 # for, say, /usr/ and yet have everything installed to /tmp/somedir/usr/.
12 # Normally it is left empty.
13 INSTALL_PREFIX=
14 INSTALLTOP=/usr/local/ssl
15
16 # Do not edit this manually. Use Configure --openssldir=DIR do change this!
17 OPENSSLDIR=/usr/local/ssl
18
19 # RSAref - Define if we are to link with RSAref.
20 # NO_IDEA - Define to build without the IDEA algorithm
21 # NO_RC4 - Define to build without the RC4 algorithm
22 # NO_RC2 - Define to build without the RC2 algorithm
23 # THREADS - Define when building with threads, you will probably also need any
24 # system defines as well, i.e. _REENTERANT for Solaris 2.[34]
25 # TERMIO - Define the termio terminal subsystem, needed if sgtty is missing.
26 # TERMIOS - Define the termios terminal subsystem, Silicon Graphics.
27 # LONGCRYPT - Define to use HPUX 10.x's long password modification to crypt(3).
28 # DEVRANDOM - Give this the value of the 'random device' if your OS supports
29 # one. 32 bytes will be read from this when the random
30 # number generator is initalised.
31 # SSL_ALLOW_ADH - define if you want the server to be able to use the
32 # SSLv3 anon-DH ciphers.
33 # SSL_FORBID_ENULL - define if you want the server to be not able to use the
34 # NULL encryption ciphers.
35 #
36 # LOCK_DEBUG - turns on lots of lock debug output :-)
37 # REF_CHECK - turn on some xyz_free() assertions.
38 # REF_PRINT - prints some stuff on structure free.
39 # CRYPTO_MDEBUG - turns on my 'memory leak' detecting stuff
40 # MFUNC - Make all Malloc/Free/Realloc calls call
41 # CRYPTO_malloc/CRYPTO_free/CRYPTO_realloc which can be setup to
42 # call application defined callbacks via CRYPTO_set_mem_functions()
43 # MD5_ASM needs to be defined to use the x86 assembler for MD5
44 # SHA1_ASM needs to be defined to use the x86 assembler for SHA1
45 # RMD160_ASM needs to be defined to use the x86 assembler for RIPEMD160
46 # Do not define B_ENDIAN or L_ENDIAN if 'unsigned long' == 8. It must
47 # equal 4.
48 # PKCS1_CHECK - pkcs1 tests.
49
50 CC= gcc
51 #CFLAG= -DL_ENDIAN -DTERMIO -O3 -fomit-frame-pointer -m486 -Wall -Wuninitialized -DSHA1_ASM -DMD5_ASM -DRMD160_ASM
52 CFLAG= -DTERMIOS -DL_ENDIAN -fomit-frame-pointer -O3 -m486 -Wall -DSHA1_ASM -DMD5_ASM -DRMD160_ASM
53 DEPFLAG=
54 PEX_LIBS= -L. -L.. -L../.. -L../../..
55 EX_LIBS=
56 AR=ar r
57 RANLIB= ranlib
58 PERL= perl
59
60 # Set BN_ASM to bn_asm.o if you want to use the C version
61 BN_ASM= bn_asm.o
62 #BN_ASM= bn_asm.o
63 #BN_ASM= asm/bn86-elf.o # elf, linux-elf
64 #BN_ASM= asm/bn86-sol.o # solaris
65 #BN_ASM= asm/bn86-out.o # a.out, FreeBSD
66 #BN_ASM= asm/bn86bsdi.o # bsdi
67 #BN_ASM= asm/alpha.o # DEC Alpha
68 #BN_ASM= asm/pa-risc2.o # HP-UX PA-RISC
69 #BN_ASM= asm/r3000.o # SGI MIPS cpu
70 #BN_ASM= asm/sparc.o # Sun solaris/SunOS
71 #BN_ASM= asm/bn-win32.o # Windows 95/NT
72 #BN_ASM= asm/x86w16.o # 16 bit code for Windows 3.1/DOS
73 #BN_ASM= asm/x86w32.o # 32 bit code for Windows 3.1
74
75 # For x86 assembler: Set PROCESSOR to 386 if you want to support
76 # the 80386.
77 PROCESSOR=
78
79 # Set DES_ENC to des_enc.o if you want to use the C version
80 #There are 4 x86 assember options.
81 DES_ENC= asm/dx86-out.o asm/yx86-out.o
82 #DES_ENC= des_enc.o fcrypt_b.o # C
83 #DES_ENC= asm/dx86-elf.o asm/yx86-elf.o # elf
84 #DES_ENC= asm/dx86-sol.o asm/yx86-sol.o # solaris
85 #DES_ENC= asm/dx86-out.o asm/yx86-out.o # a.out, FreeBSD
86 #DES_ENC= asm/dx86bsdi.o asm/yx86bsdi.o # bsdi
87
88 # Set BF_ENC to bf_enc.o if you want to use the C version
89 #There are 4 x86 assember options.
90 BF_ENC= asm/bx86-out.o
91 #BF_ENC= bf_enc.o
92 #BF_ENC= asm/bx86-elf.o # elf
93 #BF_ENC= asm/bx86-sol.o # solaris
94 #BF_ENC= asm/bx86-out.o # a.out, FreeBSD
95 #BF_ENC= asm/bx86bsdi.o # bsdi
96
97 # Set CAST_ENC to c_enc.o if you want to use the C version
98 #There are 4 x86 assember options.
99 CAST_ENC= asm/cx86-out.o
100 #CAST_ENC= c_enc.o
101 #CAST_ENC= asm/cx86-elf.o # elf
102 #CAST_ENC= asm/cx86-sol.o # solaris
103 #CAST_ENC= asm/cx86-out.o # a.out, FreeBSD
104 #CAST_ENC= asm/cx86bsdi.o # bsdi
105
106 # Set RC4_ENC to rc4_enc.o if you want to use the C version
107 #There are 4 x86 assember options.
108 RC4_ENC= asm/rx86-out.o
109 #RC4_ENC= rc4_enc.o
110 #RC4_ENC= asm/rx86-elf.o # elf
111 #RC4_ENC= asm/rx86-sol.o # solaris
112 #RC4_ENC= asm/rx86-out.o # a.out, FreeBSD
113 #RC4_ENC= asm/rx86bsdi.o # bsdi
114
115 # Set RC5_ENC to rc5_enc.o if you want to use the C version
116 #There are 4 x86 assember options.
117 RC5_ENC= asm/r586-out.o
118 #RC5_ENC= rc5_enc.o
119 #RC5_ENC= asm/r586-elf.o # elf
120 #RC5_ENC= asm/r586-sol.o # solaris
121 #RC5_ENC= asm/r586-out.o # a.out, FreeBSD
122 #RC5_ENC= asm/r586bsdi.o # bsdi
123
124 # Also need MD5_ASM defined
125 MD5_ASM_OBJ= asm/mx86-out.o
126 #MD5_ASM_OBJ= asm/mx86-elf.o # elf
127 #MD5_ASM_OBJ= asm/mx86-sol.o # solaris
128 #MD5_ASM_OBJ= asm/mx86-out.o # a.out, FreeBSD
129 #MD5_ASM_OBJ= asm/mx86bsdi.o # bsdi
130
131 # Also need SHA1_ASM defined
132 SHA1_ASM_OBJ= asm/sx86-out.o
133 #SHA1_ASM_OBJ= asm/sx86-elf.o # elf
134 #SHA1_ASM_OBJ= asm/sx86-sol.o # solaris
135 #SHA1_ASM_OBJ= asm/sx86-out.o # a.out, FreeBSD
136 #SHA1_ASM_OBJ= asm/sx86bsdi.o # bsdi
137
138 # Also need RMD160_ASM defined
139 RMD160_ASM_OBJ= asm/rm86-out.o
140 #RMD160_ASM_OBJ= asm/rm86-elf.o # elf
141 #RMD160_ASM_OBJ= asm/rm86-sol.o # solaris
142 #RMD160_ASM_OBJ= asm/rm86-out.o # a.out, FreeBSD
143 #RMD160_ASM_OBJ= asm/rm86bsdi.o # bsdi
144
145 DIRS= crypto ssl rsaref apps test tools
146 SHLIBDIRS= crypto ssl
147
148 # dirs in crypto to build
149 SDIRS= \
150 md2 md5 sha mdc2 hmac ripemd \
151 des rc2 rc4 rc5 idea bf cast \
152 bn rsa dsa dh \
153 buffer bio stack lhash rand err objects \
154 evp asn1 pem x509 x509v3 conf txt_db pkcs7 pkcs12 comp
155
156 MAKEFILE= Makefile.ssl
157 MAKE= make -f Makefile.ssl
158
159 MAN1=1
160 MAN3=3
161 SHELL=/bin/sh
162
163 TOP= .
164 ONEDIRS=out tmp
165 EDIRS= times doc bugs util include certs ms shlib mt demos perl sf dep VMS
166 WDIRS= windows
167 LIBS= libcrypto.a libssl.a
168
169 GENERAL= Makefile
170 BASENAME= openssl
171 NAME= $(BASENAME)-$(VERSION)
172 TARFILE= $(NAME).tar
173 WTARFILE= $(NAME)-win.tar
174 EXHEADER= e_os.h e_os2.h
175 HEADER= e_os.h
176
177 all: Makefile.ssl
178 @for i in $(DIRS) ;\
179 do \
180 (cd $$i && echo "making all in $$i..." && \
181 $(MAKE) CC='${CC}' PLATFORM='${PLATFORM}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' SDIRS='${SDIRS}' AR='${AR}' PROCESSOR='${PROCESSOR}' PERL='${PERL}' RANLIB='${RANLIB}' all ) || exit 1; \
182 done;
183
184 sub_all:
185 @for i in $(DIRS) ;\
186 do \
187 (cd $$i && echo "making all in $$i..." && \
188 $(MAKE) CC='${CC}' PLATFORM='${PLATFORM}' CFLAG='${CFLAG}' SDIRS='$(SDIRS)' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' AR='${AR}' PROCESSOR='${PROCESSOR}' PERL='${PERL}' RANLIB='${RANLIB}' all ) || exit 1; \
189 done;
190
191 linux-shared:
192 for i in ${SHLIBDIRS}; do \
193 rm -f lib$$i.a lib$$i.so \
194 lib$$i.so.${MAJOR} lib$$i.so.${MAJOR}.${MINOR}; \
195 ${MAKE} CC='${CC}' PLATFORM='${PLATFORM}' CFLAG='-fPIC ${CFLAG}' SDIRS='${SDIRS}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' AR='${AR}' DIRS=$$i clean all || exit 1; \
196 ( set -x; ${CC} -shared -o lib$$i.so.${MAJOR}.${MINOR} \
197 -Wl,-S,-soname=lib$$i.so.${MAJOR} \
198 -Wl,--whole-archive lib$$i.a \
199 -Wl,--no-whole-archive -lc ) || exit 1; \
200 rm -f lib$$i.a; make -C $$i clean || exit 1 ;\
201 done;
202 @set -x; \
203 for i in ${SHLIBDIRS}; do \
204 ln -s lib$$i.so.${MAJOR}.${MINOR} lib$$i.so.${MAJOR}; \
205 ln -s lib$$i.so.${MAJOR} lib$$i.so; \
206 done;
207
208 Makefile.ssl: Makefile.org
209 @echo "Makefile.ssl is older than Makefile.org."
210 @echo "Reconfigure the source tree (via 'perl Configure' or 'sh config')"
211 @echo "and update the error lists (via 'make errors'), please."
212 @false
213
214 libclean:
215 rm -f *.a */lib */*/lib
216
217 clean:
218 rm -f shlib/*.o *.o core a.out fluff *.map
219 @for i in $(DIRS) ;\
220 do \
221 (cd $$i && echo "making clean in $$i..." && \
222 $(MAKE) SDIRS='${SDIRS}' clean ) || exit 1; \
223 rm -f $(LIBS); \
224 done;
225 rm -f *.a *.o speed.* *.map *.so .pure core
226 rm -f $(TARFILE)
227 @for i in $(ONEDIRS) ;\
228 do \
229 rm -fr $$i/*; \
230 done
231
232 makefile.one: files
233 $(PERL) util/mk1mf.pl >makefile.one; \
234 sh util/do_ms.sh
235
236 files:
237 $(PERL) $(TOP)/util/files.pl Makefile.ssl > $(TOP)/MINFO
238 @for i in $(DIRS) ;\
239 do \
240 (cd $$i && echo "making 'files' in $$i..." && \
241 $(MAKE) SDIRS='${SDIRS}' PERL='${PERL}' files ) || exit 1; \
242 done;
243
244 links:
245 @$(TOP)/util/point.sh Makefile.ssl Makefile
246 @$(PERL) $(TOP)/util/mkdir-p.pl include/openssl
247 @$(PERL) $(TOP)/util/mklink.pl include/openssl $(EXHEADER)
248 @for i in $(DIRS); do \
249 (cd $$i && echo "making links in $$i..." && \
250 $(MAKE) CC='${CC}' PLATFORM='${PLATFORM}' CFLAG='${CFLAG}' SDIRS='$(SDIRS)' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' AR='${AR}' PERL='${PERL}' links ) || exit 1; \
251 done;
252
253 dclean:
254 rm -f *.bak
255 @for i in $(DIRS) ;\
256 do \
257 (cd $$i && echo "making dclean in $$i..." && \
258 $(MAKE) SDIRS='${SDIRS}' PERL='${PERL}' dclean ) || exit 1; \
259 done;
260
261 rehash:
262 @(OPENSSL="`pwd`/apps/openssl"; export OPENSSL; sh tools/c_rehash certs)
263
264 test: tests
265
266 tests: rehash
267 @(cd test && echo "testing..." && \
268 $(MAKE) CC='${CC}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SDIRS='${SDIRS}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' AR='${AR}' tests );
269 @apps/openssl version -a
270
271 depend:
272 @for i in $(DIRS) ;\
273 do \
274 (cd $$i && echo "making dependancies $$i..." && \
275 $(MAKE) SDIRS='${SDIRS}' DEPFLAG='${DEPFLAG}' depend ) || exit 1; \
276 done;
277
278 lint:
279 @for i in $(DIRS) ;\
280 do \
281 (cd $$i && echo "making lint $$i..." && \
282 $(MAKE) SDIRS='${SDIRS}' lint ) || exit 1; \
283 done;
284
285 tags:
286 @for i in $(DIRS) ;\
287 do \
288 (cd $$i && echo "making tags $$i..." && \
289 $(MAKE) SDIRS='${SDIRS}' tags ) || exit 1; \
290 done;
291
292 errors:
293 perl util/mkerr.pl -recurse -write
294
295 tar:
296 @tar --norecurse -cvf - \
297 `find * \! -path CVS/\* \! -path \*/CVS/\* \! -name CVS \! -name .cvsignore \! -name STATUS | sort` |\
298 tardy --user_number=0 --user_name=openssl \
299 --group_number=0 --group_name=openssl \
300 --prefix=openssl-$(VERSION) - |\
301 gzip --best >../$(TARFILE).gz; \
302 ls -l ../$(TARFILE).gz
303
304 dist:
305 $(PERL) Configure dist
306 @$(MAKE) dist_pem_h
307 @$(MAKE) SDIRS='${SDIRS}' clean
308 @$(MAKE) tar
309
310 dist_pem_h:
311 (cd crypto/pem; $(MAKE) CC='${CC}' SDIRS='${SDIRS}' CFLAG='${CFLAG}' pem.h; $(MAKE) clean)
312
313 install: all
314 @$(PERL) $(TOP)/util/mkdir-p.pl $(INSTALL_PREFIX)$(INSTALLTOP)/bin \
315 $(INSTALL_PREFIX)$(INSTALLTOP)/lib \
316 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl \
317 $(INSTALL_PREFIX)$(OPENSSLDIR)/misc \
318 $(INSTALL_PREFIX)$(OPENSSLDIR)/certs \
319 $(INSTALL_PREFIX)$(OPENSSLDIR)/private \
320 $(INSTALL_PREFIX)$(OPENSSLDIR)/lib
321 @for i in $(EXHEADER) ;\
322 do \
323 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
324 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
325 done;
326 @for i in $(DIRS) ;\
327 do \
328 (cd $$i; echo "installing $$i..."; \
329 $(MAKE) CC='${CC}' CFLAG='${CFLAG}' INSTALL_PREFIX='${INSTALL_PREFIX}' INSTALLTOP='${INSTALLTOP}' OPENSSLDIR='${OPENSSLDIR}' EX_LIBS='${EX_LIBS}' SDIRS='${SDIRS}' install ); \
330 done
331 @for i in $(LIBS) ;\
332 do \
333 ( echo installing $$i; \
334 cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/lib; \
335 $(RANLIB) $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i; \
336 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i ); \
337 done
338
339 # DO NOT DELETE THIS LINE -- make depend depends on it.