]> git.ipfire.org Git - thirdparty/openssl.git/blame - Configurations/unix-Makefile.tmpl
Add DHX FIPS 186-4 domain parameter validation example
[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
3ab736ac
DMSP
1218link-utils: $(BLDDIR)/util/opensslwrap.sh $(BLDDIR)/util/wrap.pl \
1219 $(BLDDIR)/apps/openssl.cnf
567a9e6f 1220
c3845ceb 1221$(BLDDIR)/util/opensslwrap.sh $(BLDDIR)/util/wrap.pl: configdata.pm
567a9e6f
RL
1222 @if [ "$(SRCDIR)" != "$(BLDDIR)" ]; then \
1223 mkdir -p "$(BLDDIR)/util"; \
c3845ceb 1224 ln -sf "../$(SRCDIR)/util/`basename "$@"`" "$(BLDDIR)/util"; \
567a9e6f 1225 fi
342a1a23 1226
3ab736ac
DMSP
1227$(BLDDIR)/apps/openssl.cnf: configdata.pm
1228 @if [ "$(SRCDIR)" != "$(BLDDIR)" ]; then \
1229 mkdir -p "$(BLDDIR)/apps"; \
1230 ln -sf "../$(SRCDIR)/apps/`basename "$@"`" "$(BLDDIR)/apps"; \
1231 fi
1232
c058fcd7 1233FORCE:
567a9e6f
RL
1234
1235# Building targets ###################################################
1236
ef161e7b 1237libcrypto.pc libssl.pc openssl.pc: configdata.pm $(LIBS) {- join(" ",map { platform->sharedlib_simple($_) // platform->sharedlib_import($_) // () } @{$unified_info{libraries}}) -}
567a9e6f
RL
1238libcrypto.pc:
1239 @ ( echo 'prefix=$(INSTALLTOP)'; \
1240 echo 'exec_prefix=$${prefix}'; \
e454f3ad
RL
1241 if [ -n "$(LIBDIR)" ]; then \
1242 echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
1243 else \
1244 echo 'libdir=$(libdir)'; \
1245 fi; \
567a9e6f 1246 echo 'includedir=$${prefix}/include'; \
d4453024 1247 echo 'enginesdir=$${libdir}/engines-{- $sover_dirname -}'; \
567a9e6f
RL
1248 echo ''; \
1249 echo 'Name: OpenSSL-libcrypto'; \
1250 echo 'Description: OpenSSL cryptography library'; \
1251 echo 'Version: '$(VERSION); \
1252 echo 'Libs: -L$${libdir} -lcrypto'; \
abe256e7 1253 echo 'Libs.private: $(LIB_EX_LIBS)'; \
567a9e6f
RL
1254 echo 'Cflags: -I$${includedir}' ) > libcrypto.pc
1255
1256libssl.pc:
1257 @ ( echo 'prefix=$(INSTALLTOP)'; \
1258 echo 'exec_prefix=$${prefix}'; \
e454f3ad
RL
1259 if [ -n "$(LIBDIR)" ]; then \
1260 echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
1261 else \
1262 echo 'libdir=$(libdir)'; \
1263 fi; \
567a9e6f
RL
1264 echo 'includedir=$${prefix}/include'; \
1265 echo ''; \
1266 echo 'Name: OpenSSL-libssl'; \
1267 echo 'Description: Secure Sockets Layer and cryptography libraries'; \
1268 echo 'Version: '$(VERSION); \
1269 echo 'Requires.private: libcrypto'; \
1270 echo 'Libs: -L$${libdir} -lssl'; \
567a9e6f
RL
1271 echo 'Cflags: -I$${includedir}' ) > libssl.pc
1272
1273openssl.pc:
1274 @ ( echo 'prefix=$(INSTALLTOP)'; \
1275 echo 'exec_prefix=$${prefix}'; \
e454f3ad
RL
1276 if [ -n "$(LIBDIR)" ]; then \
1277 echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
1278 else \
1279 echo 'libdir=$(libdir)'; \
1280 fi; \
567a9e6f
RL
1281 echo 'includedir=$${prefix}/include'; \
1282 echo ''; \
1283 echo 'Name: OpenSSL'; \
1284 echo 'Description: Secure Sockets Layer and cryptography libraries and tools'; \
1285 echo 'Version: '$(VERSION); \
1286 echo 'Requires: libssl libcrypto' ) > openssl.pc
1287
c00d9311
RL
1288configdata.pm: $(SRCDIR)/Configure $(SRCDIR)/config \
1289 {- join(" \\\n" . ' ' x 15,
1290 fill_lines(" ", $COLUMNS - 15,
1291 @{$config{build_file_templates}},
1292 @{$config{build_infos}},
1293 @{$config{conf_files}})) -}
27f42b46 1294 @echo "Detected changed: $?"
a1b6933e 1295 $(PERL) configdata.pm -r
567a9e6f
RL
1296 @echo "**************************************************"
1297 @echo "*** ***"
1298 @echo "*** Please run the same make command again ***"
1299 @echo "*** ***"
1300 @echo "**************************************************"
1301 @false
1302
bf01fbbf 1303reconfigure reconf:
a1b6933e 1304 $(PERL) configdata.pm -r
bf01fbbf 1305
567a9e6f
RL
1306{-
1307 use File::Basename;
1308 use File::Spec::Functions qw/:DEFAULT abs2rel rel2abs/;
cedbb146
RL
1309
1310 # Helper function to figure out dependencies on libraries
1311 # It takes a list of library names and outputs a list of dependencies
1312 sub compute_lib_depends {
cedbb146
RL
1313 # Depending on shared libraries:
1314 # On Windows POSIX layers, we depend on {libname}.dll.a
1315 # On Unix platforms, we depend on {shlibname}.so
ef161e7b
RL
1316 return map { platform->sharedlib_simple($_)
1317 // platform->sharedlib_import($_)
1318 // platform->staticlib($_)
1319 } @_;
cedbb146
RL
1320 }
1321
3f399e37
RL
1322 sub generatetarget {
1323 my %args = @_;
1324 my $deps = join(" ", @{$args{deps}});
1325 return <<"EOF";
1326$args{target}: $deps
1327EOF
1328 }
1329
66ddf178
RL
1330 sub generatesrc {
1331 my %args = @_;
79f47ef5
RL
1332 my $gen0 = $args{generator}->[0];
1333 my $gen_args = join('', map { " $_" }
1334 @{$args{generator}}[1..$#{$args{generator}}]);
1335 my $gen_incs = join("", map { " -I".$_ } @{$args{generator_incs}});
d4605727 1336 my $incs = join("", map { " -I".$_ } @{$args{incs}});
25628ab2 1337 my $defs = join("", map { " -D".$_ } @{$args{defs}});
8d34daf0 1338 my $deps = join(" ", @{$args{generator_deps}}, @{$args{deps}});
66ddf178 1339
b0940b33 1340 if ($args{src} =~ /\.html$/) {
79f47ef5
RL
1341 #
1342 # HTML generator
1343 #
1344 my $title = basename($args{src}, ".html");
1345 my $pod = $gen0;
1346 return <<"EOF";
98706c5a 1347$args{src}: $pod
1ec45fab 1348 \$(PERL) \$(SRCDIR)/util/mkpod2html.pl -i "$pod" -o \$\@ -t "$title" -r "\$(SRCDIR)/doc"
b0940b33
RL
1349EOF
1350 } elsif ($args{src} =~ /\.(\d)$/) {
79f47ef5
RL
1351 #
1352 # Man-page generator
1353 #
1354 my $section = $1;
1355 my $name = uc basename($args{src}, ".$section");
1356 my $pod = $gen0;
1357 return <<"EOF";
98706c5a 1358$args{src}: $pod
b0940b33 1359 pod2man --name=$name --section=$section --center=OpenSSL \\
1ec45fab 1360 --release=\$(VERSION) $pod >\$\@
b0940b33
RL
1361EOF
1362 } elsif (platform->isdef($args{src})) {
79f47ef5
RL
1363 #
1364 # Linker script-ish generator
1365 #
9dd4ed28 1366 my $target = platform->def($args{src});
ef2dfc99 1367 (my $mkdef_os = $target{shared_target}) =~ s|-shared$||;
66a24ab8 1368 my $ord_ver = $args{intent} eq 'lib' ? ' --version $(VERSION)' : '';
9dd4ed28 1369 my $ord_name = $args{generator}->[1] || $args{product};
ef2dfc99 1370 return <<"EOF";
79f47ef5
RL
1371$target: $gen0 $deps \$(SRCDIR)/util/mkdef.pl
1372 \$(PERL) \$(SRCDIR)/util/mkdef.pl$ord_ver --ordinals $gen0 --name $ord_name --OS $mkdef_os > $target
7cae3864 1373EOF
79f47ef5
RL
1374 } elsif (platform->isasm($args{src})) {
1375 #
1376 # Assembler generator
1377 #
593d5c2f
RL
1378 my $cppflags = {
1379 shlib => '$(LIB_CFLAGS) $(LIB_CPPFLAGS)',
1380 lib => '$(LIB_CFLAGS) $(LIB_CPPFLAGS)',
1381 dso => '$(DSO_CFLAGS) $(DSO_CPPFLAGS)',
1382 bin => '$(BIN_CFLAGS) $(BIN_CPPFLAGS)'
1383 } -> {$args{intent}};
1384
79f47ef5
RL
1385 my $generator;
1386 if ($gen0 =~ /\.pl$/) {
1387 $generator = 'CC="$(CC)" $(PERL)'.$gen_incs.' '.$gen0.$gen_args
cf076a3f 1388 .' "$(PERLASM_SCHEME)"'.$incs.' '.$cppflags.$defs.' $(PROCESSOR)';
79f47ef5
RL
1389 } elsif ($gen0 =~ /\.m4$/) {
1390 $generator = 'm4 -B 8192'.$gen_incs.' '.$gen0.$gen_args.' >'
1391 } elsif ($gen0 =~ /\.S$/) {
8458f1bf
RL
1392 $generator = undef;
1393 } else {
79f47ef5 1394 die "Generator type for $args{src} unknown: $gen0\n";
8458f1bf
RL
1395 }
1396
1397 if (defined($generator)) {
66ddf178 1398 return <<"EOF";
79f47ef5 1399$args{src}: $gen0 $deps
8458f1bf 1400 $generator \$@
66ddf178 1401EOF
66ddf178 1402 }
8458f1bf 1403 return <<"EOF";
79f47ef5
RL
1404$args{src}: $gen0 $deps
1405 \$(CC) $incs $cppflags $defs -E $gen0 | \\
39199fb3 1406 \$(PERL) -ne '/^#(line)?\\s*[0-9]+/ or print' > \$@
79f47ef5
RL
1407EOF
1408 } elsif ($gen0 =~ m|^.*\.in$|) {
1409 #
1410 # "dofile" generator (file.in -> file)
1411 #
1412 my $dofile = abs2rel(rel2abs(catfile($config{sourcedir},
1413 "util", "dofile.pl")),
1414 rel2abs($config{builddir}));
1415 my @modules = ( 'configdata.pm',
1416 grep { $_ =~ m|\.pm$| } @{$args{deps}} );
1417 my %moduleincs = map { '"-I'.dirname($_).'"' => 1 } @modules;
1418 $deps = join(' ', $deps, @modules);
1419 @modules = map { "-M".basename($_, '.pm') } @modules;
1420 my $modules = join(' ', '', sort keys %moduleincs, @modules);
1421 return <<"EOF";
1422$args{src}: $gen0 $deps
1423 \$(PERL)$modules "$dofile" "-o$target{build_file}" $gen0$gen_args > \$@
1424EOF
1425 } elsif (grep { $_ eq $gen0 } @{$unified_info{programs}}) {
1426 #
1427 # Generic generator using OpenSSL programs
1428 #
1429
1430 # Redo $deps, because programs aren't expected to have deps of their
1431 # own. This is a little more tricky, though, because running programs
1432 # may have dependencies on all sorts of files, so we search through
1433 # our database of programs and modules to see if our dependencies
1434 # are one of those.
1435 $deps = join(' ', map { my $x = $_;
1436 if (grep { $x eq $_ }
1437 @{$unified_info{programs}}) {
1438 platform->bin($x);
1439 } elsif (grep { $x eq $_ }
1440 @{$unified_info{modules}}) {
1441 platform->dso($x);
1442 } else {
1443 $x;
1444 }
1445 } @{$args{deps}});
1446 # Also redo $gen0, to ensure that we have the proper extension where
1447 # necessary.
1448 $gen0 = platform->bin($gen0);
92a979b4 1449 # Use $(PERL) to execute wrap.pl directly to avoid calling env
79f47ef5
RL
1450 return <<"EOF";
1451$args{src}: $gen0 $deps \$(BLDDIR)/util/wrap.pl
92a979b4 1452 \$(PERL) \$(BLDDIR)/util/wrap.pl $gen0$gen_args > \$@
79f47ef5
RL
1453EOF
1454 } else {
1455 #
1456 # Generic generator using Perl
1457 #
1458 return <<"EOF";
1459$args{src}: $gen0 $deps
1460 \$(PERL)$gen_incs $gen0$gen_args > \$@
8458f1bf 1461EOF
66ddf178
RL
1462 }
1463 }
1464
bb26842d
RL
1465 # Should one wonder about the end of the Perl snippet, it's because this
1466 # second regexp eats up line endings as well, if the removed path is the
1467 # last in the line. We may therefore need to put back a line ending.
88297284 1468 sub src2obj {
567a9e6f 1469 my %args = @_;
e805c2d6 1470 my $obj = platform->convertext($args{obj});
9dd4ed28 1471 my $dep = platform->dep($args{obj});
a23f0316 1472 my @srcs = @{$args{srcs}};
8458f1bf
RL
1473 my $srcs = join(" ", @srcs);
1474 my $deps = join(" ", @srcs, @{$args{deps}});
45502bfe 1475 my $incs = join("", map { " -I".$_ } @{$args{incs}});
25628ab2 1476 my $defs = join("", map { " -D".$_ } @{$args{defs}});
722c9762
RL
1477 my $cmd;
1478 my $cmdflags;
1479 my $cmdcompile;
81183680
RL
1480 if (grep /\.rc$/, @srcs) {
1481 $cmd = '$(RC)';
1482 $cmdflags = '$(RCFLAGS)';
8c3bc594 1483 $cmdcompile = '';
81183680
RL
1484 } elsif (grep /\.(cc|cpp)$/, @srcs) {
1485 $cmd = '$(CXX)';
722c9762
RL
1486 $cmdcompile = ' -c';
1487 $cmdflags = {
9dfc8680 1488 shlib => '$(LIB_CXXFLAGS) $(LIB_CPPFLAGS)',
722c9762
RL
1489 lib => '$(LIB_CXXFLAGS) $(LIB_CPPFLAGS)',
1490 dso => '$(DSO_CXXFLAGS) $(DSO_CPPFLAGS)',
1491 bin => '$(BIN_CXXFLAGS) $(BIN_CPPFLAGS)'
1492 } -> {$args{intent}};
7763472f 1493 } else {
722c9762
RL
1494 $cmd = '$(CC)';
1495 $cmdcompile = ' -c';
1496 $cmdflags = {
9dfc8680 1497 shlib => '$(LIB_CFLAGS) $(LIB_CPPFLAGS)',
722c9762
RL
1498 lib => '$(LIB_CFLAGS) $(LIB_CPPFLAGS)',
1499 dso => '$(DSO_CFLAGS) $(DSO_CPPFLAGS)',
1500 bin => '$(BIN_CFLAGS) $(BIN_CPPFLAGS)'
1501 } -> {$args{intent}};
7763472f 1502 }
a23f0316
AP
1503 my $recipe;
1504 # extension-specific rules
1505 if (grep /\.s$/, @srcs) {
1506 $recipe .= <<"EOF";
9dd4ed28 1507$obj: $deps
a23f0316 1508 $cmd $cmdflags -c -o \$\@ $srcs
7e5b8b93 1509EOF
a23f0316 1510 } elsif (grep /\.S$/, @srcs) {
f691578b 1511 # Originally there was multi-step rule with $(CC) -E file.S
18d15882
AP
1512 # followed by $(CC) -c file.s. It compensated for one of
1513 # legacy platform compiler's inability to handle .S files.
1514 # The platform is long discontinued by vendor so there is
1515 # hardly a point to drag it along...
29eed3dd 1516 $recipe .= <<"EOF";
9dd4ed28 1517$obj: $deps
25628ab2 1518 $cmd $incs $defs $cmdflags -c -o \$\@ $srcs
a23f0316 1519EOF
49bb4dd0
BE
1520 } elsif (defined $makedepprog && $makedepprog !~ /\/makedepend/
1521 && !grep /\.rc$/, @srcs) {
a23f0316 1522 $recipe .= <<"EOF";
9dd4ed28
RL
1523$obj: $deps
1524 $cmd $incs $defs $cmdflags -MMD -MF $dep.tmp -MT \$\@ -c -o \$\@ $srcs
1525 \@touch $dep.tmp
1526 \@if cmp $dep.tmp $dep > /dev/null 2> /dev/null; then \\
1527 rm -f $dep.tmp; \\
29b28eee 1528 else \\
9dd4ed28 1529 mv $dep.tmp $dep; \\
987dbc7f 1530 fi
29eed3dd 1531EOF
7e5b8b93 1532 } else {
29eed3dd 1533 $recipe .= <<"EOF";
9dd4ed28 1534$obj: $deps
25628ab2 1535 $cmd $incs $defs $cmdflags $cmdcompile -o \$\@ $srcs
567a9e6f 1536EOF
81183680 1537 if (defined $makedepprog && $makedepprog =~ /\/makedepend/) {
7e5b8b93 1538 $recipe .= <<"EOF";
c39785d4 1539 \$(MAKEDEPEND) -f- -Y -- $incs $cmdflags -- $srcs 2>/dev/null \\
9dd4ed28 1540 > $dep
567a9e6f 1541EOF
7e5b8b93 1542 }
29eed3dd
RL
1543 }
1544 return $recipe;
567a9e6f 1545 }
d8cac50b 1546 # We *know* this routine is only called when we've configure 'shared'.
f6196227 1547 sub obj2shlib {
567a9e6f 1548 my %args = @_;
47eeaf45 1549 my @linkdirs = ();
e805c2d6
RL
1550 my @linklibs = ();
1551 foreach (@{$args{deps}}) {
1552 if (platform->isstaticlib($_)) {
1553 push @linklibs, platform->convertext($_);
1554 } else {
1555 my $d = "-L" . dirname($_);
1556 my $l = basename($_);
1557 $l =~ s/^lib//;
1558 $l = "-l" . $l;
1559 push @linklibs, $l;
1560 push @linkdirs, $d unless grep { $d eq $_ } @linkdirs;
1561 }
47eeaf45 1562 }
e805c2d6
RL
1563 my $linkflags = join("", map { $_." " } @linkdirs);
1564 my $linklibs = join("", map { $_." " } @linklibs);
1565 my @objs = map { platform->convertext($_) }
9dd4ed28 1566 grep { !platform->isdef($_) }
ef2dfc99 1567 @{$args{objs}};
9dd4ed28
RL
1568 my @defs = map { platform->def($_) }
1569 grep { platform->isdef($_) }
81183680 1570 @{$args{objs}};
81183680
RL
1571 my @deps = compute_lib_depends(@{$args{deps}});
1572 die "More than one exported symbol map" if scalar @defs > 1;
c00d9311 1573
9dd4ed28 1574 my $full = platform->sharedlib($args{lib});
ef161e7b
RL
1575 # $import is for Windows and subsystems thereof, where static import
1576 # libraries for DLLs are a thing. On platforms that have this mechanism,
1577 # $import has the name of this import library. On platforms that don't
1578 # have this mechanism, $import will be |undef|.
1579 my $import = platform->sharedlib_import($args{lib});
1580 # $simple is for platforms where full shared library names include the
1581 # shared library version, and there's a simpler name that doesn't include
1582 # that version. On such platforms, $simple has the simpler name. On
1583 # other platforms, it will be |undef|.
1584 my $simple = platform->sharedlib_simple($args{lib});
1585
e07a7892 1586 my $argfile = defined $target{shared_argfileflag} ? $full.".args" : undef;
81183680 1587 my $shared_soname = "";
d8cac50b 1588 $shared_soname .= ' '.$target{shared_sonameflag}.basename($full)
81183680
RL
1589 if defined $target{shared_sonameflag};
1590 my $shared_imp = "";
ef161e7b
RL
1591 $shared_imp .= ' '.$target{shared_impflag}.basename($import)
1592 if defined $target{shared_impflag} && defined $import;
81183680 1593 my $shared_def = join("", map { ' '.$target{shared_defflag}.$_ } @defs);
c00d9311 1594
e07a7892
RL
1595 # There is at least one platform where the compiler-as-linker needs to
1596 # have one object file directly on the command line. That won't hurt
1597 # any other platform, so we do that for everyone when there's an argfile
1598 # to be had. This depends heavily on splice, which removes elements from
1599 # the given array, and returns them so they can be captured.
1600 my @argfileobjs = $argfile
1601 ? splice(@objs, 1)
1602 : ();
1603 my $argfilecmds = $argfile
1604 ? join("\n\t", map { "echo $_ >> $argfile" } @argfileobjs)
1605 : undef;
1606 my $argfiledeps = $argfile
1607 ? join(" \\\n" . ' ' x (length($argfile) + 2),
1608 fill_lines(' ', $COLUMNS - length($full) - 2, @argfileobjs))
1609 : undef;
1610 my @fulldeps = (@objs, ($argfile ? $argfile : ()), @defs, @deps);
1611 my @fullobjs = (
1612 @objs,
1613 ($argfile ? $target{shared_argfileflag}.$argfile : ())
1614 );
1615 my $fulldeps =
1616 join(" \\\n" . ' ' x (length($full) + 2),
1617 fill_lines(' ', $COLUMNS - length($full) - 2, @fulldeps));
1618 my $fullobjs =
1619 join(" \\\n\t\t", fill_lines(' ', $COLUMNS - 16, @fullobjs));
c00d9311 1620
294e3802
RL
1621 my $recipe = '';
1622
3bf7c3a1 1623 if (defined $simple && $simple ne $full) {
294e3802
RL
1624 if (sharedaix()) {
1625 $recipe .= <<"EOF";
9dd4ed28 1626$simple: $full
9dd4ed28
RL
1627 rm -f $simple && \\
1628 \$(AR) r $simple $full
cff89b17 1629EOF
294e3802
RL
1630 } else {
1631 $recipe .= <<"EOF";
1632$simple: $full
d8cac50b 1633 rm -f $simple && \\
9dd4ed28 1634 ln -s $full $simple
81183680 1635EOF
294e3802 1636 }
9dd4ed28 1637 }
ef161e7b
RL
1638 if (defined $import) {
1639 $recipe .= <<"EOF";
1640$import: $full
1641EOF
1642 }
9dd4ed28 1643 $recipe .= <<"EOF";
e07a7892 1644$full: $fulldeps
9dd4ed28 1645 \$(CC) \$(LIB_CFLAGS) $linkflags\$(LIB_LDFLAGS)$shared_soname$shared_imp \\
c00d9311 1646 -o $full$shared_def \\
e07a7892 1647 $fullobjs \\
c00d9311 1648 $linklibs \$(LIB_EX_LIBS)
9dd4ed28
RL
1649EOF
1650 if (windowsdll()) {
81183680 1651 $recipe .= <<"EOF";
9dd4ed28 1652 rm -f apps/$full
9dd4ed28
RL
1653 rm -f fuzz/$full
1654 cp -p $full apps/
9dd4ed28 1655 cp -p $full fuzz/
567a9e6f 1656EOF
f16f363a
MC
1657 if (!$disabled{tests}) {
1658 $recipe .= <<"EOF";
1659 rm -f test/$full
1660 cp -p $full test/
1661EOF
1662 }
81183680 1663 }
e07a7892
RL
1664 $recipe .= <<"EOF" if defined $argfile;
1665$argfile: $argfiledeps
1666 \$(RM) $argfile
1667 $argfilecmds
1668EOF
9dd4ed28 1669 return $recipe;
567a9e6f 1670 }
5386287c 1671 sub obj2dso {
567a9e6f 1672 my %args = @_;
285daccd 1673 my $dso = platform->dso($args{module});
47eeaf45 1674 my @linkdirs = ();
e805c2d6
RL
1675 my @linklibs = ();
1676 foreach (@{$args{deps}}) {
1677 next unless defined $_;
1678 if (platform->isstaticlib($_)) {
1679 push @linklibs, platform->convertext($_);
1680 } else {
1681 my $d = "-L" . dirname($_);
1682 my $l = basename($_);
1683 $l =~ s/^lib//;
1684 $l = "-l" . $l;
1685 push @linklibs, $l;
1686 push @linkdirs, $d unless grep { $d eq $_ } @linkdirs;
1687 }
47eeaf45 1688 }
e805c2d6
RL
1689 my $linkflags = join("", map { $_." " } @linkdirs);
1690 my $linklibs = join("", map { $_." " } @linklibs);
1691 my @objs = map { platform->convertext($_) }
9dd4ed28 1692 grep { !platform->isdef($_) }
29f3cfdd 1693 @{$args{objs}};
9dd4ed28
RL
1694 my @defs = map { platform->def($_) }
1695 grep { platform->isdef($_) }
66a24ab8 1696 @{$args{objs}};
81183680 1697 my @deps = compute_lib_depends(@{$args{deps}});
66a24ab8 1698 my $shared_def = join("", map { ' '.$target{shared_defflag}.$_ } @defs);
9a7319b0
MK
1699 # TODO(3.0): next line needs to become "less magic" (see PR #11950)
1700 $shared_def .= ' '.$target{shared_fipsflag} if (m/providers\/fips/ && defined $target{shared_fipsflag});
c00d9311
RL
1701 my $objs = join(" \\\n\t\t", fill_lines(' ', $COLUMNS - 16, @objs));
1702 my $deps = join(" \\\n" . ' ' x (length($dso) + 2),
1703 fill_lines(' ', $COLUMNS - length($dso) - 2,
1704 @objs, @defs, @deps));
1705
567a9e6f 1706 return <<"EOF";
9dd4ed28 1707$dso: $deps
722c9762 1708 \$(CC) \$(DSO_CFLAGS) $linkflags\$(DSO_LDFLAGS) \\
c00d9311
RL
1709 -o $dso$shared_def \\
1710 $objs \\
1711 $linklibs\$(DSO_EX_LIBS)
567a9e6f
RL
1712EOF
1713 }
1714 sub obj2lib {
1715 my %args = @_;
9dd4ed28
RL
1716 my $lib = platform->staticlib($args{lib});
1717 my @objs = map { platform->obj($_) } @{$args{objs}};
385deae7 1718 my $deps = join(" \\\n" . ' ' x (length($lib) + 2),
c00d9311 1719 fill_lines(' ', $COLUMNS - length($lib) - 2, @objs));
0e60ce63 1720 my $max_per_call = 500;
385deae7
RL
1721 my @objs_grouped;
1722 push @objs_grouped, join(" ", splice @objs, 0, $max_per_call) while @objs;
1723 my $fill_lib =
1724 join("\n\t", (map { "\$(AR) \$(ARFLAGS) $lib $_" } @objs_grouped));
567a9e6f 1725 return <<"EOF";
385deae7 1726$lib: $deps
0e60ce63 1727 \$(RM) $lib
385deae7 1728 $fill_lib
567a9e6f
RL
1729 \$(RANLIB) \$\@ || echo Never mind.
1730EOF
1731 }
1732 sub obj2bin {
1733 my %args = @_;
9dd4ed28 1734 my $bin = platform->bin($args{bin});
c00d9311
RL
1735 my @objs = map { platform->obj($_) } @{$args{objs}};
1736 my @deps = compute_lib_depends(@{$args{deps}});
1737 my $objs = join(" \\\n" . ' ' x (length($bin) + 2),
1738 fill_lines(' ', $COLUMNS - length($bin) - 2, @objs));
47eeaf45 1739 my @linkdirs = ();
e805c2d6
RL
1740 my @linklibs = ();
1741 foreach (@{$args{deps}}) {
1742 next unless defined $_;
1743 if (platform->isstaticlib($_)) {
1744 push @linklibs, platform->convertext($_);
1745 } else {
1746 my $d = "-L" . dirname($_);
1747 my $l = basename($_);
1748 $l =~ s/^lib//;
1749 $l = "-l" . $l;
1750 push @linklibs, $l;
1751 push @linkdirs, $d unless grep { $d eq $_ } @linkdirs;
1752 }
47eeaf45 1753 }
e805c2d6
RL
1754 my $linkflags = join("", map { $_." " } @linkdirs);
1755 my $linklibs = join("", map { $_." " } @linklibs);
81183680 1756 my $cmd = '$(CC)';
722c9762 1757 my $cmdflags = '$(BIN_CFLAGS)';
81183680
RL
1758 if (grep /_cc\.o$/, @{$args{objs}}) {
1759 $cmd = '$(CXX)';
722c9762 1760 $cmdflags = '$(BIN_CXXFLAGS)';
7763472f 1761 }
c00d9311
RL
1762
1763 my $objs = join(" \\\n\t\t", fill_lines(' ', $COLUMNS - 16, @objs));
1764 my $deps = join(" \\\n" . ' ' x (length($bin) + 2),
1765 fill_lines(' ', $COLUMNS - length($bin) - 2,
1766 @objs, @deps));
1767
567a9e6f 1768 return <<"EOF";
c00d9311 1769$bin: $deps
9dd4ed28 1770 rm -f $bin
722c9762 1771 \$\${LDCMD:-$cmd} $cmdflags $linkflags\$(BIN_LDFLAGS) \\
c00d9311
RL
1772 -o $bin \\
1773 $objs \\
e805c2d6 1774 $linklibs\$(BIN_EX_LIBS)
567a9e6f
RL
1775EOF
1776 }
1777 sub in2script {
1778 my %args = @_;
1779 my $script = $args{script};
1780 my $sources = join(" ", @{$args{sources}});
1781 my $dofile = abs2rel(rel2abs(catfile($config{sourcedir},
1782 "util", "dofile.pl")),
1783 rel2abs($config{builddir}));
1784 return <<"EOF";
88297284 1785$script: $sources
4b799cea 1786 \$(PERL) "-I\$(BLDDIR)" -Mconfigdata "$dofile" \\
ba327ade 1787 "-o$target{build_file}" $sources > "$script"
567a9e6f 1788 chmod a+x $script
0ad1d94d
RL
1789EOF
1790 }
1791 sub generatedir {
1792 my %args = @_;
1793 my $dir = $args{dir};
9dd4ed28 1794 my @deps = map { platform->convertext($_) } @{$args{deps}};
c00d9311 1795 my @comments = ();
9dd4ed28
RL
1796 my %extinfo = ( dso => platform->dsoext(),
1797 lib => platform->libext(),
1798 bin => platform->binext() );
0ad1d94d 1799
b6e66075
RL
1800 # We already have a 'test' target, and the top directory is just plain
1801 # silly
1802 return if $dir eq "test" || $dir eq ".";
1803
0ad1d94d
RL
1804 foreach my $type (("dso", "lib", "bin", "script")) {
1805 next unless defined($unified_info{dirinfo}->{$dir}->{products}->{$type});
850000aa
RL
1806 # For lib object files, we could update the library. However, it
1807 # was decided that it's enough to build the directory local object
1808 # files, so we don't need to add any actions, and the dependencies
1809 # are already taken care of.
1810 if ($type ne "lib") {
0ad1d94d
RL
1811 foreach my $prod (@{$unified_info{dirinfo}->{$dir}->{products}->{$type}}) {
1812 if (dirname($prod) eq $dir) {
1813 push @deps, $prod.$extinfo{$type};
1814 } else {
c00d9311 1815 push @comments, "# No support to produce $type ".join(", ", @{$unified_info{dirinfo}->{$dir}->{products}->{$type}});
0ad1d94d
RL
1816 }
1817 }
1818 }
1819 }
1820
c00d9311
RL
1821 my $target = "$dir $dir/";
1822 my $deps = join(" \\\n\t",
1823 fill_lines(' ', $COLUMNS - 8, @deps));
1824 my $comments = join("\n", "", @comments);
0ad1d94d 1825 return <<"EOF";
c00d9311
RL
1826$target: \\
1827 $deps$comments
567a9e6f
RL
1828EOF
1829 }
1830 "" # Important! This becomes part of the template result.
1831-}