]> git.ipfire.org Git - thirdparty/openssl.git/blame - Configurations/unix-Makefile.tmpl
Split Makefile clean recipe for document sets into individual lines.
[thirdparty/openssl.git] / Configurations / unix-Makefile.tmpl
CommitLineData
567a9e6f
RL
1##
2## Makefile for OpenSSL
3##
4## {- join("\n## ", @autowarntext) -}
5{-
9dd4ed28 6 our $makedepprog = platform->makedepprog();
834aae2a 7
567a9e6f 8 sub windowsdll { $config{target} =~ /^(?:Cygwin|mingw)/ }
f5c174ff 9
cff89b17
AP
10 # Shared AIX support is special. We put libcrypto[64].so.ver into
11 # libcrypto.a and use libcrypto_a.a as static one.
12 sub sharedaix { !$disabled{shared} && $config{target} =~ /^aix/ }
13
9dd4ed28 14 our $sover_dirname = platform->shlib_version_as_filename();
33105818 15
27c40a93
BL
16 # This makes sure things get built in the order they need
17 # to. You're welcome.
18 sub dependmagic {
19 my $target = shift;
20
21 return "$target: build_generated\n\t\$(MAKE) depend && \$(MAKE) _$target\n_$target";
22 }
c00d9311
RL
23
24 our $COLUMNS = $ENV{COLUMNS};
25 if ($COLUMNS =~ /^\d+$/) {
26 $COLUMNS = int($COLUMNS) - 2; # 2 to leave space for ending ' \'
27 } else {
28 $COLUMNS = 76;
29 }
30
31 sub fill_lines {
32 my $item_sep = shift; # string
33 my $line_length = shift; # number of chars
34
35 my @result = ();
36 my $resultpos = 0;
37
38 foreach (@_) {
39 my $fill_line = $result[$resultpos] // '';
40 my $newline =
41 ($fill_line eq '' ? '' : $fill_line . $item_sep) . $_;
42
43 if (length($newline) > $line_length) {
44 # If this is a single item and the intended result line
45 # is empty, we put it there anyway
46 if ($fill_line eq '') {
47 $result[$resultpos++] = $newline;
48 } else {
49 $result[++$resultpos] = $_;
50 }
51 } else {
52 $result[$resultpos] = $newline;
53 }
54 }
55 return @result;
56 }
834aae2a 57 '';
567a9e6f
RL
58-}
59PLATFORM={- $config{target} -}
60OPTIONS={- $config{options} -}
61CONFIGURE_ARGS=({- join(", ",quotify_l(@{$config{perlargv}})) -})
62SRCDIR={- $config{sourcedir} -}
63BLDDIR={- $config{builddir} -}
31214258 64FIPSKEY={- $config{FIPSKEY} -}
567a9e6f 65
16942e08 66VERSION={- "$config{full_version}" -}
567a9e6f
RL
67MAJOR={- $config{major} -}
68MINOR={- $config{minor} -}
3a63dbef 69SHLIB_VERSION_NUMBER={- $config{shlib_version} -}
567a9e6f 70SHLIB_TARGET={- $target{shared_target} -}
9dd4ed28 71
c00d9311
RL
72LIBS={- join(" \\\n" . ' ' x 5,
73 fill_lines(" ", $COLUMNS - 5,
74 map { platform->staticlib($_) // () }
75 @{$unified_info{libraries}})) -}
76SHLIBS={- join(" \\\n" . ' ' x 7,
77 fill_lines(" ", $COLUMNS - 7,
78 map { platform->sharedlib($_) // () }
79 @{$unified_info{libraries}})) -}
80SHLIB_INFO={- join(" \\\n" . ' ' x 11,
81 fill_lines(" ", $COLUMNS - 11,
82 map { my $x = platform->sharedlib($_);
ef161e7b
RL
83 my $y = platform->sharedlib_simple($_) // '';
84 my $z = platform->sharedlib_import($_) // '';
85 $x ? "\"$x;$y;$z\"" : () }
c00d9311
RL
86 @{$unified_info{libraries}})) -}
87MODULES={- join(" \\\n" . ' ' x 8,
88 fill_lines(" ", $COLUMNS - 8,
89 map { platform->dso($_) }
90 @{$unified_info{modules}})) -}
a1bfcb15 91FIPSMODULENAME={- # We do some extra checking here, as there should be only one
c9b0214e 92 use File::Basename;
a1bfcb15
RL
93 my @fipsmodules =
94 grep { !$unified_info{attributes}->{modules}->{$_}->{noinst}
95 && $unified_info{attributes}->{modules}->{$_}->{fips} }
96 @{$unified_info{modules}};
97 die "More that one FIPS module" if scalar @fipsmodules > 1;
c9b0214e 98 join(" ", map { basename(platform->dso($_)) } @fipsmodules) -}
a1bfcb15 99
c00d9311
RL
100PROGRAMS={- join(" \\\n" . ' ' x 9,
101 fill_lines(" ", $COLUMNS - 9,
102 map { platform->bin($_) }
103 @{$unified_info{programs}})) -}
104SCRIPTS={- join(" \\\n" . ' ' x 8,
105 fill_lines(" ", $COLUMNS - 8, @{$unified_info{scripts}})) -}
29eed3dd 106{- output_off() if $disabled{makedepend}; "" -}
c00d9311
RL
107DEPS={- join(" \\\n" . ' ' x 5,
108 fill_lines(" ", $COLUMNS - 5,
109 map { platform->isobj($_) ? platform->dep($_) : () }
110 grep { $unified_info{sources}->{$_}->[0] =~ /\.c$/ }
111 keys %{$unified_info{sources}})); -}
29eed3dd 112{- output_on() if $disabled{makedepend}; "" -}
c00d9311
RL
113GENERATED_MANDATORY={- join(" \\\n" . ' ' x 20,
114 fill_lines(" ", $COLUMNS - 20,
115 @{$unified_info{depends}->{""}})) -}
9ca08f91
RL
116GENERATED_PODS={- # common0.tmpl provides @generated
117 join(" \\\n" . ' ' x 15,
118 fill_lines(" ", $COLUMNS - 15,
119 map { my $x = $_;
120 (
121 grep {
122 $unified_info{attributes}->{depends}
123 ->{$x}->{$_}->{pod} // 0
124 }
125 keys %{$unified_info{attributes}->{depends}->{$x}}
126 ) ? $x : ();
127 }
128 @generated)) -}
8258975c 129GENERATED={- # common0.tmpl provides @generated
c00d9311
RL
130 join(" \\\n" . ' ' x 5,
131 fill_lines(" ", $COLUMNS - 5,
132 map { platform->convertext($_) } @generated )) -}
9dd4ed28 133
ac6bba6f 134INSTALL_LIBS={-
c00d9311
RL
135 join(" \\\n" . ' ' x 13,
136 fill_lines(" ", $COLUMNS - 13,
137 map { platform->staticlib($_) // () }
138 grep { !$unified_info{attributes}->{libraries}->{$_}->{noinst} }
139 @{$unified_info{libraries}}))
ac6bba6f
RL
140-}
141INSTALL_SHLIBS={-
c00d9311
RL
142 join(" \\\n" . ' ' x 15,
143 fill_lines(" ", $COLUMNS - 15,
144 map { platform->sharedlib($_) // () }
145 grep { !$unified_info{attributes}->{libraries}->{$_}->{noinst} }
146 @{$unified_info{libraries}}))
ac6bba6f
RL
147-}
148INSTALL_SHLIB_INFO={-
c00d9311
RL
149 join(" \\\n" . ' ' x 19,
150 fill_lines(" ", $COLUMNS - 19,
151 map { my $x = platform->sharedlib($_);
ef161e7b
RL
152 my $y = platform->sharedlib_simple($_) // '';
153 my $z = platform->sharedlib_import($_) // '';
154 $x ? "\"$x;$y;$z\"" : () }
c00d9311
RL
155 grep { !$unified_info{attributes}->{libraries}->{$_}->{noinst} }
156 @{$unified_info{libraries}}))
ac6bba6f
RL
157-}
158INSTALL_ENGINES={-
c00d9311
RL
159 join(" \\\n" . ' ' x 16,
160 fill_lines(" ", $COLUMNS - 16,
161 map { platform->dso($_) }
162 grep { !$unified_info{attributes}->{modules}->{$_}->{noinst}
163 && $unified_info{attributes}->{modules}->{$_}->{engine} }
164 @{$unified_info{modules}}))
ac6bba6f 165-}
32a5dc9e 166INSTALL_MODULES={-
41149648
RL
167 join(" \\\n" . ' ' x 16,
168 fill_lines(" ", $COLUMNS - 16,
169 map { platform->dso($_) }
170 grep { !$unified_info{attributes}->{modules}->{$_}->{noinst}
171 && !$unified_info{attributes}->{modules}->{$_}->{engine} }
172 @{$unified_info{modules}}))
173-}
ac6bba6f 174INSTALL_PROGRAMS={-
c00d9311
RL
175 join(" \\\n" . ' ' x 16,
176 fill_lines(" ", $COLUMNS - 16, map { platform->bin($_) }
177 grep { !$unified_info{attributes}->{programs}->{$_}->{noinst} }
178 @{$unified_info{programs}}))
ac6bba6f 179-}
994e86a9 180BIN_SCRIPTS={-
c00d9311
RL
181 join(" \\\n" . ' ' x 12,
182 fill_lines(" ", $COLUMNS - 12,
183 map { my $x = $unified_info{attributes}->{scripts}->{$_}->{linkname};
184 $x ? "$_:$x" : $_ }
185 grep { !$unified_info{attributes}->{scripts}->{$_}->{noinst}
186 && !$unified_info{attributes}->{scripts}->{$_}->{misc} }
187 @{$unified_info{scripts}}))
994e86a9
RL
188-}
189MISC_SCRIPTS={-
c00d9311
RL
190 join(" \\\n" . ' ' x 13,
191 fill_lines(" ", $COLUMNS - 13,
192 map { my $x = $unified_info{attributes}->{scripts}->{$_}->{linkname};
193 $x ? "$_:$x" : $_ }
194 grep { !$unified_info{attributes}->{scripts}->{$_}->{noinst}
195 && $unified_info{attributes}->{scripts}->{$_}->{misc} }
196 @{$unified_info{scripts}}))
994e86a9 197-}
b0940b33
RL
198HTMLDOCS1={-
199 join(" \\\n" . ' ' x 10,
f6f159e7 200 fill_lines(" ", $COLUMNS - 10,
b0940b33
RL
201 @{$unified_info{htmldocs}->{man1}})) -}
202HTMLDOCS3={-
203 join(" \\\n" . ' ' x 10,
f6f159e7 204 fill_lines(" ", $COLUMNS - 10,
b0940b33
RL
205 @{$unified_info{htmldocs}->{man3}})) -}
206HTMLDOCS5={-
207 join(" \\\n" . ' ' x 10,
f6f159e7 208 fill_lines(" ", $COLUMNS - 10,
b0940b33
RL
209 @{$unified_info{htmldocs}->{man5}})) -}
210HTMLDOCS7={-
211 join(" \\\n" . ' ' x 10,
f6f159e7 212 fill_lines(" ", $COLUMNS - 10,
b0940b33
RL
213 @{$unified_info{htmldocs}->{man7}})) -}
214MANDOCS1={-
215 join(" \\\n" . ' ' x 9,
f6f159e7 216 fill_lines(" ", $COLUMNS - 9,
b0940b33
RL
217 @{$unified_info{mandocs}->{man1}})) -}
218MANDOCS3={-
219 join(" \\\n" . ' ' x 9,
f6f159e7 220 fill_lines(" ", $COLUMNS - 9,
b0940b33
RL
221 @{$unified_info{mandocs}->{man3}})) -}
222MANDOCS5={-
223 join(" \\\n" . ' ' x 9,
f6f159e7 224 fill_lines(" ", $COLUMNS - 9,
b0940b33
RL
225 @{$unified_info{mandocs}->{man5}})) -}
226MANDOCS7={-
227 join(" \\\n" . ' ' x 9,
f6f159e7 228 fill_lines(" ", $COLUMNS - 9,
b0940b33 229 @{$unified_info{mandocs}->{man7}})) -}
567a9e6f 230
a3f1fc25
RL
231APPS_OPENSSL="{- use File::Spec::Functions;
232 catfile("apps","openssl") -}"
6a74806e 233
3c65577f
RL
234# DESTDIR is for package builders so that they can configure for, say,
235# /usr/ and yet have everything installed to /tmp/somedir/usr/.
567a9e6f 236# Normally it is left empty.
3c65577f 237DESTDIR=
567a9e6f
RL
238
239# Do not edit these manually. Use Configure with --prefix or --openssldir
240# to change this! Short explanation in the top comment in Configure
241INSTALLTOP={- # $prefix is used in the OPENSSLDIR perl snippet
242 #
243 our $prefix = $config{prefix} || "/usr/local";
244 $prefix -}
245OPENSSLDIR={- #
246 # The logic here is that if no --openssldir was given,
247 # OPENSSLDIR will get the value from $prefix plus "/ssl".
248 # If --openssldir was given and the value is an absolute
249 # path, OPENSSLDIR will get its value without change.
250 # If the value from --openssldir is a relative path,
251 # OPENSSLDIR will get $prefix with the --openssldir
252 # value appended as a subdirectory.
253 #
254 use File::Spec::Functions;
255 our $openssldir =
256 $config{openssldir} ?
257 (file_name_is_absolute($config{openssldir}) ?
258 $config{openssldir}
259 : catdir($prefix, $config{openssldir}))
260 : catdir($prefix, "ssl");
261 $openssldir -}
e454f3ad
RL
262LIBDIR={- our $libdir = $config{libdir};
263 unless ($libdir) {
264 #
265 # if $prefix/lib$target{multilib} is not an existing
266 # directory, then assume that it's not searched by linker
267 # automatically, in which case adding $target{multilib} suffix
268 # causes more grief than we're ready to tolerate, so don't...
269 our $multilib =
270 -d "$prefix/lib$target{multilib}" ? $target{multilib} : "";
271 $libdir = "lib$multilib";
272 }
273 file_name_is_absolute($libdir) ? "" : $libdir -}
274# $(libdir) is chosen to be compatible with the GNU coding standards
275libdir={- file_name_is_absolute($libdir)
276 ? $libdir : '$(INSTALLTOP)/$(LIBDIR)' -}
277ENGINESDIR=$(libdir)/engines-{- $sover_dirname -}
3f4e8d66 278MODULESDIR=$(libdir)/ossl-modules
567a9e6f 279
fad599f7
RL
280# Convenience variable for those who want to set the rpath in shared
281# libraries and applications
e454f3ad 282LIBRPATH=$(libdir)
fad599f7 283
dde10ab4 284MANDIR=$(INSTALLTOP)/share/man
8be7bdb5
RL
285DOCDIR=$(INSTALLTOP)/share/doc/$(BASENAME)
286HTMLDIR=$(DOCDIR)/html
567a9e6f 287
3544091a
RL
288# MANSUFFIX is for the benefit of anyone who may want to have a suffix
289# appended after the manpage file section number. "ssl" is popular,
290# resulting in files such as config.5ssl rather than config.5.
291MANSUFFIX=
567a9e6f
RL
292HTMLSUFFIX=html
293
5407338a
RS
294# For "optional" echo messages, to get "real" silence
295ECHO = echo
567a9e6f 296
abe256e7
RL
297##### User defined commands and flags ################################
298
299# We let the C compiler driver to take care of .s files. This is done in
300# order to be excused from maintaining a separate set of architecture
301# dependent assembler flags. E.g. if you throw -mcpu=ultrasparc at SPARC
302# gcc, then the driver will automatically translate it to -xarch=v8plus
303# and pass it down to assembler. In any case, we do not define AS or
304# ASFLAGS for this reason.
305
306CROSS_COMPILE={- $config{CROSS_COMPILE} -}
307CC=$(CROSS_COMPILE){- $config{CC} -}
308CXX={- $config{CXX} ? "\$(CROSS_COMPILE)$config{CXX}" : '' -}
309CPPFLAGS={- our $cppflags1 = join(" ",
310 (map { "-D".$_} @{$config{CPPDEFINES}}),
311 (map { "-I".$_} @{$config{CPPINCLUDES}}),
312 @{$config{CPPFLAGS}}) -}
313CFLAGS={- join(' ', @{$config{CFLAGS}}) -}
314CXXFLAGS={- join(' ', @{$config{CXXFLAGS}}) -}
315LDFLAGS= {- join(' ', @{$config{LDFLAGS}}) -}
316EX_LIBS= {- join(' ', @{$config{LDLIBS}}) -}
317
318MAKEDEPEND={- $config{makedepprog} -}
567a9e6f 319
9e265322 320PERL={- $config{PERL} -}
567a9e6f 321
abe256e7
RL
322AR=$(CROSS_COMPILE){- $config{AR} -}
323ARFLAGS= {- join(' ', @{$config{ARFLAGS}}) -}
324RANLIB={- $config{RANLIB} ? "\$(CROSS_COMPILE)$config{RANLIB}" : "true"; -}
325RC= $(CROSS_COMPILE){- $config{RC} -}
326RCFLAGS={- join(' ', @{$config{RCFLAGS}}) -} {- $target{shared_rcflag} -}
327
567a9e6f 328RM= rm -f
98e5534e 329RMDIR= rmdir
abe256e7
RL
330TAR= {- $target{TAR} || "tar" -}
331TARFLAGS= {- $target{TARFLAGS} -}
567a9e6f
RL
332
333BASENAME= openssl
334NAME= $(BASENAME)-$(VERSION)
b741f153 335# Relative to $(SRCDIR)
567a9e6f
RL
336TARFILE= ../$(NAME).tar
337
abe256e7
RL
338##### Project flags ##################################################
339
340# Variables starting with CNF_ are common variables for all product types
341
342CNF_CPPFLAGS={- our $cppflags2 =
343 join(' ', $target{cppflags} || (),
344 (map { "-D".$_} @{$target{defines}},
345 @{$config{defines}}),
346 (map { "-I".$_} @{$target{includes}},
347 @{$config{includes}}),
348 @{$config{cppflags}}) -}
349CNF_CFLAGS={- join(' ', $target{cflags} || (),
350 @{$config{cflags}}) -}
351CNF_CXXFLAGS={- join(' ', $target{cxxflags} || (),
352 @{$config{cxxflags}}) -}
353CNF_LDFLAGS={- join(' ', $target{lflags} || (),
354 @{$config{lflags}}) -}
355CNF_EX_LIBS={- join(' ', $target{ex_libs} || (),
356 @{$config{ex_libs}}) -}
357
358# Variables starting with LIB_ are used to build library object files
359# and shared libraries.
360# Variables starting with DSO_ are used to build DSOs and their object files.
361# Variables starting with BIN_ are used to build programs and their object
362# files.
363
58d6be5b
RL
364LIB_CPPFLAGS={- our $lib_cppflags =
365 join(' ', $target{lib_cppflags} || (),
abe256e7
RL
366 $target{shared_cppflag} || (),
367 (map { '-D'.$_ }
d368d9d2
RL
368 @{$target{lib_defines} || ()},
369 @{$target{shared_defines} || ()},
2fce15b5
RL
370 @{$config{lib_defines} || ()},
371 @{$config{shared_defines} || ()}),
d368d9d2
RL
372 (map { '-I'.quotify1($_) }
373 @{$target{lib_includes}},
374 @{$target{shared_includes}},
375 @{$config{lib_includes}},
376 @{$config{shared_includes}}),
58d6be5b
RL
377 @{$config{lib_cppflags}},
378 @{$config{shared_cppflag}});
379 join(' ', $lib_cppflags,
380 (map { '-D'.$_ }
abe256e7 381 'OPENSSLDIR="\"$(OPENSSLDIR)\""',
3f4e8d66
RL
382 'ENGINESDIR="\"$(ENGINESDIR)\""',
383 'MODULESDIR="\"$(MODULESDIR)\""'),
abe256e7
RL
384 '$(CNF_CPPFLAGS)', '$(CPPFLAGS)') -}
385LIB_CFLAGS={- join(' ', $target{lib_cflags} || (),
386 $target{shared_cflag} || (),
387 @{$config{lib_cflags}},
388 @{$config{shared_cflag}},
389 '$(CNF_CFLAGS)', '$(CFLAGS)') -}
390LIB_CXXFLAGS={- join(' ', $target{lib_cxxflags} || (),
391 $target{shared_cxxflag} || (),
392 @{$config{lib_cxxflags}},
393 @{$config{shared_cxxflag}},
394 '$(CNF_CXXFLAGS)', '$(CXXFLAGS)') -}
395LIB_LDFLAGS={- join(' ', $target{shared_ldflag} || (),
396 $config{shared_ldflag} || (),
397 '$(CNF_LDFLAGS)', '$(LDFLAGS)') -}
398LIB_EX_LIBS=$(CNF_EX_LIBS) $(EX_LIBS)
399DSO_CPPFLAGS={- join(' ', $target{dso_cppflags} || (),
400 $target{module_cppflags} || (),
2fce15b5 401 (map { '-D'.$_ }
d368d9d2
RL
402 @{$target{dso_defines}},
403 @{$target{module_defines}},
2fce15b5
RL
404 @{$config{dso_defines} || ()},
405 @{$config{module_defines} || ()}),
d368d9d2
RL
406 (map { '-I'.quotify1($_) }
407 @{$target{dso_includes}},
408 @{$target{module_includes}},
409 @{$config{dso_includes}},
410 @{$config{module_includes}}),
abe256e7
RL
411 @{$config{dso_cppflags}},
412 @{$config{module_cppflags}},
413 '$(CNF_CPPFLAGS)', '$(CPPFLAGS)') -}
414DSO_CFLAGS={- join(' ', $target{dso_cflags} || (),
415 $target{module_cflags} || (),
416 @{$config{dso_cflags}},
417 @{$config{module_cflags}},
418 '$(CNF_CFLAGS)', '$(CFLAGS)') -}
419DSO_CXXFLAGS={- join(' ', $target{dso_cxxflags} || (),
420 $target{module_cxxflags} || (),
421 @{$config{dso_cxxflags}},
422 @{$config{module_cxxflag}},
423 '$(CNF_CXXFLAGS)', '$(CXXFLAGS)') -}
424DSO_LDFLAGS={- join(' ', $target{dso_ldflags} || (),
425 $target{module_ldflags} || (),
426 @{$config{dso_ldflags}},
427 @{$config{module_ldflags}},
428 '$(CNF_LDFLAGS)', '$(LDFLAGS)') -}
429DSO_EX_LIBS=$(CNF_EX_LIBS) $(EX_LIBS)
430BIN_CPPFLAGS={- join(' ', $target{bin_cppflags} || (),
2fce15b5 431 (map { '-D'.$_ } @{$config{bin_defines} || ()}),
abe256e7
RL
432 @{$config{bin_cppflags}},
433 '$(CNF_CPPFLAGS)', '$(CPPFLAGS)') -}
434BIN_CFLAGS={- join(' ', $target{bin_cflags} || (),
435 @{$config{bin_cflags}},
436 '$(CNF_CFLAGS)', '$(CFLAGS)') -}
437BIN_CXXFLAGS={- join(' ', $target{bin_cxxflags} || (),
438 @{$config{bin_cxxflags}},
439 '$(CNF_CXXFLAGS)', '$(CXXFLAGS)') -}
440BIN_LDFLAGS={- join(' ', $target{bin_lflags} || (),
441 @{$config{bin_lflags}},
442 '$(CNF_LDFLAGS)', '$(LDFLAGS)') -}
443BIN_EX_LIBS=$(CNF_EX_LIBS) $(EX_LIBS)
444
445# CPPFLAGS_Q is used for one thing only: to build up buildinf.h
446CPPFLAGS_Q={- $cppflags1 =~ s|([\\"])|\\$1|g;
447 $cppflags2 =~ s|([\\"])|\\$1|g;
58d6be5b
RL
448 $lib_cppflags =~ s|([\\"])|\\$1|g;
449 join(' ', $lib_cppflags || (), $cppflags2 || (),
450 $cppflags1 || ()) -}
abe256e7 451
567a9e6f
RL
452PERLASM_SCHEME= {- $target{perlasm_scheme} -}
453
454# For x86 assembler: Set PROCESSOR to 386 if you want to support
455# the 80386.
456PROCESSOR= {- $config{processor} -}
457
9c7ce40b
AP
458# We want error [and other] messages in English. Trouble is that make(1)
459# doesn't pass macros down as environment variables unless there already
460# was corresponding variable originally set. In other words we can only
461# reassign environment variables, but not set new ones, not in portable
462# manner that is. That's why we reassign several, just to be sure...
463LC_ALL=C
464LC_MESSAGES=C
465LANG=C
466
567a9e6f
RL
467# The main targets ###################################################
468
b0940b33 469{- dependmagic('build_sw'); -}: build_libs_nodep build_modules_nodep build_programs_nodep link-utils
27c40a93 470{- dependmagic('build_libs'); -}: build_libs_nodep
1842f369 471{- dependmagic('build_modules'); -}: build_modules_nodep
1e3d16b0 472{- dependmagic('build_programs'); -}: build_programs_nodep
567a9e6f 473
9ca08f91 474build_generated_pods: $(GENERATED_PODS)
b0940b33
RL
475build_docs: build_man_docs build_html_docs
476build_man_docs: $(MANDOCS1) $(MANDOCS3) $(MANDOCS5) $(MANDOCS7)
477build_html_docs: $(HTMLDOCS1) $(HTMLDOCS3) $(HTMLDOCS5) $(HTMLDOCS7)
478
27c40a93 479build_generated: $(GENERATED_MANDATORY)
c058fcd7 480build_libs_nodep: libcrypto.pc libssl.pc openssl.pc
1842f369 481build_modules_nodep: $(MODULES)
1e3d16b0
RL
482build_programs_nodep: $(PROGRAMS) $(SCRIPTS)
483
484# Kept around for backward compatibility
485build_apps build_tests: build_programs
68a5f1a2 486
9b03b91b
RL
487# Convenience target to prebuild all generated files, not just the mandatory
488# ones
b0940b33 489build_all_generated: $(GENERATED_MANDATORY) $(GENERATED) build_docs
18d15882
AP
490 @ : {- output_off() if $disabled{makedepend}; "" -}
491 @echo "Warning: consider configuring with no-makedepend, because if"
492 @echo " target system doesn't have $(PERL),"
493 @echo " then make will fail..."
494 @ : {- output_on() if $disabled{makedepend}; "" -}
9b03b91b 495
b0940b33
RL
496all: build_sw build_docs
497
1b741653 498test: tests
1842f369 499{- dependmagic('tests'); -}: build_programs_nodep build_modules_nodep link-utils
d90a6beb 500 @ : {- output_off() if $disabled{tests}; "" -}
f0790d4d
RL
501 ( SRCTOP=$(SRCDIR) \
502 BLDTOP=$(BLDDIR) \
cbece220 503 PERL="$(PERL)" \
31214258 504 FIPSKEY="$(FIPSKEY)" \
9dd4ed28 505 EXE_EXT={- platform->binext() -} \
f0790d4d 506 $(PERL) $(SRCDIR)/test/run_tests.pl $(TESTS) )
d90a6beb
MC
507 @ : {- if ($disabled{tests}) { output_on(); } else { output_off(); } "" -}
508 @echo "Tests are not supported with your chosen Configure options"
509 @ : {- output_on() if !$disabled{tests}; "" -}
567a9e6f
RL
510
511list-tests:
4813ad2d
RL
512 @ : {- output_off() if $disabled{tests}; "" -}
513 @SRCTOP="$(SRCDIR)" \
514 $(PERL) $(SRCDIR)/test/run_tests.pl list
515 @ : {- if ($disabled{tests}) { output_on(); } else { output_off(); } "" -}
516 @echo "Tests are not supported with your chosen Configure options"
517 @ : {- output_on() if !$disabled{tests}; "" -}
518
519install: install_sw install_ssldirs install_docs
520
521uninstall: uninstall_docs uninstall_sw
567a9e6f
RL
522
523libclean:
f99f91f1 524 @set -e; for s in $(SHLIB_INFO); do \
49bb4dd0 525 if [ "$$s" = ";" ]; then continue; fi; \
f99f91f1
RL
526 s1=`echo "$$s" | cut -f1 -d";"`; \
527 s2=`echo "$$s" | cut -f2 -d";"`; \
ef161e7b 528 s3=`echo "$$s" | cut -f3 -d";"`; \
49bb4dd0
BE
529 $(ECHO) $(RM) $$s1; {- output_off() unless windowsdll(); "" -}\
530 $(RM) apps/$$s1; \
531 $(RM) test/$$s1; \
532 $(RM) fuzz/$$s1; {- output_on() unless windowsdll(); "" -}\
f99f91f1 533 $(RM) $$s1; \
ef161e7b 534 if [ "$$s2" != "" ]; then \
5407338a 535 $(ECHO) $(RM) $$s2; \
f99f91f1
RL
536 $(RM) $$s2; \
537 fi; \
ef161e7b
RL
538 if [ "$$s3" != "" ]; then \
539 $(ECHO) $(RM) $$s3; \
540 $(RM) $$s3; \
541 fi; \
f99f91f1
RL
542 done
543 $(RM) $(LIBS)
9dd4ed28 544 $(RM) *{- platform->defext() -}
567a9e6f
RL
545
546clean: libclean
c47a0803
RB
547 $(RM) $(HTMLDOCS1)
548 $(RM) $(HTMLDOCS3)
549 $(RM) $(HTMLDOCS5)
550 $(RM) $(HTMLDOCS7)
551 $(RM) $(MANDOCS1)
552 $(RM) $(MANDOCS3)
553 $(RM) $(MANDOCS5)
554 $(RM) $(MANDOCS7)
1842f369 555 $(RM) $(PROGRAMS) $(TESTPROGS) $(MODULES) $(SCRIPTS)
b0a97931 556 $(RM) $(GENERATED_MANDATORY) $(GENERATED)
0ce47b35
RL
557 -find . -name '*{- platform->depext() -}' \! -name '.*' \! -type d -exec $(RM) {} \;
558 -find . -name '*{- platform->objext() -}' \! -name '.*' \! -type d -exec $(RM) {} \;
4813ad2d 559 $(RM) core
a51f225d 560 $(RM) tags TAGS doc-nits cmd-nits md-nits
d016d1ec 561 $(RM) -r test/test-runs
4813ad2d 562 $(RM) openssl.pc libcrypto.pc libssl.pc
0ce47b35 563 -find . -type l \! -name '.*' -exec $(RM) {} \;
4813ad2d 564 $(RM) $(TARFILE)
567a9e6f 565
7cae3864 566distclean: clean
4813ad2d
RL
567 $(RM) configdata.pm
568 $(RM) Makefile
7cae3864 569
f8d9d6e4 570# We check if any depfile is newer than Makefile and decide to
a6adf099 571# concatenate only if that is true.
ea80a25e 572depend:
29eed3dd 573 @: {- output_off() if $disabled{makedepend}; "" -}
c39785d4
RL
574 @$(PERL) $(SRCDIR)/util/add-depends.pl {-
575 defined $makedepprog && $makedepprog =~ /\/makedepend/
576 ? 'makedepend' : 'gcc' -}
29eed3dd 577 @: {- output_on() if $disabled{makedepend}; "" -}
567a9e6f
RL
578
579# Install helper targets #############################################
580
41149648 581install_sw: install_dev install_engines install_modules install_runtime
567a9e6f 582
41149648 583uninstall_sw: uninstall_runtime uninstall_modules uninstall_engines uninstall_dev
567a9e6f
RL
584
585install_docs: install_man_docs install_html_docs
586
587uninstall_docs: uninstall_man_docs uninstall_html_docs
3b8033f3 588 $(RM) -r $(DESTDIR)$(DOCDIR)
567a9e6f 589
a1bfcb15
RL
590install_fips: install_sw
591 @$(ECHO) "*** Installing FIPS module configuration"
592 @$(ECHO) "fipsinstall $(DESTDIR)$(MODULESDIR)/$(FIPSMODULENAME).cnf"
593 @openssl fipsinstall -module $(DESTDIR)$(MODULESDIR)/$(FIPSMODULENAME) \
594 -out $(DESTDIR)$(MODULESDIR)/$(FIPSMODULENAME).cnf \
595 -macopt 'key:$(FIPSKEY)'
596
597uninstall_fips: uninstall_sw
598 @$(ECHO) "*** Uninstalling FIPS module configuration"
599 @$(ECHO) "$(RM) $(DESTDIR)$(MODULESDIR)/$(FIPSMODULENAME).cnf"
600 @$(RM) $(DESTDIR)$(MODULESDIR)/$(FIPSMODULENAME).cnf
601
dde10ab4
RL
602install_ssldirs:
603 @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(OPENSSLDIR)/certs
604 @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(OPENSSLDIR)/private
66c2eb8b 605 @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(OPENSSLDIR)/misc
4813ad2d
RL
606 @set -e; for x in dummy $(MISC_SCRIPTS); do \
607 if [ "$$x" = "dummy" ]; then continue; fi; \
d8356e1b
RL
608 x1=`echo "$$x" | cut -f1 -d:`; \
609 x2=`echo "$$x" | cut -f2 -d:`; \
610 fn=`basename $$x1`; \
611 $(ECHO) "install $$x1 -> $(DESTDIR)$(OPENSSLDIR)/misc/$$fn"; \
612 cp $$x1 $(DESTDIR)$(OPENSSLDIR)/misc/$$fn.new; \
4813ad2d
RL
613 chmod 755 $(DESTDIR)$(OPENSSLDIR)/misc/$$fn.new; \
614 mv -f $(DESTDIR)$(OPENSSLDIR)/misc/$$fn.new \
615 $(DESTDIR)$(OPENSSLDIR)/misc/$$fn; \
d8356e1b
RL
616 if [ "$$x1" != "$$x2" ]; then \
617 ln=`basename "$$x2"`; \
618 : {- output_off() unless windowsdll(); "" -}; \
619 $(ECHO) "copy $(DESTDIR)$(OPENSSLDIR)/misc/$$ln -> $(DESTDIR)$(OPENSSLDIR)/misc/$$fn"; \
620 cp $(DESTDIR)$(OPENSSLDIR)/misc/$$fn $(DESTDIR)$(OPENSSLDIR)/misc/$$ln; \
621 : {- output_on() unless windowsdll();
622 output_off() if windowsdll(); "" -}; \
623 $(ECHO) "link $(DESTDIR)$(OPENSSLDIR)/misc/$$ln -> $(DESTDIR)$(OPENSSLDIR)/misc/$$fn"; \
624 ln -sf $$fn $(DESTDIR)$(OPENSSLDIR)/misc/$$ln; \
625 : {- output_on() if windowsdll(); "" -}; \
626 fi; \
4813ad2d 627 done
5407338a 628 @$(ECHO) "install $(SRCDIR)/apps/openssl.cnf -> $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.dist"
4813ad2d
RL
629 @cp $(SRCDIR)/apps/openssl.cnf $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.new
630 @chmod 644 $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.new
cb926df2 631 @mv -f $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.new $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.dist
c7af65c7 632 @if [ ! -f "$(DESTDIR)$(OPENSSLDIR)/openssl.cnf" ]; then \
5407338a 633 $(ECHO) "install $(SRCDIR)/apps/openssl.cnf -> $(DESTDIR)$(OPENSSLDIR)/openssl.cnf"; \
cb926df2
RL
634 cp $(SRCDIR)/apps/openssl.cnf $(DESTDIR)$(OPENSSLDIR)/openssl.cnf; \
635 chmod 644 $(DESTDIR)$(OPENSSLDIR)/openssl.cnf; \
636 fi
5407338a 637 @$(ECHO) "install $(SRCDIR)/apps/ct_log_list.cnf -> $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.dist"
c7af65c7
RS
638 @cp $(SRCDIR)/apps/ct_log_list.cnf $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.new
639 @chmod 644 $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.new
640 @mv -f $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.new $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.dist
641 @if [ ! -f "$(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf" ]; then \
5407338a 642 $(ECHO) "install $(SRCDIR)/apps/ct_log_list.cnf -> $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf"; \
c7af65c7
RS
643 cp $(SRCDIR)/apps/ct_log_list.cnf $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf; \
644 chmod 644 $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf; \
645 fi
dde10ab4 646
c1123d9f 647install_dev: install_runtime_libs
567a9e6f 648 @[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
5407338a 649 @$(ECHO) "*** Installing development files"
3c65577f 650 @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(INSTALLTOP)/include/openssl
92ebf6c4 651 @ : {- output_off() unless grep { $_ eq "OPENSSL_USE_APPLINK" } (@{$target{defines}}, @{$config{defines}}); "" -}
5407338a 652 @$(ECHO) "install $(SRCDIR)/ms/applink.c -> $(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c"
24c4f736
RL
653 @cp $(SRCDIR)/ms/applink.c $(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c
654 @chmod 644 $(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c
92ebf6c4 655 @ : {- output_on() unless grep { $_ eq "OPENSSL_USE_APPLINK" } (@{$target{defines}}, @{$config{defines}}); "" -}
567a9e6f
RL
656 @set -e; for i in $(SRCDIR)/include/openssl/*.h \
657 $(BLDDIR)/include/openssl/*.h; do \
658 fn=`basename $$i`; \
5407338a 659 $(ECHO) "install $$i -> $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn"; \
3c65577f
RL
660 cp $$i $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn; \
661 chmod 644 $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn; \
567a9e6f 662 done
e454f3ad 663 @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(libdir)
0f01b7bc 664 @set -e; for l in $(INSTALL_LIBS); do \
567a9e6f 665 fn=`basename $$l`; \
e454f3ad
RL
666 $(ECHO) "install $$l -> $(DESTDIR)$(libdir)/$$fn"; \
667 cp $$l $(DESTDIR)$(libdir)/$$fn.new; \
668 $(RANLIB) $(DESTDIR)$(libdir)/$$fn.new; \
669 chmod 644 $(DESTDIR)$(libdir)/$$fn.new; \
670 mv -f $(DESTDIR)$(libdir)/$$fn.new \
671 $(DESTDIR)$(libdir)/$$fn; \
567a9e6f 672 done
84af1bae 673 @ : {- output_off() if $disabled{shared}; "" -}
0f01b7bc 674 @set -e; for s in $(INSTALL_SHLIB_INFO); do \
c8c2b779
RL
675 s1=`echo "$$s" | cut -f1 -d";"`; \
676 s2=`echo "$$s" | cut -f2 -d";"`; \
ef161e7b 677 s3=`echo "$$s" | cut -f3 -d";"`; \
d9c22dde
RL
678 fn1=`basename "$$s1"`; \
679 fn2=`basename "$$s2"`; \
680 fn3=`basename "$$s3"`; \
cff89b17 681 : {- output_off(); output_on() unless windowsdll() or sharedaix(); "" -}; \
ef161e7b 682 if [ "$$fn2" != "" ]; then \
e454f3ad
RL
683 $(ECHO) "link $(DESTDIR)$(libdir)/$$fn2 -> $(DESTDIR)$(libdir)/$$fn1"; \
684 ln -sf $$fn1 $(DESTDIR)$(libdir)/$$fn2; \
567a9e6f 685 fi; \
cff89b17 686 : {- output_off() unless windowsdll() or sharedaix(); output_on() if windowsdll(); "" -}; \
d9c22dde
RL
687 if [ "$$fn3" != "" ]; then \
688 $(ECHO) "install $$s3 -> $(DESTDIR)$(libdir)/$$fn3"; \
689 cp $$s3 $(DESTDIR)$(libdir)/$$fn3.new; \
690 chmod 755 $(DESTDIR)$(libdir)/$$fn3.new; \
691 mv -f $(DESTDIR)$(libdir)/$$fn3.new \
692 $(DESTDIR)$(libdir)/$$fn3; \
693 fi; \
cff89b17
AP
694 : {- output_off() if windowsdll(); output_on() if sharedaix(); "" -}; \
695 a=$(DESTDIR)$(libdir)/$$fn2; \
696 $(ECHO) "install $$s1 -> $$a"; \
697 if [ -f $$a ]; then ( trap "rm -rf /tmp/ar.$$$$" INT 0; \
698 mkdir /tmp/ar.$$$$; ( cd /tmp/ar.$$$$; \
699 cp -f $$a $$a.new; \
700 for so in `$(AR) t $$a`; do \
701 $(AR) x $$a $$so; \
702 chmod u+w $$so; \
703 strip -X32_64 -e $$so; \
704 $(AR) r $$a.new $$so; \
705 done; \
706 )); fi; \
707 $(AR) r $$a.new $$s1; \
708 mv -f $$a.new $$a; \
709 : {- output_off() if sharedaix(); output_on(); "" -}; \
567a9e6f 710 done
84af1bae 711 @ : {- output_on() if $disabled{shared}; "" -}
e454f3ad
RL
712 @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(libdir)/pkgconfig
713 @$(ECHO) "install libcrypto.pc -> $(DESTDIR)$(libdir)/pkgconfig/libcrypto.pc"
714 @cp libcrypto.pc $(DESTDIR)$(libdir)/pkgconfig
715 @chmod 644 $(DESTDIR)$(libdir)/pkgconfig/libcrypto.pc
716 @$(ECHO) "install libssl.pc -> $(DESTDIR)$(libdir)/pkgconfig/libssl.pc"
717 @cp libssl.pc $(DESTDIR)$(libdir)/pkgconfig
718 @chmod 644 $(DESTDIR)$(libdir)/pkgconfig/libssl.pc
719 @$(ECHO) "install openssl.pc -> $(DESTDIR)$(libdir)/pkgconfig/openssl.pc"
720 @cp openssl.pc $(DESTDIR)$(libdir)/pkgconfig
721 @chmod 644 $(DESTDIR)$(libdir)/pkgconfig/openssl.pc
567a9e6f 722
c1123d9f 723uninstall_dev: uninstall_runtime_libs
5407338a 724 @$(ECHO) "*** Uninstalling development files"
92ebf6c4 725 @ : {- output_off() unless grep { $_ eq "OPENSSL_USE_APPLINK" } (@{$target{defines}}, @{$config{defines}}); "" -}
5407338a 726 @$(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c"
24c4f736 727 @$(RM) $(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c
92ebf6c4 728 @ : {- output_on() unless grep { $_ eq "OPENSSL_USE_APPLINK" } (@{$target{defines}}, @{$config{defines}}); "" -}
567a9e6f
RL
729 @set -e; for i in $(SRCDIR)/include/openssl/*.h \
730 $(BLDDIR)/include/openssl/*.h; do \
731 fn=`basename $$i`; \
5407338a 732 $(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn"; \
3c65577f 733 $(RM) $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn; \
567a9e6f 734 done
98e5534e
RL
735 -$(RMDIR) $(DESTDIR)$(INSTALLTOP)/include/openssl
736 -$(RMDIR) $(DESTDIR)$(INSTALLTOP)/include
0f01b7bc 737 @set -e; for l in $(INSTALL_LIBS); do \
567a9e6f 738 fn=`basename $$l`; \
e454f3ad
RL
739 $(ECHO) "$(RM) $(DESTDIR)$(libdir)/$$fn"; \
740 $(RM) $(DESTDIR)$(libdir)/$$fn; \
567a9e6f 741 done
84af1bae 742 @ : {- output_off() if $disabled{shared}; "" -}
0f01b7bc 743 @set -e; for s in $(INSTALL_SHLIB_INFO); do \
c8c2b779
RL
744 s1=`echo "$$s" | cut -f1 -d";"`; \
745 s2=`echo "$$s" | cut -f2 -d";"`; \
ef161e7b 746 s3=`echo "$$s" | cut -f3 -d";"`; \
d9c22dde
RL
747 fn1=`basename "$$s1"`; \
748 fn2=`basename "$$s2"`; \
749 fn3=`basename "$$s3"`; \
c8c2b779 750 : {- output_off() if windowsdll(); "" -}; \
ef161e7b
RL
751 $(ECHO) "$(RM) $(DESTDIR)$(libdir)/$$fn1"; \
752 $(RM) $(DESTDIR)$(libdir)/$$fn1; \
753 if [ -n "$$fn2" ]; then \
754 $(ECHO) "$(RM) $(DESTDIR)$(libdir)/$$fn2"; \
755 $(RM) $(DESTDIR)$(libdir)/$$fn2; \
567a9e6f 756 fi; \
c8c2b779 757 : {- output_on() if windowsdll(); "" -}{- output_off() unless windowsdll(); "" -}; \
d9c22dde
RL
758 if [ -n "$$fn3" ]; then \
759 $(ECHO) "$(RM) $(DESTDIR)$(libdir)/$$fn3"; \
760 $(RM) $(DESTDIR)$(libdir)/$$fn3; \
761 fi; \
ce5ed82f 762 : {- output_on() unless windowsdll(); "" -}; \
567a9e6f 763 done
c8cca980 764 @ : {- output_on() if $disabled{shared}; "" -}
e454f3ad
RL
765 $(RM) $(DESTDIR)$(libdir)/pkgconfig/libcrypto.pc
766 $(RM) $(DESTDIR)$(libdir)/pkgconfig/libssl.pc
767 $(RM) $(DESTDIR)$(libdir)/pkgconfig/openssl.pc
768 -$(RMDIR) $(DESTDIR)$(libdir)/pkgconfig
769 -$(RMDIR) $(DESTDIR)$(libdir)
567a9e6f 770
41149648
RL
771_install_modules_deps: install_runtime_libs build_modules
772
773install_engines: _install_modules_deps
567a9e6f 774 @[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
b2de11c5 775 @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(ENGINESDIR)/
41149648 776 @$(ECHO) "*** Installing engines"
0f01b7bc 777 @set -e; for e in dummy $(INSTALL_ENGINES); do \
2b364f61 778 if [ "$$e" = "dummy" ]; then continue; fi; \
567a9e6f 779 fn=`basename $$e`; \
5407338a 780 $(ECHO) "install $$e -> $(DESTDIR)$(ENGINESDIR)/$$fn"; \
b2de11c5
RL
781 cp $$e $(DESTDIR)$(ENGINESDIR)/$$fn.new; \
782 chmod 755 $(DESTDIR)$(ENGINESDIR)/$$fn.new; \
783 mv -f $(DESTDIR)$(ENGINESDIR)/$$fn.new \
784 $(DESTDIR)$(ENGINESDIR)/$$fn; \
567a9e6f
RL
785 done
786
787uninstall_engines:
41149648 788 @$(ECHO) "*** Uninstalling engines"
0f01b7bc 789 @set -e; for e in dummy $(INSTALL_ENGINES); do \
2b364f61 790 if [ "$$e" = "dummy" ]; then continue; fi; \
567a9e6f 791 fn=`basename $$e`; \
5407338a 792 $(ECHO) "$(RM) $(DESTDIR)$(ENGINESDIR)/$$fn"; \
b2de11c5 793 $(RM) $(DESTDIR)$(ENGINESDIR)/$$fn; \
567a9e6f 794 done
b2de11c5 795 -$(RMDIR) $(DESTDIR)$(ENGINESDIR)
567a9e6f 796
41149648
RL
797install_modules: _install_modules_deps
798 @[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
799 @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(MODULESDIR)/
800 @$(ECHO) "*** Installing modules"
801 @set -e; for e in dummy $(INSTALL_MODULES); do \
802 if [ "$$e" = "dummy" ]; then continue; fi; \
803 fn=`basename $$e`; \
804 $(ECHO) "install $$e -> $(DESTDIR)$(MODULESDIR)/$$fn"; \
805 cp $$e $(DESTDIR)$(MODULESDIR)/$$fn.new; \
806 chmod 755 $(DESTDIR)$(MODULESDIR)/$$fn.new; \
807 mv -f $(DESTDIR)$(MODULESDIR)/$$fn.new \
808 $(DESTDIR)$(MODULESDIR)/$$fn; \
809 done
810
811uninstall_modules:
812 @$(ECHO) "*** Uninstalling modules"
813 @set -e; for e in dummy $(INSTALL_MODULES); do \
814 if [ "$$e" = "dummy" ]; then continue; fi; \
815 fn=`basename $$e`; \
41149648
RL
816 $(ECHO) "$(RM) $(DESTDIR)$(MODULESDIR)/$$fn"; \
817 $(RM) $(DESTDIR)$(MODULESDIR)/$$fn; \
818 done
819 -$(RMDIR) $(DESTDIR)$(MODULESDIR)
820
c1123d9f
RL
821install_runtime: install_programs
822
e8d01a60 823install_runtime_libs: build_libs
567a9e6f 824 @[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
36b53720 825 @ : {- output_off() if windowsdll(); "" -}
e454f3ad 826 @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(libdir)
9694ebf7
RL
827 @ : {- output_on() if windowsdll(); output_off() unless windowsdll(); "" -}
828 @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(INSTALLTOP)/bin
829 @ : {- output_on() unless windowsdll(); "" -}
c1123d9f 830 @$(ECHO) "*** Installing runtime libraries"
0f01b7bc 831 @set -e; for s in dummy $(INSTALL_SHLIBS); do \
2b364f61 832 if [ "$$s" = "dummy" ]; then continue; fi; \
f99f91f1 833 fn=`basename $$s`; \
36b53720 834 : {- output_off() unless windowsdll(); "" -}; \
5407338a 835 $(ECHO) "install $$s -> $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
3c65577f 836 cp $$s $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
fa63e452 837 chmod 755 $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
3c65577f
RL
838 mv -f $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new \
839 $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
36b53720 840 : {- output_on() unless windowsdll(); "" -}{- output_off() if windowsdll(); "" -}; \
e454f3ad
RL
841 $(ECHO) "install $$s -> $(DESTDIR)$(libdir)/$$fn"; \
842 cp $$s $(DESTDIR)$(libdir)/$$fn.new; \
843 chmod 755 $(DESTDIR)$(libdir)/$$fn.new; \
844 mv -f $(DESTDIR)$(libdir)/$$fn.new \
845 $(DESTDIR)$(libdir)/$$fn; \
36b53720 846 : {- output_on() if windowsdll(); "" -}; \
fcf80c46 847 done
c1123d9f 848
e8d01a60 849install_programs: install_runtime_libs build_programs
c1123d9f
RL
850 @[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
851 @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(INSTALLTOP)/bin
852 @$(ECHO) "*** Installing runtime programs"
0f01b7bc 853 @set -e; for x in dummy $(INSTALL_PROGRAMS); do \
2b364f61 854 if [ "$$x" = "dummy" ]; then continue; fi; \
567a9e6f 855 fn=`basename $$x`; \
5407338a 856 $(ECHO) "install $$x -> $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
3c65577f
RL
857 cp $$x $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
858 chmod 755 $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
859 mv -f $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new \
860 $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
567a9e6f 861 done
2b364f61
RL
862 @set -e; for x in dummy $(BIN_SCRIPTS); do \
863 if [ "$$x" = "dummy" ]; then continue; fi; \
567a9e6f 864 fn=`basename $$x`; \
5407338a 865 $(ECHO) "install $$x -> $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
3c65577f
RL
866 cp $$x $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
867 chmod 755 $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
868 mv -f $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new \
869 $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
567a9e6f 870 done
567a9e6f 871
c1123d9f
RL
872uninstall_runtime: uninstall_programs uninstall_runtime_libs
873
874uninstall_programs:
875 @$(ECHO) "*** Uninstalling runtime programs"
0f01b7bc 876 @set -e; for x in dummy $(INSTALL_PROGRAMS); \
567a9e6f 877 do \
2b364f61 878 if [ "$$x" = "dummy" ]; then continue; fi; \
567a9e6f 879 fn=`basename $$x`; \
5407338a 880 $(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
3c65577f 881 $(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
567a9e6f 882 done;
2b364f61 883 @set -e; for x in dummy $(BIN_SCRIPTS); \
567a9e6f 884 do \
2b364f61 885 if [ "$$x" = "dummy" ]; then continue; fi; \
567a9e6f 886 fn=`basename $$x`; \
5407338a 887 $(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
3c65577f 888 $(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
567a9e6f 889 done
c1123d9f
RL
890 -$(RMDIR) $(DESTDIR)$(INSTALLTOP)/bin
891
892uninstall_runtime_libs:
893 @$(ECHO) "*** Uninstalling runtime libraries"
b1837abd 894 @ : {- output_off() unless windowsdll(); "" -}
0f01b7bc 895 @set -e; for s in dummy $(INSTALL_SHLIBS); do \
2b364f61 896 if [ "$$s" = "dummy" ]; then continue; fi; \
f99f91f1 897 fn=`basename $$s`; \
5407338a 898 $(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
3c65577f 899 $(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
fcf80c46 900 done
b1837abd 901 @ : {- output_on() unless windowsdll(); "" -}
567a9e6f 902
567a9e6f 903
b0940b33 904install_man_docs: build_man_docs
567a9e6f 905 @[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
b0940b33
RL
906 @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(MANDIR)/man1
907 @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(MANDIR)/man3
908 @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(MANDIR)/man5
909 @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(MANDIR)/man7
5407338a 910 @$(ECHO) "*** Installing manpages"
b0940b33
RL
911 @set -e; for x in dummy $(MANDOCS1); do \
912 if [ "$$x" = "dummy" ]; then continue; fi; \
913 fn=`basename $$x`; \
cf86057a
SAS
914 $(ECHO) "install $$x -> $(DESTDIR)$(MANDIR)/man1/$${fn}$(MANSUFFIX)"; \
915 cp $$x $(DESTDIR)$(MANDIR)/man1/$${fn}$(MANSUFFIX); \
d685fc7a 916 chmod 644 $(DESTDIR)$(MANDIR)/man1/$${fn}$(MANSUFFIX); \
b0940b33
RL
917 done
918 @set -e; for x in dummy $(MANDOCS3); do \
919 if [ "$$x" = "dummy" ]; then continue; fi; \
920 fn=`basename $$x`; \
cf86057a
SAS
921 $(ECHO) "install $$x -> $(DESTDIR)$(MANDIR)/man3/$${fn}$(MANSUFFIX)"; \
922 cp $$x $(DESTDIR)$(MANDIR)/man3/$${fn}$(MANSUFFIX); \
d685fc7a 923 chmod 644 $(DESTDIR)$(MANDIR)/man3/$${fn}$(MANSUFFIX); \
b0940b33
RL
924 done
925 @set -e; for x in dummy $(MANDOCS5); do \
926 if [ "$$x" = "dummy" ]; then continue; fi; \
927 fn=`basename $$x`; \
cf86057a
SAS
928 $(ECHO) "install $$x -> $(DESTDIR)$(MANDIR)/man5/$${fn}$(MANSUFFIX)"; \
929 cp $$x $(DESTDIR)$(MANDIR)/man5/$${fn}$(MANSUFFIX); \
d685fc7a 930 chmod 644 $(DESTDIR)$(MANDIR)/man5/$${fn}$(MANSUFFIX); \
b0940b33
RL
931 done
932 @set -e; for x in dummy $(MANDOCS7); do \
933 if [ "$$x" = "dummy" ]; then continue; fi; \
934 fn=`basename $$x`; \
cf86057a
SAS
935 $(ECHO) "install $$x -> $(DESTDIR)$(MANDIR)/man7/$${fn}$(MANSUFFIX)"; \
936 cp $$x $(DESTDIR)$(MANDIR)/man7/$${fn}$(MANSUFFIX); \
d685fc7a 937 chmod 644 $(DESTDIR)$(MANDIR)/man7/$${fn}$(MANSUFFIX); \
b0940b33 938 done
567a9e6f
RL
939
940uninstall_man_docs:
5407338a 941 @$(ECHO) "*** Uninstalling manpages"
b0940b33
RL
942 @set -e; for x in dummy $(MANDOCS1); do \
943 if [ "$$x" = "dummy" ]; then continue; fi; \
944 fn=`basename $$x`; \
cf86057a
SAS
945 $(ECHO) "$(RM) $(DESTDIR)$(MANDIR)/man1/$${fn}$(MANSUFFIX)"; \
946 $(RM) $(DESTDIR)$(MANDIR)/man1/$${fn}$(MANSUFFIX); \
b0940b33
RL
947 done
948 @set -e; for x in dummy $(MANDOCS3); do \
949 if [ "$$x" = "dummy" ]; then continue; fi; \
950 fn=`basename $$x`; \
cf86057a
SAS
951 $(ECHO) "$(RM) $(DESTDIR)$(MANDIR)/man3/$${fn}$(MANSUFFIX)"; \
952 $(RM) $(DESTDIR)$(MANDIR)/man3/$${fn}$(MANSUFFIX); \
b0940b33
RL
953 done
954 @set -e; for x in dummy $(MANDOCS5); do \
955 if [ "$$x" = "dummy" ]; then continue; fi; \
956 fn=`basename $$x`; \
cf86057a
SAS
957 $(ECHO) "$(RM) $(DESTDIR)$(MANDIR)/man5/$${fn}$(MANSUFFIX)"; \
958 $(RM) $(DESTDIR)$(MANDIR)/man5/$${fn}$(MANSUFFIX); \
b0940b33
RL
959 done
960 @set -e; for x in dummy $(MANDOCS7); do \
961 if [ "$$x" = "dummy" ]; then continue; fi; \
962 fn=`basename $$x`; \
cf86057a
SAS
963 $(ECHO) "$(RM) $(DESTDIR)$(MANDIR)/man7/$${fn}$(MANSUFFIX)"; \
964 $(RM) $(DESTDIR)$(MANDIR)/man7/$${fn}$(MANSUFFIX); \
b0940b33 965 done
567a9e6f 966
b0940b33 967install_html_docs: build_html_docs
567a9e6f 968 @[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
b0940b33
RL
969 @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(HTMLDIR)/man1
970 @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(HTMLDIR)/man3
971 @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(HTMLDIR)/man5
972 @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(HTMLDIR)/man7
5407338a 973 @$(ECHO) "*** Installing HTML manpages"
b0940b33
RL
974 @set -e; for x in dummy $(HTMLDOCS1); do \
975 if [ "$$x" = "dummy" ]; then continue; fi; \
976 fn=`basename $$x`; \
977 $(ECHO) "install $$x -> $(DESTDIR)$(HTMLDIR)/man1/$$fn"; \
978 cp $$x $(DESTDIR)$(HTMLDIR)/man1/$$fn; \
d685fc7a 979 chmod 644 $(DESTDIR)$(HTMLDIR)/man1/$$fn; \
b0940b33
RL
980 done
981 @set -e; for x in dummy $(HTMLDOCS3); do \
982 if [ "$$x" = "dummy" ]; then continue; fi; \
983 fn=`basename $$x`; \
984 $(ECHO) "install $$x -> $(DESTDIR)$(HTMLDIR)/man3/$$fn"; \
985 cp $$x $(DESTDIR)$(HTMLDIR)/man3/$$fn; \
d685fc7a 986 chmod 644 $(DESTDIR)$(HTMLDIR)/man3/$$fn; \
b0940b33
RL
987 done
988 @set -e; for x in dummy $(HTMLDOCS5); do \
989 if [ "$$x" = "dummy" ]; then continue; fi; \
990 fn=`basename $$x`; \
991 $(ECHO) "install $$x -> $(DESTDIR)$(HTMLDIR)/man5/$$fn"; \
992 cp $$x $(DESTDIR)$(HTMLDIR)/man5/$$fn; \
d685fc7a 993 chmod 644 $(DESTDIR)$(HTMLDIR)/man5/$$fn; \
b0940b33
RL
994 done
995 @set -e; for x in dummy $(HTMLDOCS7); do \
996 if [ "$$x" = "dummy" ]; then continue; fi; \
997 fn=`basename $$x`; \
998 $(ECHO) "install $$x -> $(DESTDIR)$(HTMLDIR)/man7/$$fn"; \
999 cp $$x $(DESTDIR)$(HTMLDIR)/man7/$$fn; \
d685fc7a 1000 chmod 644 $(DESTDIR)$(HTMLDIR)/man7/$$fn; \
b0940b33 1001 done
567a9e6f
RL
1002
1003uninstall_html_docs:
b0940b33
RL
1004 @$(ECHO) "*** Uninstalling HTML manpages"
1005 @set -e; for x in dummy $(HTMLDOCS1); do \
1006 if [ "$$x" = "dummy" ]; then continue; fi; \
1007 fn=`basename $$x`; \
1008 $(ECHO) "$(RM) $(DESTDIR)$(HTMLDIR)/man1/$$fn"; \
1009 $(RM) $(DESTDIR)$(HTMLDIR)/man1/$$fn; \
1010 done
1011 @set -e; for x in dummy $(HTMLDOCS3); do \
1012 if [ "$$x" = "dummy" ]; then continue; fi; \
1013 fn=`basename $$x`; \
1014 $(ECHO) "$(RM) $(DESTDIR)$(HTMLDIR)/man3/$$fn"; \
1015 $(RM) $(DESTDIR)$(HTMLDIR)/man3/$$fn; \
1016 done
1017 @set -e; for x in dummy $(HTMLDOCS5); do \
1018 if [ "$$x" = "dummy" ]; then continue; fi; \
1019 fn=`basename $$x`; \
1020 $(ECHO) "$(RM) $(DESTDIR)$(HTMLDIR)/man5/$$fn"; \
1021 $(RM) $(DESTDIR)$(HTMLDIR)/man5/$$fn; \
1022 done
1023 @set -e; for x in dummy $(HTMLDOCS7); do \
1024 if [ "$$x" = "dummy" ]; then continue; fi; \
1025 fn=`basename $$x`; \
1026 $(ECHO) "$(RM) $(DESTDIR)$(HTMLDIR)/man7/$$fn"; \
1027 $(RM) $(DESTDIR)$(HTMLDIR)/man7/$$fn; \
1028 done
567a9e6f
RL
1029
1030# Developer targets (note: these are only available on Unix) #########
1031
7b9f8995
RL
1032# It's important that generate_buildinfo comes after ordinals, as ordinals
1033# is sensitive to build.info changes.
1034update: generate errors ordinals generate_buildinfo
6bb2106e 1035
b7650c67 1036generate: generate_apps generate_crypto_bn generate_crypto_objects \
8e32e1ab 1037 generate_crypto_conf generate_crypto_asn1 generate_fuzz_oids
567a9e6f 1038
7b9f8995
RL
1039generate_buildinfo: generate_doc_buildinfo
1040
a51f225d 1041.PHONY: doc-nits cmd-nits md-nits
9ca08f91 1042doc-nits: build_generated_pods
1624ebdb 1043 $(PERL) $(SRCDIR)/util/find-doc-nits -n -l -e
65c1f979 1044
9ca08f91 1045cmd-nits: build_generated apps/openssl build_generated_pods
1624ebdb 1046 $(PERL) $(SRCDIR)/util/find-doc-nits -c
65718c51 1047
a51f225d
RS
1048# This uses "mdl", the markdownlint application, which is written in ruby.
1049# The source is at https://github.com/markdownlint/markdownlint
1050# If you have ruby installed, "gem install mdl" should work.
1051# Another option is at https://snapcraft.io/install/mdl/debian
1052# Finally, there's a Node.js version, which we haven't tried, that
1053# can be found at https://github.com/DavidAnson/markdownlint
1054md-nits:
9f1fe6a9 1055 mdl -s util/markdownlint.rb .
a51f225d 1056
567a9e6f
RL
1057# Test coverage is a good idea for the future
1058#coverage: $(PROGRAMS) $(TESTPROGRAMS)
1059# ...
1060
567a9e6f
RL
1061lint:
1062 lint -DLINT $(INCLUDES) $(SRCS)
1063
9a9f8ee7
RL
1064generate_apps:
1065 ( cd $(SRCDIR); $(PERL) VMS/VMSify-conf.pl \
1066 < apps/openssl.cnf > apps/openssl-vms.cnf )
9a9f8ee7
RL
1067
1068generate_crypto_bn:
1069 ( cd $(SRCDIR); $(PERL) crypto/bn/bn_prime.pl > crypto/bn/bn_prime.h )
1070
1071generate_crypto_objects:
22defb43
RS
1072 ( cd $(SRCDIR); $(PERL) crypto/objects/objects.pl -n \
1073 crypto/objects/objects.txt \
1074 crypto/objects/obj_mac.num \
1075 > crypto/objects/obj_mac.new && \
1076 mv crypto/objects/obj_mac.new crypto/objects/obj_mac.num )
9a9f8ee7
RL
1077 ( cd $(SRCDIR); $(PERL) crypto/objects/objects.pl \
1078 crypto/objects/objects.txt \
1079 crypto/objects/obj_mac.num \
22defb43 1080 > include/openssl/obj_mac.h )
e6f2bb66
KM
1081 ( cd $(SRCDIR); $(PERL) crypto/objects/obj_dat.pl \
1082 include/openssl/obj_mac.h \
22defb43 1083 > crypto/objects/obj_dat.h )
9a9f8ee7
RL
1084 ( cd $(SRCDIR); $(PERL) crypto/objects/objxref.pl \
1085 crypto/objects/obj_mac.num \
1086 crypto/objects/obj_xref.txt \
1087 > crypto/objects/obj_xref.h )
ad16671d 1088 ( cd $(SRCDIR); cat crypto/objects/obj_compat.h >> include/openssl/obj_mac.h )
6bb2106e 1089
b7650c67
RL
1090generate_crypto_conf:
1091 ( cd $(SRCDIR); $(PERL) crypto/conf/keysets.pl \
1092 > crypto/conf/conf_def.h )
1093
1094generate_crypto_asn1:
1095 ( cd $(SRCDIR); $(PERL) crypto/asn1/charmap.pl \
1096 > crypto/asn1/charmap.h )
1097
8e32e1ab
RL
1098generate_fuzz_oids:
1099 ( cd $(SRCDIR); $(PERL) fuzz/mkfuzzoids.pl \
1100 crypto/objects/obj_dat.h \
1101 > fuzz/oids.txt )
1102
7b9f8995
RL
1103generate_doc_buildinfo:
1104 ( $(PERL) -I$(BLDDIR) -Mconfigdata \
1105 $(SRCDIR)/util/dofile.pl -o Makefile \
5a6a6d59
RL
1106 $(SRCDIR)/doc/build.info.in \
1107 > $(SRCDIR)/doc/build.info.new; \
1108 if ( test -e $(SRCDIR)/doc/build.info \
1109 && cmp $(SRCDIR)/doc/build.info.new $(SRCDIR)/doc/build.info \
1110 > /dev/null ); \
1111 then \
1112 rm $(SRCDIR)/doc/build.info.new; \
1113 else \
1114 mv $(SRCDIR)/doc/build.info.new $(SRCDIR)/doc/build.info; \
1115 fi )
7b9f8995 1116
52df25cf
RS
1117# Set to -force to force a rebuild
1118ERROR_REBUILD=
567a9e6f 1119errors:
aa6cc8d3
RL
1120 ( b=`pwd`; set -e; cd $(SRCDIR); \
1121 $(PERL) util/ck_errf.pl -strict -internal; \
cb7b7275 1122 $(PERL) -I$$b util/mkerr.pl $(ERROR_REBUILD) -internal )
aa6cc8d3 1123 ( b=`pwd`; set -e; cd $(SRCDIR)/engines; \
52df25cf 1124 for E in *.ec ; do \
aa6cc8d3
RL
1125 $(PERL) ../util/ck_errf.pl -strict \
1126 -conf $$E `basename $$E .ec`.c; \
cb7b7275 1127 $(PERL) -I$$b ../util/mkerr.pl $(ERROR_REBUILD) -static \
52df25cf
RS
1128 -conf $$E `basename $$E .ec`.c ; \
1129 done )
567a9e6f 1130
30699aa1
RL
1131{- use File::Basename;
1132
96296339 1133 my @sslheaders_tmpl =
30699aa1
RL
1134 qw( include/openssl/ssl.h
1135 include/openssl/ssl2.h
1136 include/openssl/ssl3.h
1137 include/openssl/sslerr.h
1138 include/openssl/tls1.h
1139 include/openssl/dtls1.h
f5a46ed7
RL
1140 include/openssl/srtp.h
1141 include/openssl/sslerr_legacy.h );
96296339 1142 my @cryptoheaders_tmpl =
30699aa1
RL
1143 qw( include/internal/dso.h
1144 include/internal/o_dir.h
30699aa1 1145 include/internal/err.h
c2041da8 1146 include/internal/evp.h
16feca71
RL
1147 include/internal/pem.h
1148 include/internal/asn1.h
30699aa1 1149 include/internal/sslconf.h );
96296339 1150 my @cryptoskipheaders = ( @sslheaders_tmpl,
30699aa1
RL
1151 qw( include/openssl/conf_api.h
1152 include/openssl/ebcdic.h
1153 include/openssl/opensslconf.h
1154 include/openssl/symhacks.h ) );
5d942028
RL
1155 our %cryptoheaders = ();
1156 our %sslheaders = ();
96296339
RL
1157 foreach my $d ( qw( include/openssl include/internal ) ) {
1158 my @header_patterns =
1159 map { catfile($config{sourcedir}, $d, $_) } ( '*.h', '*.h.in' );
1160 foreach my $f ( map { glob($_) } @header_patterns ) {
1161 my $base = basename($f);
1162 my $base_in = basename($f, '.in');
1163 my $dir = catfile($config{sourcedir}, $d);
1164 if ($base ne $base_in) {
1165 # We have a .h.in file, which means the header file is in the
1166 # build tree.
1167 $base = $base_in;
1168 $dir = catfile($config{builddir}, $d);
1169 }
1170 my $new_f = catfile($dir, $base);
1171 my $fn = "$d/$base";
1172 # The logic to add files to @cryptoheaders is a bit complex. The
1173 # file to be added must be either in the public header directory
1174 # or one of the pre-declared internal headers, and must under no
1175 # circumstances be one of those that must be skipped.
5d942028 1176 $cryptoheaders{$new_f} = 1
96296339
RL
1177 if (($d eq 'include/openssl'
1178 || ( grep { $_ eq $fn } @cryptoheaders_tmpl ))
1179 && !( grep { $_ eq $fn } @cryptoskipheaders ));
1180 # The logic to add files to @sslheaders is much simpler...
5d942028 1181 $sslheaders{$new_f} = 1 if grep { $_ eq $fn } @sslheaders_tmpl;
96296339 1182 }
30699aa1
RL
1183 }
1184 "";
1185-}
c00d9311 1186CRYPTOHEADERS={- join(" \\\n" . ' ' x 14,
5d942028 1187 fill_lines(" ", $COLUMNS - 14, sort keys %cryptoheaders)) -}
c00d9311 1188SSLHEADERS={- join(" \\\n" . ' ' x 11,
5d942028 1189 fill_lines(" ", $COLUMNS - 11, sort keys %sslheaders)) -}
96296339
RL
1190ordinals: build_generated
1191 $(PERL) $(SRCDIR)/util/mknum.pl --version $(VERSION) --no-warnings \
1192 --ordinals $(SRCDIR)/util/libcrypto.num \
1193 --symhacks $(SRCDIR)/include/openssl/symhacks.h \
1194 $(CRYPTOHEADERS)
1195 $(PERL) $(SRCDIR)/util/mknum.pl --version $(VERSION) --no-warnings \
1196 --ordinals $(SRCDIR)/util/libssl.num \
1197 --symhacks $(SRCDIR)/include/openssl/symhacks.h \
1198 $(SSLHEADERS)
567a9e6f
RL
1199
1200test_ordinals:
1201 ( cd test; \
1202 SRCTOP=../$(SRCDIR) \
1203 BLDTOP=../$(BLDDIR) \
1204 $(PERL) ../$(SRCDIR)/test/run_tests.pl test_ordinals )
1205
1206tags TAGS: FORCE
1207 rm -f TAGS tags
1208 -ctags -R .
1209 -etags `find . -name '*.[ch]' -o -name '*.pm'`
1210
1211# Release targets (note: only available on Unix) #####################
1212
1213tar:
b741f153 1214 (cd $(SRCDIR); ./util/mktar.sh --name='$(NAME)' --tarfile='$(TARFILE)')
567a9e6f
RL
1215
1216# Helper targets #####################################################
1217
c3845ceb 1218link-utils: $(BLDDIR)/util/opensslwrap.sh $(BLDDIR)/util/wrap.pl
567a9e6f 1219
c3845ceb 1220$(BLDDIR)/util/opensslwrap.sh $(BLDDIR)/util/wrap.pl: configdata.pm
567a9e6f
RL
1221 @if [ "$(SRCDIR)" != "$(BLDDIR)" ]; then \
1222 mkdir -p "$(BLDDIR)/util"; \
c3845ceb 1223 ln -sf "../$(SRCDIR)/util/`basename "$@"`" "$(BLDDIR)/util"; \
567a9e6f 1224 fi
342a1a23 1225
c058fcd7 1226FORCE:
567a9e6f
RL
1227
1228# Building targets ###################################################
1229
ef161e7b 1230libcrypto.pc libssl.pc openssl.pc: configdata.pm $(LIBS) {- join(" ",map { platform->sharedlib_simple($_) // platform->sharedlib_import($_) // () } @{$unified_info{libraries}}) -}
567a9e6f
RL
1231libcrypto.pc:
1232 @ ( echo 'prefix=$(INSTALLTOP)'; \
1233 echo 'exec_prefix=$${prefix}'; \
e454f3ad
RL
1234 if [ -n "$(LIBDIR)" ]; then \
1235 echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
1236 else \
1237 echo 'libdir=$(libdir)'; \
1238 fi; \
567a9e6f 1239 echo 'includedir=$${prefix}/include'; \
d4453024 1240 echo 'enginesdir=$${libdir}/engines-{- $sover_dirname -}'; \
567a9e6f
RL
1241 echo ''; \
1242 echo 'Name: OpenSSL-libcrypto'; \
1243 echo 'Description: OpenSSL cryptography library'; \
1244 echo 'Version: '$(VERSION); \
1245 echo 'Libs: -L$${libdir} -lcrypto'; \
abe256e7 1246 echo 'Libs.private: $(LIB_EX_LIBS)'; \
567a9e6f
RL
1247 echo 'Cflags: -I$${includedir}' ) > libcrypto.pc
1248
1249libssl.pc:
1250 @ ( echo 'prefix=$(INSTALLTOP)'; \
1251 echo 'exec_prefix=$${prefix}'; \
e454f3ad
RL
1252 if [ -n "$(LIBDIR)" ]; then \
1253 echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
1254 else \
1255 echo 'libdir=$(libdir)'; \
1256 fi; \
567a9e6f
RL
1257 echo 'includedir=$${prefix}/include'; \
1258 echo ''; \
1259 echo 'Name: OpenSSL-libssl'; \
1260 echo 'Description: Secure Sockets Layer and cryptography libraries'; \
1261 echo 'Version: '$(VERSION); \
1262 echo 'Requires.private: libcrypto'; \
1263 echo 'Libs: -L$${libdir} -lssl'; \
567a9e6f
RL
1264 echo 'Cflags: -I$${includedir}' ) > libssl.pc
1265
1266openssl.pc:
1267 @ ( echo 'prefix=$(INSTALLTOP)'; \
1268 echo 'exec_prefix=$${prefix}'; \
e454f3ad
RL
1269 if [ -n "$(LIBDIR)" ]; then \
1270 echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
1271 else \
1272 echo 'libdir=$(libdir)'; \
1273 fi; \
567a9e6f
RL
1274 echo 'includedir=$${prefix}/include'; \
1275 echo ''; \
1276 echo 'Name: OpenSSL'; \
1277 echo 'Description: Secure Sockets Layer and cryptography libraries and tools'; \
1278 echo 'Version: '$(VERSION); \
1279 echo 'Requires: libssl libcrypto' ) > openssl.pc
1280
c00d9311
RL
1281configdata.pm: $(SRCDIR)/Configure $(SRCDIR)/config \
1282 {- join(" \\\n" . ' ' x 15,
1283 fill_lines(" ", $COLUMNS - 15,
1284 @{$config{build_file_templates}},
1285 @{$config{build_infos}},
1286 @{$config{conf_files}})) -}
27f42b46 1287 @echo "Detected changed: $?"
a1b6933e 1288 $(PERL) configdata.pm -r
567a9e6f
RL
1289 @echo "**************************************************"
1290 @echo "*** ***"
1291 @echo "*** Please run the same make command again ***"
1292 @echo "*** ***"
1293 @echo "**************************************************"
1294 @false
1295
bf01fbbf 1296reconfigure reconf:
a1b6933e 1297 $(PERL) configdata.pm -r
bf01fbbf 1298
567a9e6f
RL
1299{-
1300 use File::Basename;
1301 use File::Spec::Functions qw/:DEFAULT abs2rel rel2abs/;
cedbb146
RL
1302
1303 # Helper function to figure out dependencies on libraries
1304 # It takes a list of library names and outputs a list of dependencies
1305 sub compute_lib_depends {
cedbb146
RL
1306 # Depending on shared libraries:
1307 # On Windows POSIX layers, we depend on {libname}.dll.a
1308 # On Unix platforms, we depend on {shlibname}.so
ef161e7b
RL
1309 return map { platform->sharedlib_simple($_)
1310 // platform->sharedlib_import($_)
1311 // platform->staticlib($_)
1312 } @_;
cedbb146
RL
1313 }
1314
3f399e37
RL
1315 sub generatetarget {
1316 my %args = @_;
1317 my $deps = join(" ", @{$args{deps}});
1318 return <<"EOF";
1319$args{target}: $deps
1320EOF
1321 }
1322
66ddf178
RL
1323 sub generatesrc {
1324 my %args = @_;
79f47ef5
RL
1325 my $gen0 = $args{generator}->[0];
1326 my $gen_args = join('', map { " $_" }
1327 @{$args{generator}}[1..$#{$args{generator}}]);
1328 my $gen_incs = join("", map { " -I".$_ } @{$args{generator_incs}});
d4605727 1329 my $incs = join("", map { " -I".$_ } @{$args{incs}});
25628ab2 1330 my $defs = join("", map { " -D".$_ } @{$args{defs}});
8d34daf0 1331 my $deps = join(" ", @{$args{generator_deps}}, @{$args{deps}});
66ddf178 1332
b0940b33 1333 if ($args{src} =~ /\.html$/) {
79f47ef5
RL
1334 #
1335 # HTML generator
1336 #
1337 my $title = basename($args{src}, ".html");
1338 my $pod = $gen0;
1339 return <<"EOF";
98706c5a 1340$args{src}: $pod
1ec45fab 1341 \$(PERL) \$(SRCDIR)/util/mkpod2html.pl -i "$pod" -o \$\@ -t "$title" -r "\$(SRCDIR)/doc"
b0940b33
RL
1342EOF
1343 } elsif ($args{src} =~ /\.(\d)$/) {
79f47ef5
RL
1344 #
1345 # Man-page generator
1346 #
1347 my $section = $1;
1348 my $name = uc basename($args{src}, ".$section");
1349 my $pod = $gen0;
1350 return <<"EOF";
98706c5a 1351$args{src}: $pod
b0940b33 1352 pod2man --name=$name --section=$section --center=OpenSSL \\
1ec45fab 1353 --release=\$(VERSION) $pod >\$\@
b0940b33
RL
1354EOF
1355 } elsif (platform->isdef($args{src})) {
79f47ef5
RL
1356 #
1357 # Linker script-ish generator
1358 #
9dd4ed28 1359 my $target = platform->def($args{src});
ef2dfc99 1360 (my $mkdef_os = $target{shared_target}) =~ s|-shared$||;
66a24ab8 1361 my $ord_ver = $args{intent} eq 'lib' ? ' --version $(VERSION)' : '';
9dd4ed28 1362 my $ord_name = $args{generator}->[1] || $args{product};
ef2dfc99 1363 return <<"EOF";
79f47ef5
RL
1364$target: $gen0 $deps \$(SRCDIR)/util/mkdef.pl
1365 \$(PERL) \$(SRCDIR)/util/mkdef.pl$ord_ver --ordinals $gen0 --name $ord_name --OS $mkdef_os > $target
7cae3864 1366EOF
79f47ef5
RL
1367 } elsif (platform->isasm($args{src})) {
1368 #
1369 # Assembler generator
1370 #
593d5c2f
RL
1371 my $cppflags = {
1372 shlib => '$(LIB_CFLAGS) $(LIB_CPPFLAGS)',
1373 lib => '$(LIB_CFLAGS) $(LIB_CPPFLAGS)',
1374 dso => '$(DSO_CFLAGS) $(DSO_CPPFLAGS)',
1375 bin => '$(BIN_CFLAGS) $(BIN_CPPFLAGS)'
1376 } -> {$args{intent}};
1377
79f47ef5
RL
1378 my $generator;
1379 if ($gen0 =~ /\.pl$/) {
1380 $generator = 'CC="$(CC)" $(PERL)'.$gen_incs.' '.$gen0.$gen_args
cf076a3f 1381 .' "$(PERLASM_SCHEME)"'.$incs.' '.$cppflags.$defs.' $(PROCESSOR)';
79f47ef5
RL
1382 } elsif ($gen0 =~ /\.m4$/) {
1383 $generator = 'm4 -B 8192'.$gen_incs.' '.$gen0.$gen_args.' >'
1384 } elsif ($gen0 =~ /\.S$/) {
8458f1bf
RL
1385 $generator = undef;
1386 } else {
79f47ef5 1387 die "Generator type for $args{src} unknown: $gen0\n";
8458f1bf
RL
1388 }
1389
1390 if (defined($generator)) {
66ddf178 1391 return <<"EOF";
79f47ef5 1392$args{src}: $gen0 $deps
8458f1bf 1393 $generator \$@
66ddf178 1394EOF
66ddf178 1395 }
8458f1bf 1396 return <<"EOF";
79f47ef5
RL
1397$args{src}: $gen0 $deps
1398 \$(CC) $incs $cppflags $defs -E $gen0 | \\
39199fb3 1399 \$(PERL) -ne '/^#(line)?\\s*[0-9]+/ or print' > \$@
79f47ef5
RL
1400EOF
1401 } elsif ($gen0 =~ m|^.*\.in$|) {
1402 #
1403 # "dofile" generator (file.in -> file)
1404 #
1405 my $dofile = abs2rel(rel2abs(catfile($config{sourcedir},
1406 "util", "dofile.pl")),
1407 rel2abs($config{builddir}));
1408 my @modules = ( 'configdata.pm',
1409 grep { $_ =~ m|\.pm$| } @{$args{deps}} );
1410 my %moduleincs = map { '"-I'.dirname($_).'"' => 1 } @modules;
1411 $deps = join(' ', $deps, @modules);
1412 @modules = map { "-M".basename($_, '.pm') } @modules;
1413 my $modules = join(' ', '', sort keys %moduleincs, @modules);
1414 return <<"EOF";
1415$args{src}: $gen0 $deps
1416 \$(PERL)$modules "$dofile" "-o$target{build_file}" $gen0$gen_args > \$@
1417EOF
1418 } elsif (grep { $_ eq $gen0 } @{$unified_info{programs}}) {
1419 #
1420 # Generic generator using OpenSSL programs
1421 #
1422
1423 # Redo $deps, because programs aren't expected to have deps of their
1424 # own. This is a little more tricky, though, because running programs
1425 # may have dependencies on all sorts of files, so we search through
1426 # our database of programs and modules to see if our dependencies
1427 # are one of those.
1428 $deps = join(' ', map { my $x = $_;
1429 if (grep { $x eq $_ }
1430 @{$unified_info{programs}}) {
1431 platform->bin($x);
1432 } elsif (grep { $x eq $_ }
1433 @{$unified_info{modules}}) {
1434 platform->dso($x);
1435 } else {
1436 $x;
1437 }
1438 } @{$args{deps}});
1439 # Also redo $gen0, to ensure that we have the proper extension where
1440 # necessary.
1441 $gen0 = platform->bin($gen0);
92a979b4 1442 # Use $(PERL) to execute wrap.pl directly to avoid calling env
79f47ef5
RL
1443 return <<"EOF";
1444$args{src}: $gen0 $deps \$(BLDDIR)/util/wrap.pl
92a979b4 1445 \$(PERL) \$(BLDDIR)/util/wrap.pl $gen0$gen_args > \$@
79f47ef5
RL
1446EOF
1447 } else {
1448 #
1449 # Generic generator using Perl
1450 #
1451 return <<"EOF";
1452$args{src}: $gen0 $deps
1453 \$(PERL)$gen_incs $gen0$gen_args > \$@
8458f1bf 1454EOF
66ddf178
RL
1455 }
1456 }
1457
bb26842d
RL
1458 # Should one wonder about the end of the Perl snippet, it's because this
1459 # second regexp eats up line endings as well, if the removed path is the
1460 # last in the line. We may therefore need to put back a line ending.
88297284 1461 sub src2obj {
567a9e6f 1462 my %args = @_;
e805c2d6 1463 my $obj = platform->convertext($args{obj});
9dd4ed28 1464 my $dep = platform->dep($args{obj});
a23f0316 1465 my @srcs = @{$args{srcs}};
8458f1bf
RL
1466 my $srcs = join(" ", @srcs);
1467 my $deps = join(" ", @srcs, @{$args{deps}});
45502bfe 1468 my $incs = join("", map { " -I".$_ } @{$args{incs}});
25628ab2 1469 my $defs = join("", map { " -D".$_ } @{$args{defs}});
722c9762
RL
1470 my $cmd;
1471 my $cmdflags;
1472 my $cmdcompile;
81183680
RL
1473 if (grep /\.rc$/, @srcs) {
1474 $cmd = '$(RC)';
1475 $cmdflags = '$(RCFLAGS)';
8c3bc594 1476 $cmdcompile = '';
81183680
RL
1477 } elsif (grep /\.(cc|cpp)$/, @srcs) {
1478 $cmd = '$(CXX)';
722c9762
RL
1479 $cmdcompile = ' -c';
1480 $cmdflags = {
9dfc8680 1481 shlib => '$(LIB_CXXFLAGS) $(LIB_CPPFLAGS)',
722c9762
RL
1482 lib => '$(LIB_CXXFLAGS) $(LIB_CPPFLAGS)',
1483 dso => '$(DSO_CXXFLAGS) $(DSO_CPPFLAGS)',
1484 bin => '$(BIN_CXXFLAGS) $(BIN_CPPFLAGS)'
1485 } -> {$args{intent}};
7763472f 1486 } else {
722c9762
RL
1487 $cmd = '$(CC)';
1488 $cmdcompile = ' -c';
1489 $cmdflags = {
9dfc8680 1490 shlib => '$(LIB_CFLAGS) $(LIB_CPPFLAGS)',
722c9762
RL
1491 lib => '$(LIB_CFLAGS) $(LIB_CPPFLAGS)',
1492 dso => '$(DSO_CFLAGS) $(DSO_CPPFLAGS)',
1493 bin => '$(BIN_CFLAGS) $(BIN_CPPFLAGS)'
1494 } -> {$args{intent}};
7763472f 1495 }
a23f0316
AP
1496 my $recipe;
1497 # extension-specific rules
1498 if (grep /\.s$/, @srcs) {
1499 $recipe .= <<"EOF";
9dd4ed28 1500$obj: $deps
a23f0316 1501 $cmd $cmdflags -c -o \$\@ $srcs
7e5b8b93 1502EOF
a23f0316 1503 } elsif (grep /\.S$/, @srcs) {
18d15882
AP
1504 # Originally there was mutli-step rule with $(CC) -E file.S
1505 # followed by $(CC) -c file.s. It compensated for one of
1506 # legacy platform compiler's inability to handle .S files.
1507 # The platform is long discontinued by vendor so there is
1508 # hardly a point to drag it along...
29eed3dd 1509 $recipe .= <<"EOF";
9dd4ed28 1510$obj: $deps
25628ab2 1511 $cmd $incs $defs $cmdflags -c -o \$\@ $srcs
a23f0316 1512EOF
49bb4dd0
BE
1513 } elsif (defined $makedepprog && $makedepprog !~ /\/makedepend/
1514 && !grep /\.rc$/, @srcs) {
a23f0316 1515 $recipe .= <<"EOF";
9dd4ed28
RL
1516$obj: $deps
1517 $cmd $incs $defs $cmdflags -MMD -MF $dep.tmp -MT \$\@ -c -o \$\@ $srcs
1518 \@touch $dep.tmp
1519 \@if cmp $dep.tmp $dep > /dev/null 2> /dev/null; then \\
1520 rm -f $dep.tmp; \\
29b28eee 1521 else \\
9dd4ed28 1522 mv $dep.tmp $dep; \\
987dbc7f 1523 fi
29eed3dd 1524EOF
7e5b8b93 1525 } else {
29eed3dd 1526 $recipe .= <<"EOF";
9dd4ed28 1527$obj: $deps
25628ab2 1528 $cmd $incs $defs $cmdflags $cmdcompile -o \$\@ $srcs
567a9e6f 1529EOF
81183680 1530 if (defined $makedepprog && $makedepprog =~ /\/makedepend/) {
7e5b8b93 1531 $recipe .= <<"EOF";
c39785d4 1532 \$(MAKEDEPEND) -f- -Y -- $incs $cmdflags -- $srcs 2>/dev/null \\
9dd4ed28 1533 > $dep
567a9e6f 1534EOF
7e5b8b93 1535 }
29eed3dd
RL
1536 }
1537 return $recipe;
567a9e6f 1538 }
d8cac50b 1539 # We *know* this routine is only called when we've configure 'shared'.
f6196227 1540 sub obj2shlib {
567a9e6f 1541 my %args = @_;
47eeaf45 1542 my @linkdirs = ();
e805c2d6
RL
1543 my @linklibs = ();
1544 foreach (@{$args{deps}}) {
1545 if (platform->isstaticlib($_)) {
1546 push @linklibs, platform->convertext($_);
1547 } else {
1548 my $d = "-L" . dirname($_);
1549 my $l = basename($_);
1550 $l =~ s/^lib//;
1551 $l = "-l" . $l;
1552 push @linklibs, $l;
1553 push @linkdirs, $d unless grep { $d eq $_ } @linkdirs;
1554 }
47eeaf45 1555 }
e805c2d6
RL
1556 my $linkflags = join("", map { $_." " } @linkdirs);
1557 my $linklibs = join("", map { $_." " } @linklibs);
1558 my @objs = map { platform->convertext($_) }
9dd4ed28 1559 grep { !platform->isdef($_) }
ef2dfc99 1560 @{$args{objs}};
9dd4ed28
RL
1561 my @defs = map { platform->def($_) }
1562 grep { platform->isdef($_) }
81183680 1563 @{$args{objs}};
81183680
RL
1564 my @deps = compute_lib_depends(@{$args{deps}});
1565 die "More than one exported symbol map" if scalar @defs > 1;
c00d9311 1566
9dd4ed28 1567 my $full = platform->sharedlib($args{lib});
ef161e7b
RL
1568 # $import is for Windows and subsystems thereof, where static import
1569 # libraries for DLLs are a thing. On platforms that have this mechanism,
1570 # $import has the name of this import library. On platforms that don't
1571 # have this mechanism, $import will be |undef|.
1572 my $import = platform->sharedlib_import($args{lib});
1573 # $simple is for platforms where full shared library names include the
1574 # shared library version, and there's a simpler name that doesn't include
1575 # that version. On such platforms, $simple has the simpler name. On
1576 # other platforms, it will be |undef|.
1577 my $simple = platform->sharedlib_simple($args{lib});
1578
e07a7892 1579 my $argfile = defined $target{shared_argfileflag} ? $full.".args" : undef;
81183680 1580 my $shared_soname = "";
d8cac50b 1581 $shared_soname .= ' '.$target{shared_sonameflag}.basename($full)
81183680
RL
1582 if defined $target{shared_sonameflag};
1583 my $shared_imp = "";
ef161e7b
RL
1584 $shared_imp .= ' '.$target{shared_impflag}.basename($import)
1585 if defined $target{shared_impflag} && defined $import;
81183680 1586 my $shared_def = join("", map { ' '.$target{shared_defflag}.$_ } @defs);
c00d9311 1587
e07a7892
RL
1588 # There is at least one platform where the compiler-as-linker needs to
1589 # have one object file directly on the command line. That won't hurt
1590 # any other platform, so we do that for everyone when there's an argfile
1591 # to be had. This depends heavily on splice, which removes elements from
1592 # the given array, and returns them so they can be captured.
1593 my @argfileobjs = $argfile
1594 ? splice(@objs, 1)
1595 : ();
1596 my $argfilecmds = $argfile
1597 ? join("\n\t", map { "echo $_ >> $argfile" } @argfileobjs)
1598 : undef;
1599 my $argfiledeps = $argfile
1600 ? join(" \\\n" . ' ' x (length($argfile) + 2),
1601 fill_lines(' ', $COLUMNS - length($full) - 2, @argfileobjs))
1602 : undef;
1603 my @fulldeps = (@objs, ($argfile ? $argfile : ()), @defs, @deps);
1604 my @fullobjs = (
1605 @objs,
1606 ($argfile ? $target{shared_argfileflag}.$argfile : ())
1607 );
1608 my $fulldeps =
1609 join(" \\\n" . ' ' x (length($full) + 2),
1610 fill_lines(' ', $COLUMNS - length($full) - 2, @fulldeps));
1611 my $fullobjs =
1612 join(" \\\n\t\t", fill_lines(' ', $COLUMNS - 16, @fullobjs));
c00d9311 1613
294e3802
RL
1614 my $recipe = '';
1615
3bf7c3a1 1616 if (defined $simple && $simple ne $full) {
294e3802
RL
1617 if (sharedaix()) {
1618 $recipe .= <<"EOF";
9dd4ed28 1619$simple: $full
9dd4ed28
RL
1620 rm -f $simple && \\
1621 \$(AR) r $simple $full
cff89b17 1622EOF
294e3802
RL
1623 } else {
1624 $recipe .= <<"EOF";
1625$simple: $full
d8cac50b 1626 rm -f $simple && \\
9dd4ed28 1627 ln -s $full $simple
81183680 1628EOF
294e3802 1629 }
9dd4ed28 1630 }
ef161e7b
RL
1631 if (defined $import) {
1632 $recipe .= <<"EOF";
1633$import: $full
1634EOF
1635 }
9dd4ed28 1636 $recipe .= <<"EOF";
e07a7892 1637$full: $fulldeps
9dd4ed28 1638 \$(CC) \$(LIB_CFLAGS) $linkflags\$(LIB_LDFLAGS)$shared_soname$shared_imp \\
c00d9311 1639 -o $full$shared_def \\
e07a7892 1640 $fullobjs \\
c00d9311 1641 $linklibs \$(LIB_EX_LIBS)
9dd4ed28
RL
1642EOF
1643 if (windowsdll()) {
81183680 1644 $recipe .= <<"EOF";
9dd4ed28 1645 rm -f apps/$full
9dd4ed28
RL
1646 rm -f fuzz/$full
1647 cp -p $full apps/
9dd4ed28 1648 cp -p $full fuzz/
567a9e6f 1649EOF
f16f363a
MC
1650 if (!$disabled{tests}) {
1651 $recipe .= <<"EOF";
1652 rm -f test/$full
1653 cp -p $full test/
1654EOF
1655 }
81183680 1656 }
e07a7892
RL
1657 $recipe .= <<"EOF" if defined $argfile;
1658$argfile: $argfiledeps
1659 \$(RM) $argfile
1660 $argfilecmds
1661EOF
9dd4ed28 1662 return $recipe;
567a9e6f 1663 }
5386287c 1664 sub obj2dso {
567a9e6f 1665 my %args = @_;
285daccd 1666 my $dso = platform->dso($args{module});
47eeaf45 1667 my @linkdirs = ();
e805c2d6
RL
1668 my @linklibs = ();
1669 foreach (@{$args{deps}}) {
1670 next unless defined $_;
1671 if (platform->isstaticlib($_)) {
1672 push @linklibs, platform->convertext($_);
1673 } else {
1674 my $d = "-L" . dirname($_);
1675 my $l = basename($_);
1676 $l =~ s/^lib//;
1677 $l = "-l" . $l;
1678 push @linklibs, $l;
1679 push @linkdirs, $d unless grep { $d eq $_ } @linkdirs;
1680 }
47eeaf45 1681 }
e805c2d6
RL
1682 my $linkflags = join("", map { $_." " } @linkdirs);
1683 my $linklibs = join("", map { $_." " } @linklibs);
1684 my @objs = map { platform->convertext($_) }
9dd4ed28 1685 grep { !platform->isdef($_) }
29f3cfdd 1686 @{$args{objs}};
9dd4ed28
RL
1687 my @defs = map { platform->def($_) }
1688 grep { platform->isdef($_) }
66a24ab8 1689 @{$args{objs}};
81183680 1690 my @deps = compute_lib_depends(@{$args{deps}});
66a24ab8 1691 my $shared_def = join("", map { ' '.$target{shared_defflag}.$_ } @defs);
9a7319b0
MK
1692 # TODO(3.0): next line needs to become "less magic" (see PR #11950)
1693 $shared_def .= ' '.$target{shared_fipsflag} if (m/providers\/fips/ && defined $target{shared_fipsflag});
c00d9311
RL
1694 my $objs = join(" \\\n\t\t", fill_lines(' ', $COLUMNS - 16, @objs));
1695 my $deps = join(" \\\n" . ' ' x (length($dso) + 2),
1696 fill_lines(' ', $COLUMNS - length($dso) - 2,
1697 @objs, @defs, @deps));
1698
567a9e6f 1699 return <<"EOF";
9dd4ed28 1700$dso: $deps
722c9762 1701 \$(CC) \$(DSO_CFLAGS) $linkflags\$(DSO_LDFLAGS) \\
c00d9311
RL
1702 -o $dso$shared_def \\
1703 $objs \\
1704 $linklibs\$(DSO_EX_LIBS)
567a9e6f
RL
1705EOF
1706 }
1707 sub obj2lib {
1708 my %args = @_;
9dd4ed28
RL
1709 my $lib = platform->staticlib($args{lib});
1710 my @objs = map { platform->obj($_) } @{$args{objs}};
385deae7 1711 my $deps = join(" \\\n" . ' ' x (length($lib) + 2),
c00d9311 1712 fill_lines(' ', $COLUMNS - length($lib) - 2, @objs));
0e60ce63 1713 my $max_per_call = 500;
385deae7
RL
1714 my @objs_grouped;
1715 push @objs_grouped, join(" ", splice @objs, 0, $max_per_call) while @objs;
1716 my $fill_lib =
1717 join("\n\t", (map { "\$(AR) \$(ARFLAGS) $lib $_" } @objs_grouped));
567a9e6f 1718 return <<"EOF";
385deae7 1719$lib: $deps
0e60ce63 1720 \$(RM) $lib
385deae7 1721 $fill_lib
567a9e6f
RL
1722 \$(RANLIB) \$\@ || echo Never mind.
1723EOF
1724 }
1725 sub obj2bin {
1726 my %args = @_;
9dd4ed28 1727 my $bin = platform->bin($args{bin});
c00d9311
RL
1728 my @objs = map { platform->obj($_) } @{$args{objs}};
1729 my @deps = compute_lib_depends(@{$args{deps}});
1730 my $objs = join(" \\\n" . ' ' x (length($bin) + 2),
1731 fill_lines(' ', $COLUMNS - length($bin) - 2, @objs));
47eeaf45 1732 my @linkdirs = ();
e805c2d6
RL
1733 my @linklibs = ();
1734 foreach (@{$args{deps}}) {
1735 next unless defined $_;
1736 if (platform->isstaticlib($_)) {
1737 push @linklibs, platform->convertext($_);
1738 } else {
1739 my $d = "-L" . dirname($_);
1740 my $l = basename($_);
1741 $l =~ s/^lib//;
1742 $l = "-l" . $l;
1743 push @linklibs, $l;
1744 push @linkdirs, $d unless grep { $d eq $_ } @linkdirs;
1745 }
47eeaf45 1746 }
e805c2d6
RL
1747 my $linkflags = join("", map { $_." " } @linkdirs);
1748 my $linklibs = join("", map { $_." " } @linklibs);
81183680 1749 my $cmd = '$(CC)';
722c9762 1750 my $cmdflags = '$(BIN_CFLAGS)';
81183680
RL
1751 if (grep /_cc\.o$/, @{$args{objs}}) {
1752 $cmd = '$(CXX)';
722c9762 1753 $cmdflags = '$(BIN_CXXFLAGS)';
7763472f 1754 }
c00d9311
RL
1755
1756 my $objs = join(" \\\n\t\t", fill_lines(' ', $COLUMNS - 16, @objs));
1757 my $deps = join(" \\\n" . ' ' x (length($bin) + 2),
1758 fill_lines(' ', $COLUMNS - length($bin) - 2,
1759 @objs, @deps));
1760
567a9e6f 1761 return <<"EOF";
c00d9311 1762$bin: $deps
9dd4ed28 1763 rm -f $bin
722c9762 1764 \$\${LDCMD:-$cmd} $cmdflags $linkflags\$(BIN_LDFLAGS) \\
c00d9311
RL
1765 -o $bin \\
1766 $objs \\
e805c2d6 1767 $linklibs\$(BIN_EX_LIBS)
567a9e6f
RL
1768EOF
1769 }
1770 sub in2script {
1771 my %args = @_;
1772 my $script = $args{script};
1773 my $sources = join(" ", @{$args{sources}});
1774 my $dofile = abs2rel(rel2abs(catfile($config{sourcedir},
1775 "util", "dofile.pl")),
1776 rel2abs($config{builddir}));
1777 return <<"EOF";
88297284 1778$script: $sources
4b799cea 1779 \$(PERL) "-I\$(BLDDIR)" -Mconfigdata "$dofile" \\
ba327ade 1780 "-o$target{build_file}" $sources > "$script"
567a9e6f 1781 chmod a+x $script
0ad1d94d
RL
1782EOF
1783 }
1784 sub generatedir {
1785 my %args = @_;
1786 my $dir = $args{dir};
9dd4ed28 1787 my @deps = map { platform->convertext($_) } @{$args{deps}};
c00d9311 1788 my @comments = ();
9dd4ed28
RL
1789 my %extinfo = ( dso => platform->dsoext(),
1790 lib => platform->libext(),
1791 bin => platform->binext() );
0ad1d94d 1792
b6e66075
RL
1793 # We already have a 'test' target, and the top directory is just plain
1794 # silly
1795 return if $dir eq "test" || $dir eq ".";
1796
0ad1d94d
RL
1797 foreach my $type (("dso", "lib", "bin", "script")) {
1798 next unless defined($unified_info{dirinfo}->{$dir}->{products}->{$type});
850000aa
RL
1799 # For lib object files, we could update the library. However, it
1800 # was decided that it's enough to build the directory local object
1801 # files, so we don't need to add any actions, and the dependencies
1802 # are already taken care of.
1803 if ($type ne "lib") {
0ad1d94d
RL
1804 foreach my $prod (@{$unified_info{dirinfo}->{$dir}->{products}->{$type}}) {
1805 if (dirname($prod) eq $dir) {
1806 push @deps, $prod.$extinfo{$type};
1807 } else {
c00d9311 1808 push @comments, "# No support to produce $type ".join(", ", @{$unified_info{dirinfo}->{$dir}->{products}->{$type}});
0ad1d94d
RL
1809 }
1810 }
1811 }
1812 }
1813
c00d9311
RL
1814 my $target = "$dir $dir/";
1815 my $deps = join(" \\\n\t",
1816 fill_lines(' ', $COLUMNS - 8, @deps));
1817 my $comments = join("\n", "", @comments);
0ad1d94d 1818 return <<"EOF";
c00d9311
RL
1819$target: \\
1820 $deps$comments
567a9e6f
RL
1821EOF
1822 }
1823 "" # Important! This becomes part of the template result.
1824-}