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