Makefile.org revision 55714
1##
2## Makefile for OpenSSL
3##
4
5VERSION=
6MAJOR=
7MINOR=
8PLATFORM=dist
9OPTIONS=
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.
13INSTALL_PREFIX=
14INSTALLTOP=/usr/local/ssl
15
16# Do not edit this manually. Use Configure --openssldir=DIR do change this!
17OPENSSLDIR=/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
50CC= gcc
51#CFLAG= -DL_ENDIAN -DTERMIO -O3 -fomit-frame-pointer -m486 -Wall -Wuninitialized -DSHA1_ASM -DMD5_ASM -DRMD160_ASM
52CFLAG= -DTERMIOS -DL_ENDIAN -fomit-frame-pointer -O3 -m486 -Wall -DSHA1_ASM -DMD5_ASM -DRMD160_ASM
53DEPFLAG= 
54PEX_LIBS= -L. -L.. -L../.. -L../../..
55EX_LIBS= 
56AR=ar r
57RANLIB= ranlib
58PERL= perl
59
60# Set BN_ASM to bn_asm.o if you want to use the C version
61BN_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.
77PROCESSOR=
78
79# Set DES_ENC to des_enc.o if you want to use the C version
80#There are 4 x86 assember options.
81DES_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.
90BF_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.
99CAST_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.
108RC4_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.
117RC5_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
125MD5_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
132SHA1_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
139RMD160_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
145DIRS=   crypto ssl rsaref apps test tools
146SHLIBDIRS= crypto ssl
147
148# dirs in crypto to build
149SDIRS=  \
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
156MAKEFILE= Makefile.ssl
157MAKE=     make -f Makefile.ssl
158
159MAN1=1
160MAN3=3
161SHELL=/bin/sh
162
163TOP=    .
164ONEDIRS=out tmp
165EDIRS=  times doc bugs util include certs ms shlib mt demos perl sf dep VMS
166WDIRS=  windows
167LIBS=   libcrypto.a libssl.a 
168
169GENERAL=        Makefile
170BASENAME=       openssl
171NAME=           $(BASENAME)-$(VERSION)
172TARFILE=        $(NAME).tar
173WTARFILE=       $(NAME)-win.tar
174EXHEADER=       e_os.h e_os2.h
175HEADER=         e_os.h
176
177all: 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	-@# cd perl; $(PERL) Makefile.PL; make
184
185sub_all:
186	@for i in $(DIRS) ;\
187	do \
188	(cd $$i && echo "making all in $$i..." && \
189	$(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; \
190	done;
191
192linux-shared:
193	for i in ${SHLIBDIRS}; do \
194	rm -f lib$$i.a lib$$i.so \
195		lib$$i.so.${MAJOR} lib$$i.so.${MAJOR}.${MINOR}; \
196	${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; \
197	( set -x; ${CC}  -shared -o lib$$i.so.${MAJOR}.${MINOR} \
198		-Wl,-S,-soname=lib$$i.so.${MAJOR} \
199		-Wl,--whole-archive lib$$i.a \
200		-Wl,--no-whole-archive -lc ) || exit 1; \
201	rm -f lib$$i.a; make -C $$i clean || exit 1 ;\
202	done;
203	@set -x; \
204	for i in ${SHLIBDIRS}; do \
205	ln -s lib$$i.so.${MAJOR}.${MINOR} lib$$i.so.${MAJOR}; \
206	ln -s lib$$i.so.${MAJOR} lib$$i.so; \
207	done;
208
209Makefile.ssl: Makefile.org
210	@echo "Makefile.ssl is older than Makefile.org."
211	@echo "Reconfigure the source tree (via './config' or 'perl Configure'), please."
212	@false
213
214libclean:
215	rm -f *.a */lib */*/lib
216
217clean:
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
232makefile.one: files
233	$(PERL) util/mk1mf.pl >makefile.one; \
234	sh util/do_ms.sh
235
236files:
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
244links:
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
253dclean:
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
261rehash:
262	@(OPENSSL="`pwd`/apps/openssl"; export OPENSSL; sh tools/c_rehash certs)
263
264test:   tests
265
266tests: 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
271depend:
272	@for i in $(DIRS) ;\
273	do \
274	(cd $$i && echo "making dependencies $$i..." && \
275	$(MAKE) SDIRS='${SDIRS}' DEPFLAG='${DEPFLAG}' depend ) || exit 1; \
276	done;
277
278lint:
279	@for i in $(DIRS) ;\
280	do \
281	(cd $$i && echo "making lint $$i..." && \
282	$(MAKE) SDIRS='${SDIRS}' lint ) || exit 1; \
283	done;
284
285tags:
286	@for i in $(DIRS) ;\
287	do \
288	(cd $$i && echo "making tags $$i..." && \
289	$(MAKE) SDIRS='${SDIRS}' tags ) || exit 1; \
290	done;
291
292errors:
293	perl util/mkerr.pl -recurse -write
294
295util/libeay.num::
296	perl util/mkdef.pl crypto update
297
298util/ssleay.num::
299	perl util/mkdef.pl ssl update
300
301TABLE: Configure
302	(echo 'Output of `Configure TABLE'"':"; \
303	perl Configure TABLE) > TABLE
304
305update: depend errors util/libeay.num util/ssleay.num TABLE
306
307tar:
308	@tar --norecurse -cvf - \
309		`find * \! -path CVS/\* \! -path \*/CVS/\* \! -name CVS \! -name .cvsignore \! -name STATUS \! -name TABLE | sort` |\
310	tardy --user_number=0  --user_name=openssl \
311	      --group_number=0 --group_name=openssl \
312	      --prefix=openssl-$(VERSION) - |\
313	gzip --best >../$(TARFILE).gz; \
314	ls -l ../$(TARFILE).gz
315
316dist:   
317	$(PERL) Configure dist
318	@$(MAKE) dist_pem_h
319	@$(MAKE) SDIRS='${SDIRS}' clean
320	@$(MAKE) tar
321
322dist_pem_h:
323	(cd crypto/pem; $(MAKE) CC='${CC}' SDIRS='${SDIRS}' CFLAG='${CFLAG}' pem.h; $(MAKE) clean)
324
325install: all
326	@$(PERL) $(TOP)/util/mkdir-p.pl $(INSTALL_PREFIX)$(INSTALLTOP)/bin \
327		$(INSTALL_PREFIX)$(INSTALLTOP)/lib \
328		$(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl \
329		$(INSTALL_PREFIX)$(OPENSSLDIR)/misc \
330		$(INSTALL_PREFIX)$(OPENSSLDIR)/certs \
331		$(INSTALL_PREFIX)$(OPENSSLDIR)/private \
332		$(INSTALL_PREFIX)$(OPENSSLDIR)/lib
333	@for i in $(EXHEADER) ;\
334	do \
335	(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
336	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
337	done;
338	@for i in $(DIRS) ;\
339	do \
340	(cd $$i; echo "installing $$i..."; \
341	$(MAKE) CC='${CC}' CFLAG='${CFLAG}' INSTALL_PREFIX='${INSTALL_PREFIX}' INSTALLTOP='${INSTALLTOP}' OPENSSLDIR='${OPENSSLDIR}' EX_LIBS='${EX_LIBS}' SDIRS='${SDIRS}' install ); \
342	done
343	@for i in $(LIBS) ;\
344	do \
345	(       echo installing $$i; \
346		cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/lib; \
347		$(RANLIB) $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i; \
348		chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i ); \
349	done
350
351# DO NOT DELETE THIS LINE -- make depend depends on it.
352