]> git.ipfire.org Git - thirdparty/openssl.git/blame - Configurations/unix-Makefile.tmpl
Expose %disables to the perl fragments in build.info files.
[thirdparty/openssl.git] / Configurations / unix-Makefile.tmpl
CommitLineData
567a9e6f
RL
1##
2## Makefile for OpenSSL
3##
4## {- join("\n## ", @autowarntext) -}
5{-
834aae2a
BL
6 our $objext = $target{obj_extension} || ".o";
7 our $depext = $target{dep_extension} || ".d";
8 our $exeext = $target{exe_extension} || "";
9 our $libext = $target{lib_extension} || ".a";
10 our $shlibext = $target{shared_extension} || ".so";
11 our $shlibextsimple = $target{shared_extension_simple} || ".so";
12 our $shlibextimport = $target{shared_import_extension} || "";
13 our $dsoext = $target{dso_extension} || ".so";
14
567a9e6f 15 sub windowsdll { $config{target} =~ /^(?:Cygwin|mingw)/ }
f5c174ff
RL
16
17 # shlib and shlib_simple both take a static library name and figure
18 # out what the shlib name should be.
19 #
20 # When OpenSSL is configured "no-shared", these functions will just
21 # return empty lists, making them suitable to join().
22 #
23 # With Windows DLL producers, shlib($libname) will return the shared
24 # library name (which usually is different from the static library
25 # name) with the default shared extension appended to it, while
26 # shlib_simple($libname) will return the static library name with
27 # the shared extension followed by ".a" appended to it. The former
28 # result is used as the runtime shared library while the latter is
29 # used as the DLL import library.
30 #
31 # On all Unix systems, shlib($libname) will return the library name
32 # with the default shared extension, while shlib_simple($libname)
33 # will return the name from shlib($libname) with any SO version number
34 # removed. On some systems, they may therefore return the exact same
35 # string.
36 sub shlib {
37 return () if $config{no_shared};
38 my $lib = shift;
834aae2a 39 return $unified_info{sharednames}->{$lib} . $shlibext;
f5c174ff
RL
40 }
41 sub shlib_simple {
42 return () if $config{no_shared};
43
44 my $lib = shift;
45 if (windowsdll()) {
834aae2a 46 return $lib . $shlibextimport;
f5c174ff 47 }
834aae2a 48 return $lib . $shlibextsimple;
f5c174ff
RL
49 }
50
51 # dso is a complement to shlib / shlib_simple that returns the
52 # given libname with the simple shared extension (possible SO version
53 # removed). This differs from shlib_simple() by being unconditional.
54 sub dso {
f5c174ff
RL
55 my $engine = shift;
56
834aae2a 57 return $engine . $dsoext;
f5c174ff 58 }
834aae2a 59 '';
567a9e6f
RL
60-}
61PLATFORM={- $config{target} -}
62OPTIONS={- $config{options} -}
63CONFIGURE_ARGS=({- join(", ",quotify_l(@{$config{perlargv}})) -})
64SRCDIR={- $config{sourcedir} -}
65BLDDIR={- $config{builddir} -}
66
67VERSION={- $config{version} -}
68MAJOR={- $config{major} -}
69MINOR={- $config{minor} -}
70SHLIB_VERSION_NUMBER={- $config{shlib_version_number} -}
71SHLIB_VERSION_HISTORY={- $config{shlib_version_history} -}
72SHLIB_MAJOR={- $config{shlib_major} -}
73SHLIB_MINOR={- $config{shlib_minor} -}
74SHLIB_TARGET={- $target{shared_target} -}
75
834aae2a 76LIBS={- join(" ", map { $_.$libext } @{$unified_info{libraries}}) -}
f5c174ff
RL
77SHLIBS={- join(" ", map { shlib($_) } @{$unified_info{libraries}}) -}
78ENGINES={- join(" ", map { dso($_) } @{$unified_info{engines}}) -}
834aae2a
BL
79PROGRAMS={- join(" ", map { $_.$exeext } grep { !m|^test/| } @{$unified_info{programs}}) -}
80TESTPROGS={- join(" ", map { $_.$exeext } grep { m|^test/| } @{$unified_info{programs}}) -}
567a9e6f 81SCRIPTS={- join(" ", @{$unified_info{scripts}}) -}
834aae2a 82DEPS={- join(" ", map { (my $x = $_) =~ s|\.o$|$depext|; $x; }
c058fcd7
RL
83 grep { $unified_info{sources}->{$_}->[0] =~ /\.c$/ }
84 keys %{$unified_info{sources}}); -}
85
567a9e6f
RL
86BIN_SCRIPTS=$(BLDDIR)/tools/c_rehash
87MISC_SCRIPTS=$(SRCDIR)/tools/c_hash $(SRCDIR)/tools/c_info \
88 $(SRCDIR)/tools/c_issuer $(SRCDIR)/tools/c_name \
89 $(BLDDIR)/apps/CA.pl $(SRCDIR)/apps/tsget
90
c8c2b779
RL
91SHLIB_INFO={- join(" ", map { "\"".shlib($_).";".shlib_simple($_)."\"" } @{$unified_info{libraries}}) -}
92
3c65577f
RL
93# DESTDIR is for package builders so that they can configure for, say,
94# /usr/ and yet have everything installed to /tmp/somedir/usr/.
567a9e6f 95# Normally it is left empty.
3c65577f 96DESTDIR=
567a9e6f
RL
97
98# Do not edit these manually. Use Configure with --prefix or --openssldir
99# to change this! Short explanation in the top comment in Configure
100INSTALLTOP={- # $prefix is used in the OPENSSLDIR perl snippet
101 #
102 our $prefix = $config{prefix} || "/usr/local";
103 $prefix -}
104OPENSSLDIR={- #
105 # The logic here is that if no --openssldir was given,
106 # OPENSSLDIR will get the value from $prefix plus "/ssl".
107 # If --openssldir was given and the value is an absolute
108 # path, OPENSSLDIR will get its value without change.
109 # If the value from --openssldir is a relative path,
110 # OPENSSLDIR will get $prefix with the --openssldir
111 # value appended as a subdirectory.
112 #
113 use File::Spec::Functions;
114 our $openssldir =
115 $config{openssldir} ?
116 (file_name_is_absolute($config{openssldir}) ?
117 $config{openssldir}
118 : catdir($prefix, $config{openssldir}))
119 : catdir($prefix, "ssl");
120 $openssldir -}
121LIBDIR={- #
122 # if $prefix/lib$target{multilib} is not an existing
123 # directory, then assume that it's not searched by linker
124 # automatically, in which case adding $target{multilib} suffix
125 # causes more grief than we're ready to tolerate, so don't...
126 our $multilib =
127 -d "$prefix/lib$target{multilib}" ? $target{multilib} : "";
128 our $libdir = $config{libdir} || "lib$multilib";
129 $libdir -}
130ENGINESDIR={- use File::Spec::Functions;
131 catdir($prefix,$libdir,"engines") -}
132
dde10ab4 133MANDIR=$(INSTALLTOP)/share/man
8be7bdb5
RL
134DOCDIR=$(INSTALLTOP)/share/doc/$(BASENAME)
135HTMLDIR=$(DOCDIR)/html
567a9e6f 136
3544091a
RL
137# MANSUFFIX is for the benefit of anyone who may want to have a suffix
138# appended after the manpage file section number. "ssl" is popular,
139# resulting in files such as config.5ssl rather than config.5.
140MANSUFFIX=
567a9e6f
RL
141HTMLSUFFIX=html
142
143
144
145CROSS_COMPILE= {- $config{cross_compile_prefix} -}
146CC= $(CROSS_COMPILE){- $target{cc} -}
076e596f
RL
147CFLAGS={- our $cflags2 = join(" ",(map { "-D".$_} @{$config{defines}}),"-DOPENSSLDIR=\"\\\"\$(OPENSSLDIR)\\\"\"","-DENGINESDIR=\"\\\"\$(ENGINESDIR)\\\"\"") -} {- $config{cflags} -}
148CFLAGS_Q={- $cflags2 =~ s|([\\"])|\\$1|g; $cflags2 -} {- $config{cflags} -}
567a9e6f
RL
149LDFLAGS= {- $config{lflags} -}
150PLIB_LDFLAGS= {- $config{plib_lflags} -}
151EX_LIBS= {- $config{ex_libs} -}
45502bfe 152SHARED_CFLAGS={- $target{shared_cflag} || "" -}
567a9e6f
RL
153SHARED_LDFLAGS={- $target{shared_ldflag}
154 # Unlike other OSes (like Solaris, Linux, Tru64,
155 # IRIX) BSD run-time linkers (tested OpenBSD, NetBSD
156 # and FreeBSD) "demand" RPATH set on .so objects.
157 # Apparently application RPATH is not global and
158 # does not apply to .so linked with other .so.
159 # Problem manifests itself when libssl.so fails to
160 # load libcrypto.so. One can argue that we should
161 # engrave this into Makefile.shared rules or into
162 # BSD-* config lines above. Meanwhile let's try to
163 # be cautious and pass -rpath to linker only when
164 # $prefix is not /usr.
165 . ($config{target} =~ m|^BSD-| && $prefix !~ m|^/usr/.*$|
166 ? " -Wl,-rpath,\$\$(LIBRPATH)" : "") -}
af093bf4 167SHARED_RCFLAGS={- $target{shared_rcflag} -}
45502bfe
RL
168DSO_CFLAGS={- $target{shared_cflag} || "" -}
169BIN_CFLAGS={- "" -}
567a9e6f
RL
170
171PERL={- $config{perl} -}
172
173ARFLAGS= {- $target{arflags} -}
174AR=$(CROSS_COMPILE){- $target{ar} || "ar" -} $(ARFLAGS) r
175RANLIB= {- $target{ranlib} -}
176NM= $(CROSS_COMPILE){- $target{nm} || "nm" -}
177RM= rm -f
98e5534e 178RMDIR= rmdir
567a9e6f
RL
179TAR= {- $target{tar} || "tar" -}
180TARFLAGS= {- $target{tarflags} -}
7d103766 181MAKEDEPEND=$(CROSS_COMPILE){- $config{makedepprog} -}
567a9e6f
RL
182
183BASENAME= openssl
184NAME= $(BASENAME)-$(VERSION)
185TARFILE= ../$(NAME).tar
186
187# We let the C compiler driver to take care of .s files. This is done in
188# order to be excused from maintaining a separate set of architecture
189# dependent assembler flags. E.g. if you throw -mcpu=ultrasparc at SPARC
190# gcc, then the driver will automatically translate it to -xarch=v8plus
191# and pass it down to assembler.
192AS=$(CC) -c
193ASFLAG=$(CFLAGS)
194PERLASM_SCHEME= {- $target{perlasm_scheme} -}
195
196# For x86 assembler: Set PROCESSOR to 386 if you want to support
197# the 80386.
198PROCESSOR= {- $config{processor} -}
199
200# The main targets ###################################################
201
27f42b46 202all: configdata.pm build_libs_nodep build_engines_nodep build_apps_nodep \
c058fcd7 203 depend link-utils
567a9e6f 204
27f42b46 205build_libs: configdata.pm build_libs_nodep depend
c058fcd7 206build_libs_nodep: libcrypto.pc libssl.pc openssl.pc
27f42b46 207build_engines: configdata.pm build_engines_nodep depend
c058fcd7 208build_engines_nodep: $(ENGINES)
27f42b46 209build_apps: configdata.pm build_apps_nodep depend
c058fcd7 210build_apps_nodep: $(PROGRAMS) $(SCRIPTS)
27f42b46 211build_tests: configdata.pm build_tests_nodep depend
c058fcd7 212build_tests_nodep: $(TESTPROGS)
68a5f1a2 213
c058fcd7 214test tests: build_tests_nodep build_apps_nodep build_engines_nodep depend rehash
567a9e6f
RL
215 ( cd test; \
216 SRCTOP=../$(SRCDIR) \
217 BLDTOP=../$(BLDDIR) \
834aae2a 218 EXE_EXT={- $exeext -} \
567a9e6f
RL
219 $(PERL) ../$(SRCDIR)/test/run_tests.pl $(TESTS) )
220
221list-tests:
222 @TOP=$(SRCDIR) PERL=$(PERL) $(PERL) $(SRCDIR)/test/run_tests.pl list
223
224libclean:
f99f91f1
RL
225 @set -e; for s in $(SHLIB_INFO); do \
226 s1=`echo "$$s" | cut -f1 -d";"`; \
227 s2=`echo "$$s" | cut -f2 -d";"`; \
228 echo $(RM) $$s1; \
229 $(RM) $$s1; \
230 if [ "$$s1" != "$$s2" ]; then \
231 echo $(RM) $$s2; \
232 $(RM) $$s2; \
233 fi; \
234 done
235 $(RM) $(LIBS)
567a9e6f 236
dde10ab4 237install: install_sw install_ssldirs install_docs
567a9e6f
RL
238
239uninstall: uninstall_docs uninstall_sw
240
241clean: libclean
242 rm -f $(PROGRAMS) $(TESTPROGS)
834aae2a
BL
243 rm -f `find $(BLDDIR) -name '*{- $depext -}'`
244 rm -f `find $(BLDDIR) -name '*{- $objext -}'`
567a9e6f
RL
245 rm -f $(BLDDIR)/core $(BLDDIR)/rehash.time
246 rm -f $(BLDDIR)/tags $(BLDDIR)/TAGS
247 rm -f $(BLDDIR)/openssl.pc $(BLDDIR)/libcrypto.pc $(BLDDIR)/libssl.pc
248 -rm -f `find $(BLDDIR) -type l`
249 rm -f $(TARFILE)
250
c058fcd7 251# This exists solely for those who still type 'make depend'
f8d9d6e4
RL
252#
253# We check if any depfile is newer than Makefile and decide to
254# concatenate only if that is true, or if 'test' (a.k.a [ )
255# doesn't have the option to figure it out (-nt).
256#
257# To check if test has the file age comparison operator, we
258# simply try, and rely test to exit with 0 if the comparison
259# was true, 1 if false, and most importantly, 2 if it doesn't
260# recognise the operator.
ea80a25e 261depend:
f8d9d6e4
RL
262 @catdepends=false; \
263 if [ Makefile -nt Makefile ] 2>/dev/null || [ $$? = 1 ]; then \
c058fcd7 264 for d in $(DEPS); do \
f8d9d6e4
RL
265 if [ $$d -nt Makefile ]; then \
266 catdepends=true; \
267 break; \
268 fi; \
269 done; \
874efa9f 270 else \
f8d9d6e4
RL
271 catdepends=true; \
272 fi; \
273 if [ $$catdepends = true ]; then \
274 ( sed -e '/^# DO NOT DELETE THIS LINE.*/,$$d' < Makefile; \
275 echo '# DO NOT DELETE THIS LINE -- make depend depends on it.'; \
276 echo; \
277 for d in $(DEPS); do \
278 if [ -f $$d ]; then cat $$d; fi; \
279 done ) > Makefile.new; \
280 if ! cmp Makefile.new Makefile >/dev/null 2>&1; then \
281 mv -f Makefile.new Makefile; \
282 else \
283 rm -f Makefile.new; \
284 fi; \
c058fcd7 285 fi
567a9e6f
RL
286
287# Install helper targets #############################################
288
289install_sw: all install_dev install_engines install_runtime
290
f99f91f1 291uninstall_sw: uninstall_runtime uninstall_engines uninstall_dev
567a9e6f
RL
292
293install_docs: install_man_docs install_html_docs
294
295uninstall_docs: uninstall_man_docs uninstall_html_docs
8be7bdb5 296 $(RM) -r -v $(DESTDIR)$(DOCDIR)
567a9e6f 297
dde10ab4
RL
298install_ssldirs:
299 @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(OPENSSLDIR)/certs
300 @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(OPENSSLDIR)/private
301
567a9e6f
RL
302install_dev:
303 @[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
304 @echo "*** Installing development files"
3c65577f 305 @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(INSTALLTOP)/include/openssl
567a9e6f
RL
306 @set -e; for i in $(SRCDIR)/include/openssl/*.h \
307 $(BLDDIR)/include/openssl/*.h; do \
308 fn=`basename $$i`; \
3c65577f
RL
309 echo "install $$i -> $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn"; \
310 cp $$i $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn; \
311 chmod 644 $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn; \
567a9e6f 312 done
3c65577f 313 @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)
567a9e6f
RL
314 @set -e; for l in $(LIBS); do \
315 fn=`basename $$l`; \
3c65577f
RL
316 echo "install $$l -> $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn"; \
317 cp $$l $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn.new; \
318 $(RANLIB) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn.new; \
319 chmod 644 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn.new; \
320 mv -f $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn.new \
321 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn; \
567a9e6f
RL
322 done
323 @ : {- output_off() if $config{no_shared}; "" -}
c8c2b779
RL
324 @set -e; for s in $(SHLIB_INFO); do \
325 s1=`echo "$$s" | cut -f1 -d";"`; \
326 s2=`echo "$$s" | cut -f2 -d";"`; \
327 fn1=`basename $$s1`; \
328 fn2=`basename $$s2`; \
329 : {- output_off() if windowsdll(); "" -}; \
330 echo "install $$s1 -> $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn1"; \
331 cp $$s1 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn1.new; \
332 chmod 644 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn1.new; \
333 mv -f $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn1.new \
334 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn1; \
335 if [ "$$fn1" != "$$fn2" ]; then \
336 echo "link $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2 -> $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn1"; \
337 ln -sf $$fn1 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2; \
567a9e6f 338 fi; \
c8c2b779
RL
339 : {- output_on() if windowsdll(); "" -}{- output_off() unless windowsdll(); "" -}; \
340 echo "install $$s2 -> $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2"; \
341 cp $$s2 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2.new; \
342 chmod 644 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2.new; \
343 mv -f $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2.new \
344 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2; \
ce5ed82f 345 : {- output_on() unless windowsdll(); "" -}; \
567a9e6f 346 done
dac494d2 347 @ : {- output_on() if $config{no_shared}; "" -}
3c65577f
RL
348 @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
349 @echo "install libcrypto.pc -> $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libcrypto.pc"
350 @cp libcrypto.pc $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
351 @chmod 644 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libcrypto.pc
352 @echo "install libssl.pc -> $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libssl.pc"
353 @cp libssl.pc $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
354 @chmod 644 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libssl.pc
355 @echo "install openssl.pc -> $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/openssl.pc"
356 @cp openssl.pc $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
357 @chmod 644 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/openssl.pc
567a9e6f
RL
358
359uninstall_dev:
360 @echo "*** Uninstalling development files"
361 @set -e; for i in $(SRCDIR)/include/openssl/*.h \
362 $(BLDDIR)/include/openssl/*.h; do \
363 fn=`basename $$i`; \
3c65577f
RL
364 echo "$(RM) $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn"; \
365 $(RM) $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn; \
567a9e6f 366 done
98e5534e
RL
367 -$(RMDIR) $(DESTDIR)$(INSTALLTOP)/include/openssl
368 -$(RMDIR) $(DESTDIR)$(INSTALLTOP)/include
567a9e6f
RL
369 @set -e; for l in $(LIBS); do \
370 fn=`basename $$l`; \
3c65577f
RL
371 echo "$(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn"; \
372 $(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn; \
567a9e6f 373 done
c8c2b779
RL
374 @ : {- output_off() if $config{no_shared}; "" -}
375 @set -e; for s in $(SHLIB_INFO); do \
376 s1=`echo "$$s" | cut -f1 -d";"`; \
377 s2=`echo "$$s" | cut -f2 -d";"`; \
378 fn1=`basename $$s1`; \
379 fn2=`basename $$s2`; \
380 : {- output_off() if windowsdll(); "" -}; \
381 echo "$(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn1"; \
382 $(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn1; \
383 if [ "$$fn1" != "$$fn2" ]; then \
3c65577f
RL
384 echo "$(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2"; \
385 $(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2; \
567a9e6f 386 fi; \
c8c2b779
RL
387 : {- output_on() if windowsdll(); "" -}{- output_off() unless windowsdll(); "" -}; \
388 echo "$(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2"; \
389 $(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2; \
ce5ed82f 390 : {- output_on() unless windowsdll(); "" -}; \
567a9e6f 391 done
c8c2b779 392 @ : {- output_on() if $config{no_shared}; "" -}
3c65577f
RL
393 @echo "$(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libcrypto.pc"
394 @$(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libcrypto.pc
395 @echo "$(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libssl.pc"
396 @$(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libssl.pc
397 @echo "$(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/openssl.pc"
398 @$(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/openssl.pc
98e5534e
RL
399 @echo $(RMDIR) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
400 -@$(RMDIR) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
401 @echo $(RMDIR) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)
402 -@$(RMDIR) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)
567a9e6f
RL
403
404install_engines:
405 @[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
3c65577f 406 @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/engines/
567a9e6f
RL
407 @echo "*** Installing engines"
408 @set -e; for e in $(ENGINES); do \
409 fn=`basename $$e`; \
f0c93a85
RL
410 if [ "$$fn" = '{- dso("ossltest") -}' ]; then \
411 continue; \
412 fi; \
413 echo "install $$e -> $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/engines/$$fn"; \
3c65577f
RL
414 cp $$e $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/engines/$$fn.new; \
415 chmod 755 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/engines/$$fn.new; \
416 mv -f $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/engines/$$fn.new \
417 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/engines/$$fn; \
567a9e6f
RL
418 done
419
420uninstall_engines:
421 @echo "*** Uninstalling engines"
422 @set -e; for e in $(ENGINES); do \
423 fn=`basename $$e`; \
f0c93a85
RL
424 if [ "$$fn" = '{- dso("ossltest") -}' ]; then \
425 continue; \
426 fi; \
427 echo "$(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/engines/$$fn"; \
3c65577f 428 $(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/engines/$$fn; \
567a9e6f 429 done
98e5534e
RL
430 @echo "$(RMDIR) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/engines"
431 -@$(RMDIR) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/engines
567a9e6f
RL
432
433install_runtime:
434 @[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
3c65577f
RL
435 @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(INSTALLTOP)/bin
436 @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(OPENSSLDIR)/misc
567a9e6f 437 @echo "*** Installing runtime files"
fcf80c46
RL
438 : {- output_off() unless windowsdll(); "" -};
439 @set -e; for s in $(SHLIBS); do \
f99f91f1 440 fn=`basename $$s`; \
3c65577f
RL
441 echo "install $$s -> $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
442 cp $$s $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
443 chmod 644 $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
444 mv -f $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new \
445 $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
fcf80c46 446 done
dac494d2 447 : {- output_on() unless windowsdll(); "" -};
567a9e6f
RL
448 @set -e; for x in $(PROGRAMS); do \
449 fn=`basename $$x`; \
3c65577f
RL
450 echo "install $$x -> $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
451 cp $$x $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
452 chmod 755 $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
453 mv -f $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new \
454 $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
567a9e6f
RL
455 done
456 @set -e; for x in $(BIN_SCRIPTS); do \
457 fn=`basename $$x`; \
3c65577f
RL
458 echo "install $$x -> $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
459 cp $$x $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
460 chmod 755 $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
461 mv -f $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new \
462 $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
567a9e6f
RL
463 done
464 @set -e; for x in $(MISC_SCRIPTS); do \
465 fn=`basename $$x`; \
3c65577f
RL
466 echo "install $$x -> $(DESTDIR)$(OPENSSLDIR)/misc/$$fn"; \
467 cp $$x $(DESTDIR)$(OPENSSLDIR)/misc/$$fn.new; \
468 chmod 755 $(DESTDIR)$(OPENSSLDIR)/misc/$$fn.new; \
469 mv -f $(DESTDIR)$(OPENSSLDIR)/misc/$$fn.new \
470 $(DESTDIR)$(OPENSSLDIR)/misc/$$fn; \
567a9e6f 471 done
3c65577f
RL
472 @echo "install $(SRCDIR)/apps/openssl.cnf -> $(DESTDIR)$(OPENSSLDIR)/openssl.cnf"
473 @cp $(SRCDIR)/apps/openssl.cnf $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.new
474 @chmod 644 $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.new
475 @mv -f $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.new $(DESTDIR)$(OPENSSLDIR)/openssl.cnf
567a9e6f
RL
476
477uninstall_runtime:
478 @echo "*** Uninstalling runtime files"
479 @set -e; for x in $(PROGRAMS); \
480 do \
481 fn=`basename $$x`; \
3c65577f
RL
482 echo "$(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
483 $(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
567a9e6f
RL
484 done;
485 @set -e; for x in $(BIN_SCRIPTS); \
486 do \
487 fn=`basename $$x`; \
3c65577f
RL
488 echo "$(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
489 $(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
567a9e6f
RL
490 done
491 @set -e; for x in $(MISC_SCRIPTS); \
492 do \
493 fn=`basename $$x`; \
3c65577f
RL
494 echo "$(RM) $(DESTDIR)$(OPENSSLDIR)/misc/$$fn"; \
495 $(RM) $(DESTDIR)$(OPENSSLDIR)/misc/$$fn; \
567a9e6f 496 done
fcf80c46
RL
497 : {- output_off() unless windowsdll(); "" -};
498 @set -e; for s in $(SHLIBS); do \
f99f91f1 499 fn=`basename $$s`; \
3c65577f
RL
500 echo "$(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
501 $(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
fcf80c46 502 done
dac494d2 503 : {- output_on() unless windowsdll(); "" -};
3c65577f 504 $(RM) $(DESTDIR)$(OPENSSLDIR)/openssl.cnf
98e5534e
RL
505 @echo "$(RMDIR) $(DESTDIR)$(INSTALLTOP)/bin"
506 -@$(RMDIR) $(DESTDIR)$(INSTALLTOP)/bin
507 @echo "$(RMDIR) $(DESTDIR)$(OPENSSLDIR)/misc"
508 -@$(RMDIR) $(DESTDIR)$(OPENSSLDIR)/misc
567a9e6f
RL
509
510# A method to extract all names from a .pod file
511# The first sed extracts everything between "=head1 NAME" and the next =head1
512# The second sed joins all the lines into one
513# The third sed removes the description and turns all commas into spaces
514# Voilà, you have a space separated list of names!
515EXTRACT_NAMES=sed -e '1,/^=head1 *NAME *$$/d;/^=head1/,$$d' | \
516 sed -e ':a;{N;s/\n/ /;ba}' | \
517 sed -e 's/ - .*$$//;s/,/ /g'
518PROCESS_PODS=\
519 set -e; \
520 here=`cd $(SRCDIR); pwd`; \
521 point=$$here/util/point.sh; \
522 for ds in apps:1 crypto:3 ssl:3; do \
523 defdir=`echo $$ds | cut -f1 -d:`; \
524 defsec=`echo $$ds | cut -f2 -d:`; \
525 for p in $(SRCDIR)/doc/$$defdir/*.pod; do \
526 SEC=`sed -ne 's/^=for *comment *openssl_manual_section: *\([0-9]\) *$$/\1/p' $$p`; \
527 [ -z "$$SEC" ] && SEC=$$defsec; \
528 fn=`basename $$p .pod`; \
529 NAME=`echo $$fn | tr [a-z] [A-Z]`; \
530 suf=`eval "echo $$OUTSUFFIX"`; \
531 top=`eval "echo $$OUTTOP"`; \
532 $(PERL) $(SRCDIR)/util/mkdir-p.pl $$top/man$$SEC; \
533 echo "install $$p -> $$top/man$$SEC/$$fn$$suf"; \
534 cat $$p | eval "$$GENERATE" \
535 > $$top/man$$SEC/$$fn$$suf; \
536 names=`cat $$p | $(EXTRACT_NAMES)`; \
537 ( cd $$top/man$$SEC; \
538 for n in $$names; do \
3af104f3
RL
539 comp_n="$$n"; \
540 comp_fn="$$fn"; \
541 case "$(PLATFORM)" in DJGPP|Cygwin*|mingw*|darwin*-*-cc) \
542 comp_n=`echo "$$n" | tr [A-Z] [a-z]`; \
543 comp_fn=`echo "$$fn" | tr [A-Z] [a-z]`; \
544 ;; \
545 esac; \
546 if [ "$$comp_n" != "$$comp_fn" ]; then \
567a9e6f
RL
547 echo "link $$top/man$$SEC/$$n$$suf -> $$top/man$$SEC/$$fn$$suf"; \
548 PLATFORM=$(PLATFORM) $$point $$fn$$suf $$n$$suf; \
549 fi; \
550 done ); \
551 done; \
552 done
553UNINSTALL_DOCS=\
554 set -e; \
555 here=`cd $(SRCDIR); pwd`; \
556 for ds in apps:1 crypto:3 ssl:3; do \
557 defdir=`echo $$ds | cut -f1 -d:`; \
558 defsec=`echo $$ds | cut -f2 -d:`; \
559 for p in $(SRCDIR)/doc/$$defdir/*.pod; do \
560 SEC=`sed -ne 's/^=for *comment *openssl_manual_section: *\([0-9]\) *$$/\1/p' $$p`; \
561 [ -z "$$SEC" ] && SEC=$$defsec; \
562 fn=`basename $$p .pod`; \
563 suf=`eval "echo $$OUTSUFFIX"`; \
564 top=`eval "echo $$OUTTOP"`; \
565 echo "$(RM) $$top/man$$SEC/$$fn$$suf"; \
566 $(RM) $$top/man$$SEC/$$fn$$suf; \
567 names=`cat $$p | $(EXTRACT_NAMES)`; \
568 for n in $$names; do \
3af104f3
RL
569 comp_n="$$n"; \
570 comp_fn="$$fn"; \
571 case "$(PLATFORM)" in DJGPP|Cygwin*|mingw*|darwin*-*-cc) \
572 comp_n=`echo "$$n" | tr [A-Z] [a-z]`; \
573 comp_fn=`echo "$$fn" | tr [A-Z] [a-z]`; \
574 ;; \
575 esac; \
576 if [ "$$comp_n" != "$$comp_fn" ]; then \
567a9e6f
RL
577 echo "$(RM) $$top/man$$SEC/$$n$$suf"; \
578 $(RM) $$top/man$$SEC/$$n$$suf; \
579 fi; \
580 done; \
8be7bdb5 581 ( $(RMDIR) $$top/man$$SEC 2>/dev/null || exit 0 ); \
567a9e6f
RL
582 done; \
583 done
584
585install_man_docs:
586 @[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
587 @echo "*** Installing manpages"
588 @\
589 OUTSUFFIX='.$${SEC}$(MANSUFFIX)'; \
3c65577f 590 OUTTOP="$(DESTDIR)$(MANDIR)"; \
567a9e6f
RL
591 GENERATE='pod2man --name=$$NAME --section=$$SEC --center=OpenSSL --release=$(VERSION)'; \
592 $(PROCESS_PODS)
593
594uninstall_man_docs:
595 @echo "*** Uninstalling manpages"
596 @\
597 OUTSUFFIX='.$${SEC}$(MANSUFFIX)'; \
3c65577f 598 OUTTOP="$(DESTDIR)$(MANDIR)"; \
567a9e6f
RL
599 $(UNINSTALL_DOCS)
600
601install_html_docs:
602 @[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
603 @echo "*** Installing HTML manpages"
604 @\
605 OUTSUFFIX='.$(HTMLSUFFIX)'; \
3c65577f 606 OUTTOP="$(DESTDIR)$(HTMLDIR)"; \
567a9e6f
RL
607 GENERATE="pod2html --podroot=$(SRCDIR)/doc --htmldir=.. \
608 --podpath=apps:crypto:ssl \
609 | sed -e 's|href=\"http://man.he.net/man|href=\"../man|g'"; \
610 $(PROCESS_PODS)
611
612uninstall_html_docs:
613 @echo "*** Uninstalling manpages"
614 @\
615 OUTSUFFIX='.$(HTMLSUFFIX)'; \
3c65577f 616 OUTTOP="$(DESTDIR)$(HTMLDIR)"; \
567a9e6f
RL
617 $(UNINSTALL_DOCS)
618
619
620# Developer targets (note: these are only available on Unix) #########
621
6bb2106e
RL
622update: generate errors ordinals
623
624generate: generate_apps generate_crypto_bn generate_crypto_objects
567a9e6f
RL
625
626# Test coverage is a good idea for the future
627#coverage: $(PROGRAMS) $(TESTPROGRAMS)
628# ...
629
630# Currently disabled, util/selftest.pl needs a rewrite
631#report:
632# SRCDIR=$(SRCDIR) @$(PERL) util/selftest.pl
633
634lint:
635 lint -DLINT $(INCLUDES) $(SRCS)
636
fb3e2a88 637generate_apps: $(SRCDIR)/apps/openssl-vms.cnf $(SRCDIR)/apps/progs.h
6bb2106e
RL
638
639generate_crypto_bn: $(SRCDIR)/crypto/bn/bn_prime.h
640
641generate_crypto_objects: $(SRCDIR)/crypto/objects/obj_dat.h \
642 $(SRCDIR)/include/openssl/obj_mac.h \
643 $(SRCDIR)/crypto/objects/obj_xref.h
644
567a9e6f
RL
645errors:
646 ( cd $(SRCDIR); $(PERL) util/ck_errf.pl -strict */*.c */*/*.c )
647 ( cd $(SRCDIR); $(PERL) util/mkerr.pl -recurse -write )
648 ( cd $(SRCDIR)/engines; \
649 for e in *.ec; do \
650 $(PERL) ../util/mkerr.pl -conf $$e \
651 -nostatic -staticloader -write *.c; \
652 done )
653 ( cd $(SRCDIR)/crypto/ct; \
654 $(PERL) ../../util/mkerr.pl -conf ct.ec -hprefix internal/ -write *.c )
655
656ordinals:
657 ( b=`pwd`; cd $(SRCDIR); $(PERL) -I$$b util/mkdef.pl crypto update )
658 ( b=`pwd`; cd $(SRCDIR); $(PERL) -I$$b util/mkdef.pl ssl update )
659
660test_ordinals:
661 ( cd test; \
662 SRCTOP=../$(SRCDIR) \
663 BLDTOP=../$(BLDDIR) \
664 $(PERL) ../$(SRCDIR)/test/run_tests.pl test_ordinals )
665
666tags TAGS: FORCE
667 rm -f TAGS tags
668 -ctags -R .
669 -etags `find . -name '*.[ch]' -o -name '*.pm'`
670
671# Release targets (note: only available on Unix) #####################
672
673tar:
674 TMPDIR=/var/tmp/openssl-copy.$$$$; \
675 DISTDIR=openssl-$(VERSION); \
676 mkdir -p $$TMPDIR/$$DISTDIR; \
677 (cd $(SRCDIR); \
678 git ls-tree -r --name-only --full-tree HEAD \
679 | while read F; do \
680 mkdir -p $$TMPDIR/$$DISTDIR/`dirname $$F`; \
681 cp $$F $$TMPDIR/$$DISTDIR/$$F; \
682 done); \
683 (cd $$TMPDIR; \
684 [ -n "$(PREPARE_CMD)" ] && $(PREPARE_CMD); \
685 find $$TMPDIR/$$DISTDIR -type d -print | xargs chmod 755; \
686 find $$TMPDIR/$$DISTDIR -type f -print | xargs chmod a+r; \
687 find $$TMPDIR/$$DISTDIR -type f -perm -0100 -print | xargs chmod a+x; \
688 $(TAR) $(TARFLAGS) --owner 0 --group 0 -cvf - $$DISTDIR) \
689 | (cd $(SRCDIR); gzip --best > $(TARFILE).gz); \
690 rm -rf $$TMPDIR
691 cd $(SRCDIR); ls -l $(TARFILE).gz
692
693dist:
694 @$(MAKE) PREPARE_CMD='./Configure dist' tar
695
696# Helper targets #####################################################
697
c058fcd7 698rehash: link-utils copy-certs build_apps_nodep
567a9e6f
RL
699 @if [ -z "$(CROSS_COMPILE)" ]; then \
700 (OPENSSL="$(BLDDIR)/util/shlib_wrap.sh apps/openssl"; \
701 [ -x "$(BLDDIR)/openssl.exe" ] && OPENSSL="$(BLDDIR)/openssl.exe" || :; \
702 OPENSSL_DEBUG_MEMORY=on; OPENSSL_CONF=/dev/null ; \
703 export OPENSSL OPENSSL_DEBUG_MEMORY OPENSSL_CONF; \
704 $$OPENSSL rehash certs/demo \
705 || $(PERL) tools/c_rehash certs/demo) && \
706 touch rehash.time; \
707 else :; fi
708
709link-utils: $(BLDDIR)/util/opensslwrap.sh $(BLDDIR)/util/shlib_wrap.sh
710
27f42b46 711$(BLDDIR)/util/opensslwrap.sh: configdata.pm
567a9e6f
RL
712 @if [ "$(SRCDIR)" != "$(BLDDIR)" ]; then \
713 mkdir -p "$(BLDDIR)/util"; \
714 ln -sf "../$(SRCDIR)/util/opensslwrap.sh" "$(BLDDIR)/util"; \
715 fi
27f42b46 716$(BLDDIR)/util/shlib_wrap.sh: configdata.pm
567a9e6f
RL
717 @if [ "$(SRCDIR)" != "$(BLDDIR)" ]; then \
718 mkdir -p "$(BLDDIR)/util"; \
719 ln -sf "../$(SRCDIR)/util/shlib_wrap.sh" "$(BLDDIR)/util"; \
720 fi
721
722copy-certs: FORCE
723 @if [ "$(SRCDIR)" != "$(BLDDIR)" ]; then \
724 cp -R "$(SRCDIR)/certs" "$(BLDDIR)/"; \
725 fi
726
6bb2106e
RL
727$(SRCDIR)/apps/openssl-vms.cnf: $(SRCDIR)/apps/openssl.cnf
728 $(PERL) $(SRCDIR)/VMS/VMSify-conf.pl \
729 < $(SRCDIR)/apps/openssl.cnf > $(SRCDIR)/apps/openssl-vms.cnf
730
fb3e2a88
RL
731{- # because the program apps/openssl has object files as sources, and
732 # they then have the corresponding C files as source, we need to chain
733 # the lookups in %unified_info
734 my $apps_openssl = catfile("apps","openssl");
735 our @openssl_source = map { @{$unified_info{sources}->{$_}} }
736 @{$unified_info{sources}->{$apps_openssl}};
737 ""; -}
738$(SRCDIR)/apps/progs.h:
739 $(RM) $@
740 $(PERL) $(SRCDIR)/apps/progs.pl {- join(" ", @openssl_source) -} > $@
741
6bb2106e
RL
742$(SRCDIR)/crypto/bn/bn_prime.h: $(SRCDIR)/crypto/bn/bn_prime.pl
743 $(PERL) $(SRCDIR)/crypto/bn/bn_prime.pl > $(SRCDIR)/crypto/bn/bn_prime.h
744
745$(SRCDIR)/crypto/objects/obj_dat.h: $(SRCDIR)/crypto/objects/obj_dat.pl \
746 $(SRCDIR)/include/openssl/obj_mac.h
747 $(PERL) $(SRCDIR)/crypto/objects/obj_dat.pl \
748 $(SRCDIR)/include/openssl/obj_mac.h \
749 $(SRCDIR)/crypto/objects/obj_dat.h
750
751# objects.pl both reads and writes obj_mac.num
752$(SRCDIR)/include/openssl/obj_mac.h: $(SRCDIR)/crypto/objects/objects.pl \
753 $(SRCDIR)/crypto/objects/objects.txt \
754 $(SRCDIR)/crypto/objects/obj_mac.num
755 $(PERL) $(SRCDIR)/crypto/objects/objects.pl \
756 $(SRCDIR)/crypto/objects/objects.txt \
757 $(SRCDIR)/crypto/objects/obj_mac.num \
758 $(SRCDIR)/include/openssl/obj_mac.h
759 @sleep 1; touch $(SRCDIR)/include/openssl/obj_mac.h; sleep 1
760
761$(SRCDIR)/crypto/objects/obj_xref.h: $(SRCDIR)/crypto/objects/objxref.pl \
762 $(SRCDIR)/crypto/objects/obj_xref.txt \
763 $(SRCDIR)/crypto/objects/obj_mac.num
764 $(PERL) $(SRCDIR)/crypto/objects/objxref.pl \
765 $(SRCDIR)/crypto/objects/obj_mac.num \
766 $(SRCDIR)/crypto/objects/obj_xref.txt \
767 > $(SRCDIR)/crypto/objects/obj_xref.h
768 @sleep 1; touch $(SRCDIR)/crypto/objects/obj_xref.h; sleep 1
769
c058fcd7 770FORCE:
567a9e6f
RL
771
772# Building targets ###################################################
773
27f42b46 774libcrypto.pc libssl.pc openssl.pc: configdata.pm $(LIBS)
567a9e6f
RL
775libcrypto.pc:
776 @ ( echo 'prefix=$(INSTALLTOP)'; \
777 echo 'exec_prefix=$${prefix}'; \
778 echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
779 echo 'includedir=$${prefix}/include'; \
780 echo ''; \
781 echo 'Name: OpenSSL-libcrypto'; \
782 echo 'Description: OpenSSL cryptography library'; \
783 echo 'Version: '$(VERSION); \
784 echo 'Libs: -L$${libdir} -lcrypto'; \
785 echo 'Libs.private: $(EX_LIBS)'; \
786 echo 'Cflags: -I$${includedir}' ) > libcrypto.pc
787
788libssl.pc:
789 @ ( echo 'prefix=$(INSTALLTOP)'; \
790 echo 'exec_prefix=$${prefix}'; \
791 echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
792 echo 'includedir=$${prefix}/include'; \
793 echo ''; \
794 echo 'Name: OpenSSL-libssl'; \
795 echo 'Description: Secure Sockets Layer and cryptography libraries'; \
796 echo 'Version: '$(VERSION); \
797 echo 'Requires.private: libcrypto'; \
798 echo 'Libs: -L$${libdir} -lssl'; \
799 echo 'Libs.private: $(EX_LIBS)'; \
800 echo 'Cflags: -I$${includedir}' ) > libssl.pc
801
802openssl.pc:
803 @ ( echo 'prefix=$(INSTALLTOP)'; \
804 echo 'exec_prefix=$${prefix}'; \
805 echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
806 echo 'includedir=$${prefix}/include'; \
807 echo ''; \
808 echo 'Name: OpenSSL'; \
809 echo 'Description: Secure Sockets Layer and cryptography libraries and tools'; \
810 echo 'Version: '$(VERSION); \
811 echo 'Requires: libssl libcrypto' ) > openssl.pc
812
813# Note on the use of $(MFLAGS): this was an older variant of MAKEFLAGS which
814# wasn't passed down automatically. It's quite safe to use it like we do
815# below; if it doesn't exist, the result will be empty and 'make' will pick
816# up $(MAKEFLAGS) which is passed down as an environment variable.
27f42b46
RL
817configdata.pm: {- $config{build_file_template} -} $(SRCDIR)/Configure $(SRCDIR)/config
818 @echo "Detected changed: $?"
567a9e6f
RL
819 @echo "Reconfiguring..."
820 $(SRCDIR)/Configure reconf
821 @echo "**************************************************"
822 @echo "*** ***"
823 @echo "*** Please run the same make command again ***"
824 @echo "*** ***"
825 @echo "**************************************************"
826 @false
827
828{-
829 use File::Basename;
830 use File::Spec::Functions qw/:DEFAULT abs2rel rel2abs/;
cedbb146
RL
831
832 # Helper function to figure out dependencies on libraries
833 # It takes a list of library names and outputs a list of dependencies
834 sub compute_lib_depends {
835 if ($config{no_shared}) {
834aae2a 836 return map { $_.$libext } @_;
cedbb146
RL
837 }
838
839 # Depending on shared libraries:
840 # On Windows POSIX layers, we depend on {libname}.dll.a
841 # On Unix platforms, we depend on {shlibname}.so
f5c174ff 842 return map { shlib_simple($_) } @_;
cedbb146
RL
843 }
844
88297284 845 sub src2obj {
567a9e6f 846 my %args = @_;
88297284 847 my $obj = $args{obj};
567a9e6f 848 my $srcs = join(" ", @{$args{srcs}});
50e83cdd 849 my $deps = join(" ", @{$args{srcs}}, @{$args{deps}});
45502bfe
RL
850 my $incs = join("", map { " -I".$_ } @{$args{incs}});
851 my $ecflags = { lib => '$(SHARED_CFLAGS)',
852 dso => '$(DSO_CFLAGS)',
853 bin => '$(BIN_CFLAGS)' } -> {$args{intent}};
567a9e6f
RL
854 my $makedepprog = $config{makedepprog};
855 if ($makedepprog eq "makedepend") {
856 return <<"EOF";
834aae2a 857$obj$depext: $deps
567a9e6f 858 rm -f \$\@.tmp; touch \$\@.tmp
45502bfe 859 \$(MAKEDEPEND) -f\$\@.tmp -o"|$obj" -- \$(CFLAGS) $ecflags$incs -- $srcs \\
7d103766
RL
860 2>/dev/null
861 sed -e 's/^.*|//' -e 's/ \\/\\(\\\\.\\|[^ ]\\)*//g' -e '/: *\$\$/d' -e '/^\\(#.*\\| *\\)\$\$/d' \$\@.tmp > \$\@
567a9e6f 862 rm \$\@.tmp
834aae2a 863$obj$objext: $obj$depext
45502bfe 864 \$(CC) \$(CFLAGS) $ecflags$incs -c -o \$\@ $srcs
567a9e6f
RL
865EOF
866 }
867 return <<"EOF";
834aae2a
BL
868$obj$depext: $deps
869 \$(CC) \$(CFLAGS) $ecflags$incs -MM -MF \$\@ -MQ $obj$objext $srcs
58f2b0ae 870 touch \$\@
834aae2a 871$obj$objext: $obj$depext
45502bfe 872 \$(CC) \$(CFLAGS) $ecflags$incs -c -o \$\@ $srcs
567a9e6f
RL
873EOF
874 }
875 # On Unix, we build shlibs from static libs, so we're ignoring the
876 # object file array. We *know* this routine is only called when we've
877 # configure 'shared'.
878 sub libobj2shlib {
879 my %args = @_;
880 my $lib = $args{lib};
881 my $shlib = $args{shlib};
882 my $libd = dirname($lib);
883 my $libn = basename($lib);
884 (my $libname = $libn) =~ s/^lib//;
cedbb146
RL
885 my $linklibs = join("", map { my $d = dirname($_);
886 my $f = basename($_);
887 (my $l = $f) =~ s/^lib//;
888 " -L$d -l$l" } @{$args{deps}});
889 my $deps = join(" ",compute_lib_depends(@{$args{deps}}));
567a9e6f
RL
890 my $shlib_target = $target{shared_target};
891 my $ordinalsfile = defined($args{ordinals}) ? $args{ordinals}->[1] : "";
f5c174ff 892 my $target = shlib_simple($lib);
567a9e6f 893 return <<"EOF"
cedbb146
RL
894# With a build on a Windows POSIX layer (Cygwin or Mingw), we know for a fact
895# that two files get produced, {shlibname}.dll and {libname}.dll.a.
896# With all other Unix platforms, we often build a shared library with the
897# SO version built into the file name and a symlink without the SO version
898# It's not necessary to have both as targets. The choice falls on the
834aae2a
BL
899# simplest, {libname}$shlibextimport for Windows POSIX layers and
900# {libname}$shlibextsimple for the Unix platforms.
901$target: $lib$libext $deps $ordinalsfile
567a9e6f 902 \$(MAKE) -f \$(SRCDIR)/Makefile.shared -e \\
cedbb146 903 PLATFORM=\$(PLATFORM) \\
567a9e6f 904 PERL=\$(PERL) SRCDIR="\$(SRCDIR)" DSTDIR="$libd" \\
cedbb146
RL
905 INSTALLTOP="\$(INSTALLTOP)" LIBDIR="\$(LIBDIR)" \\
906 LIBDEPS="\$(PLIB_LDFLAGS) $linklibs \$(EX_LIBS)" \\
907 LIBNAME=$libname LIBVERSION=\$(SHLIB_MAJOR).\$(SHLIB_MINOR) \\
908 LIBCOMPATVERSIONS=";\$(SHLIB_VERSION_HISTORY)" \\
909 CC="\$(CC)" CFLAGS="\$(CFLAGS)" LDFLAGS="\$(LDFLAGS)" \\
910 CROSS_COMPILE="\$(CROSS_COMPILE)" \\
834aae2a 911 SHARED_LDFLAGS="\$(SHARED_LDFLAGS)" SHLIB_EXT=$shlibext \\
af093bf4 912 SHARED_RCFLAGS="\$(SHARED_RCFLAGS)" \\
e048fd51 913 link_shlib.$shlib_target
fcf80c46
RL
914EOF
915 . (windowsdll() ? <<"EOF" : "");
834aae2a
BL
916 rm -f apps/$shlib$shlibext
917 rm -f test/$shlib$shlibext
918 cp -p $shlib$shlibext apps/
919 cp -p $shlib$shlibext test/
567a9e6f
RL
920EOF
921 }
5386287c 922 sub obj2dso {
567a9e6f
RL
923 my %args = @_;
924 my $lib = $args{lib};
925 my $libd = dirname($lib);
926 my $libn = basename($lib);
927 (my $libname = $libn) =~ s/^lib//;
928 my $shlibdeps = join("", map { my $d = dirname($_);
929 my $f = basename($_);
930 (my $l = $f) =~ s/^lib//;
931 " -L$d -l$l" } @{$args{deps}});
cedbb146 932 my $deps = join(" ",compute_lib_depends(@{$args{deps}}));
567a9e6f 933 my $shlib_target = $target{shared_target};
834aae2a 934 my $objs = join(" ", map { $_.$objext } @{$args{objs}});
f5c174ff 935 my $target = dso($lib);
567a9e6f 936 return <<"EOF";
f5c174ff 937$target: $objs $deps
567a9e6f 938 \$(MAKE) -f \$(SRCDIR)/Makefile.shared -e \\
cedbb146
RL
939 PLATFORM=\$(PLATFORM) \\
940 PERL=\$(PERL) SRCDIR="\$(SRCDIR)" DSTDIR="$libd" \\
941 LIBDEPS="\$(PLIB_LDFLAGS) $shlibdeps \$(EX_LIBS)" \\
942 LIBNAME=$libname LDFLAGS="\$(LDFLAGS)" \\
943 CC="\$(CC)" CFLAGS="\$(CFLAGS)" \\
944 SHARED_LDFLAGS="\$(SHARED_LDFLAGS)" \\
834aae2a 945 SHLIB_EXT=$dsoext \\
567a9e6f 946 LIBEXTRAS="$objs" \\
e048fd51 947 link_dso.$shlib_target
567a9e6f
RL
948EOF
949 }
950 sub obj2lib {
951 my %args = @_;
952 my $lib = $args{lib};
834aae2a 953 my $objs = join(" ", map { $_.$objext } @{$args{objs}});
567a9e6f 954 return <<"EOF";
834aae2a 955$lib$libext: $objs
567a9e6f
RL
956 \$(AR) \$\@ $objs
957 \$(RANLIB) \$\@ || echo Never mind.
958EOF
959 }
960 sub obj2bin {
961 my %args = @_;
962 my $bin = $args{bin};
963 my $bind = dirname($bin);
964 my $binn = basename($bin);
834aae2a 965 my $objs = join(" ", map { $_.$objext } @{$args{objs}});
cedbb146
RL
966 my $deps = join(" ",compute_lib_depends(@{$args{deps}}));
967 my $linklibs = join("", map { my $d = dirname($_);
968 my $f = basename($_);
969 $d = "." if $d eq $f;
970 (my $l = $f) =~ s/^lib//;
971 " -L$d -l$l" } @{$args{deps}});
567a9e6f
RL
972 my $shlib_target = $config{no_shared} ? "" : $target{shared_target};
973 return <<"EOF";
834aae2a
BL
974$bin$exeext: $objs $deps
975 \$(RM) $bin$exeext
567a9e6f 976 \$(MAKE) -f \$(SRCDIR)/Makefile.shared -e \\
cedbb146 977 PERL=\$(PERL) SRCDIR=\$(SRCDIR) \\
834aae2a 978 APPNAME=$bin$exeext OBJECTS="$objs" \\
af093bf4 979 LIBDEPS="\$(PLIB_LDFLAGS) $linklibs \$(EX_LIBS)" \\
cedbb146
RL
980 CC="\$(CC)" CFLAGS="\$(CFLAGS)" LDFLAGS="\$(LDFLAGS)" \\
981 LIBRPATH="\$(INSTALLTOP)/\$(LIBDIR)" \\
567a9e6f
RL
982 link_app.$shlib_target
983EOF
984 }
985 sub in2script {
986 my %args = @_;
987 my $script = $args{script};
988 my $sources = join(" ", @{$args{sources}});
989 my $dofile = abs2rel(rel2abs(catfile($config{sourcedir},
990 "util", "dofile.pl")),
991 rel2abs($config{builddir}));
992 return <<"EOF";
88297284 993$script: $sources
4b799cea 994 \$(PERL) "-I\$(BLDDIR)" -Mconfigdata "$dofile" \\
ba327ade 995 "-o$target{build_file}" $sources > "$script"
567a9e6f
RL
996 chmod a+x $script
997EOF
998 }
999 "" # Important! This becomes part of the template result.
1000-}