a35ce10caf55ae19940af1003826d1d07c83284a
[openssl.git] / Configurations / unix-Makefile.tmpl
1 ##
2 ## Makefile for OpenSSL
3 ##
4 ## {- join("\n## ", @autowarntext) -}
5 {-
6      our $makedepprog = platform->makedepprog();
7
8      sub windowsdll { $config{target} =~ /^(?:Cygwin|mingw)/ }
9
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
14      our $sover_dirname = platform->shlib_version_as_filename();
15
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      }
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      }
57      '';
58 -}
59 PLATFORM={- $config{target} -}
60 OPTIONS={- $config{options} -}
61 CONFIGURE_ARGS=({- join(", ",quotify_l(@{$config{perlargv}})) -})
62 SRCDIR={- $config{sourcedir} -}
63 BLDDIR={- $config{builddir} -}
64
65 VERSION={- "$config{full_version}" -}
66 MAJOR={- $config{major} -}
67 MINOR={- $config{minor} -}
68 SHLIB_VERSION_NUMBER={- $config{shlib_version} -}
69 SHLIB_TARGET={- $target{shared_target} -}
70
71 LIBS={- join(" \\\n" . ' ' x 5,
72              fill_lines(" ", $COLUMNS - 5,
73                         map { platform->staticlib($_) // () }
74                         @{$unified_info{libraries}})) -}
75 SHLIBS={- join(" \\\n" . ' ' x 7,
76                fill_lines(" ", $COLUMNS - 7,
77                           map { platform->sharedlib($_) // () }
78                           @{$unified_info{libraries}})) -}
79 SHLIB_INFO={- join(" \\\n" . ' ' x 11,
80                    fill_lines(" ", $COLUMNS - 11,
81                           map { my $x = platform->sharedlib($_);
82                                 my $y = platform->sharedlib_simple($_);
83                                 $x ? "\"$x;$y\"" : () }
84                           @{$unified_info{libraries}})) -}
85 MODULES={- join(" \\\n" . ' ' x 8,
86                 fill_lines(" ", $COLUMNS - 8,
87                            map { platform->dso($_) }
88                            @{$unified_info{modules}})) -}
89 PROGRAMS={- join(" \\\n" . ' ' x 9,
90                  fill_lines(" ", $COLUMNS - 9,
91                             map { platform->bin($_) }
92                             @{$unified_info{programs}})) -}
93 SCRIPTS={- join(" \\\n" . ' ' x 8,
94                 fill_lines(" ", $COLUMNS - 8, @{$unified_info{scripts}})) -}
95 {- output_off() if $disabled{makedepend}; "" -}
96 DEPS={- join(" \\\n" . ' ' x 5,
97              fill_lines(" ", $COLUMNS - 5,
98                         map { platform->isobj($_) ? platform->dep($_) : () }
99                         grep { $unified_info{sources}->{$_}->[0] =~ /\.c$/ }
100                         keys %{$unified_info{sources}})); -}
101 {- output_on() if $disabled{makedepend}; "" -}
102 GENERATED_MANDATORY={- join(" \\\n" . ' ' x 20,
103                             fill_lines(" ", $COLUMNS - 20,
104                                        @{$unified_info{depends}->{""}})) -}
105 GENERATED={- # common0.tmpl provides @generated
106              join(" \\\n" . ' ' x 5,
107                   fill_lines(" ", $COLUMNS - 5,
108                              map { platform->convertext($_) } @generated )) -}
109
110 INSTALL_LIBS={-
111         join(" \\\n" . ' ' x 13,
112              fill_lines(" ", $COLUMNS - 13,
113                         map { platform->staticlib($_) // () }
114                         grep { !$unified_info{attributes}->{libraries}->{$_}->{noinst} }
115                         @{$unified_info{libraries}}))
116 -}
117 INSTALL_SHLIBS={-
118         join(" \\\n" . ' ' x 15,
119              fill_lines(" ", $COLUMNS - 15,
120                         map { platform->sharedlib($_) // () }
121                         grep { !$unified_info{attributes}->{libraries}->{$_}->{noinst} }
122                         @{$unified_info{libraries}}))
123 -}
124 INSTALL_SHLIB_INFO={-
125         join(" \\\n" . ' ' x 19,
126              fill_lines(" ", $COLUMNS - 19,
127                         map { my $x = platform->sharedlib($_);
128                               my $y = platform->sharedlib_simple($_);
129                               $x ? "\"$x;$y\"" : () }
130                         grep { !$unified_info{attributes}->{libraries}->{$_}->{noinst} }
131                         @{$unified_info{libraries}}))
132 -}
133 INSTALL_ENGINES={-
134         join(" \\\n" . ' ' x 16,
135              fill_lines(" ", $COLUMNS - 16,
136                         map { platform->dso($_) }
137                         grep { !$unified_info{attributes}->{modules}->{$_}->{noinst}
138                                && $unified_info{attributes}->{modules}->{$_}->{engine} }
139                         @{$unified_info{modules}}))
140 -}
141 INSTALL_PROGRAMS={-
142         join(" \\\n" . ' ' x 16,
143              fill_lines(" ", $COLUMNS - 16, map { platform->bin($_) }
144                         grep { !$unified_info{attributes}->{programs}->{$_}->{noinst} }
145                         @{$unified_info{programs}}))
146 -}
147 BIN_SCRIPTS={-
148         join(" \\\n" . ' ' x 12,
149              fill_lines(" ", $COLUMNS - 12,
150                         map { my $x = $unified_info{attributes}->{scripts}->{$_}->{linkname};
151                               $x ? "$_:$x" : $_ }
152                         grep { !$unified_info{attributes}->{scripts}->{$_}->{noinst}
153                                && !$unified_info{attributes}->{scripts}->{$_}->{misc} }
154                         @{$unified_info{scripts}}))
155 -}
156 MISC_SCRIPTS={-
157         join(" \\\n" . ' ' x 13,
158              fill_lines(" ", $COLUMNS - 13,
159                         map { my $x = $unified_info{attributes}->{scripts}->{$_}->{linkname};
160                               $x ? "$_:$x" : $_ }
161                         grep { !$unified_info{attributes}->{scripts}->{$_}->{noinst}
162                                && $unified_info{attributes}->{scripts}->{$_}->{misc} }
163                         @{$unified_info{scripts}}))
164 -}
165 HTMLDOCS1={-
166         join(" \\\n" . ' ' x 10,
167              fill_lines(" ", $COLUMNS - 10, map { platform->bin($_) }
168                         @{$unified_info{htmldocs}->{man1}})) -}
169 HTMLDOCS3={-
170         join(" \\\n" . ' ' x 10,
171              fill_lines(" ", $COLUMNS - 10, map { platform->bin($_) }
172                         @{$unified_info{htmldocs}->{man3}})) -}
173 HTMLDOCS5={-
174         join(" \\\n" . ' ' x 10,
175              fill_lines(" ", $COLUMNS - 10, map { platform->bin($_) }
176                         @{$unified_info{htmldocs}->{man5}})) -}
177 HTMLDOCS7={-
178         join(" \\\n" . ' ' x 10,
179              fill_lines(" ", $COLUMNS - 10, map { platform->bin($_) }
180                         @{$unified_info{htmldocs}->{man7}})) -}
181 MANDOCS1={-
182         join(" \\\n" . ' ' x 9,
183              fill_lines(" ", $COLUMNS - 9, map { platform->bin($_) }
184                         @{$unified_info{mandocs}->{man1}})) -}
185 MANDOCS3={-
186         join(" \\\n" . ' ' x 9,
187              fill_lines(" ", $COLUMNS - 9, map { platform->bin($_) }
188                         @{$unified_info{mandocs}->{man3}})) -}
189 MANDOCS5={-
190         join(" \\\n" . ' ' x 9,
191              fill_lines(" ", $COLUMNS - 9, map { platform->bin($_) }
192                         @{$unified_info{mandocs}->{man5}})) -}
193 MANDOCS7={-
194         join(" \\\n" . ' ' x 9,
195              fill_lines(" ", $COLUMNS - 9, map { platform->bin($_) }
196                         @{$unified_info{mandocs}->{man7}})) -}
197
198 APPS_OPENSSL="{- use File::Spec::Functions;
199                  catfile("apps","openssl") -}"
200
201 # DESTDIR is for package builders so that they can configure for, say,
202 # /usr/ and yet have everything installed to /tmp/somedir/usr/.
203 # Normally it is left empty.
204 DESTDIR=
205
206 # Do not edit these manually. Use Configure with --prefix or --openssldir
207 # to change this!  Short explanation in the top comment in Configure
208 INSTALLTOP={- # $prefix is used in the OPENSSLDIR perl snippet
209               #
210               our $prefix = $config{prefix} || "/usr/local";
211               $prefix -}
212 OPENSSLDIR={- #
213               # The logic here is that if no --openssldir was given,
214               # OPENSSLDIR will get the value from $prefix plus "/ssl".
215               # If --openssldir was given and the value is an absolute
216               # path, OPENSSLDIR will get its value without change.
217               # If the value from --openssldir is a relative path,
218               # OPENSSLDIR will get $prefix with the --openssldir
219               # value appended as a subdirectory.
220               #
221               use File::Spec::Functions;
222               our $openssldir =
223                   $config{openssldir} ?
224                       (file_name_is_absolute($config{openssldir}) ?
225                            $config{openssldir}
226                            : catdir($prefix, $config{openssldir}))
227                       : catdir($prefix, "ssl");
228               $openssldir -}
229 LIBDIR={- our $libdir = $config{libdir};
230           unless ($libdir) {
231               #
232               # if $prefix/lib$target{multilib} is not an existing
233               # directory, then assume that it's not searched by linker
234               # automatically, in which case adding $target{multilib} suffix
235               # causes more grief than we're ready to tolerate, so don't...
236               our $multilib =
237                   -d "$prefix/lib$target{multilib}" ? $target{multilib} : "";
238               $libdir = "lib$multilib";
239           }
240           file_name_is_absolute($libdir) ? "" : $libdir -}
241 # $(libdir) is chosen to be compatible with the GNU coding standards
242 libdir={- file_name_is_absolute($libdir)
243           ? $libdir : '$(INSTALLTOP)/$(LIBDIR)' -}
244 ENGINESDIR=$(libdir)/engines-{- $sover_dirname -}
245 MODULESDIR=$(libdir)/ossl-modules
246
247 # Convenience variable for those who want to set the rpath in shared
248 # libraries and applications
249 LIBRPATH=$(libdir)
250
251 MANDIR=$(INSTALLTOP)/share/man
252 DOCDIR=$(INSTALLTOP)/share/doc/$(BASENAME)
253 HTMLDIR=$(DOCDIR)/html
254
255 # MANSUFFIX is for the benefit of anyone who may want to have a suffix
256 # appended after the manpage file section number.  "ssl" is popular,
257 # resulting in files such as config.5ssl rather than config.5.
258 MANSUFFIX=
259 HTMLSUFFIX=html
260
261 # For "optional" echo messages, to get "real" silence
262 ECHO = echo
263
264 ##### User defined commands and flags ################################
265
266 # We let the C compiler driver to take care of .s files. This is done in
267 # order to be excused from maintaining a separate set of architecture
268 # dependent assembler flags. E.g. if you throw -mcpu=ultrasparc at SPARC
269 # gcc, then the driver will automatically translate it to -xarch=v8plus
270 # and pass it down to assembler.  In any case, we do not define AS or
271 # ASFLAGS for this reason.
272
273 CROSS_COMPILE={- $config{CROSS_COMPILE} -}
274 CC=$(CROSS_COMPILE){- $config{CC} -}
275 CXX={- $config{CXX} ? "\$(CROSS_COMPILE)$config{CXX}" : '' -}
276 CPPFLAGS={- our $cppflags1 = join(" ",
277                                   (map { "-D".$_} @{$config{CPPDEFINES}}),
278                                   (map { "-I".$_} @{$config{CPPINCLUDES}}),
279                                   @{$config{CPPFLAGS}}) -}
280 CFLAGS={- join(' ', @{$config{CFLAGS}}) -}
281 CXXFLAGS={- join(' ', @{$config{CXXFLAGS}}) -}
282 LDFLAGS= {- join(' ', @{$config{LDFLAGS}}) -}
283 EX_LIBS= {- join(' ', @{$config{LDLIBS}}) -}
284
285 MAKEDEPEND={- $config{makedepprog} -}
286
287 PERL={- $config{PERL} -}
288
289 AR=$(CROSS_COMPILE){- $config{AR} -}
290 ARFLAGS= {- join(' ', @{$config{ARFLAGS}}) -}
291 RANLIB={- $config{RANLIB} ? "\$(CROSS_COMPILE)$config{RANLIB}" : "true"; -}
292 RC= $(CROSS_COMPILE){- $config{RC} -}
293 RCFLAGS={- join(' ', @{$config{RCFLAGS}}) -} {- $target{shared_rcflag} -}
294
295 RM= rm -f
296 RMDIR= rmdir
297 TAR= {- $target{TAR} || "tar" -}
298 TARFLAGS= {- $target{TARFLAGS} -}
299
300 BASENAME=       openssl
301 NAME=           $(BASENAME)-$(VERSION)
302 # Relative to $(SRCDIR)
303 TARFILE=        ../$(NAME).tar
304
305 ##### Project flags ##################################################
306
307 # Variables starting with CNF_ are common variables for all product types
308
309 CNF_CPPFLAGS={- our $cppflags2 =
310                     join(' ', $target{cppflags} || (),
311                               (map { "-D".$_} @{$target{defines}},
312                                               @{$config{defines}}),
313                               (map { "-I".$_} @{$target{includes}},
314                                               @{$config{includes}}),
315                               @{$config{cppflags}}) -}
316 CNF_CFLAGS={- join(' ', $target{cflags} || (),
317                         @{$config{cflags}}) -}
318 CNF_CXXFLAGS={- join(' ', $target{cxxflags} || (),
319                           @{$config{cxxflags}}) -}
320 CNF_LDFLAGS={- join(' ', $target{lflags} || (),
321                          @{$config{lflags}}) -}
322 CNF_EX_LIBS={- join(' ', $target{ex_libs} || (),
323                          @{$config{ex_libs}}) -}
324
325 # Variables starting with LIB_ are used to build library object files
326 # and shared libraries.
327 # Variables starting with DSO_ are used to build DSOs and their object files.
328 # Variables starting with BIN_ are used to build programs and their object
329 # files.
330
331 LIB_CPPFLAGS={- our $lib_cppflags =
332                 join(' ', $target{lib_cppflags} || (),
333                           $target{shared_cppflag} || (),
334                           (map { '-D'.$_ }
335                                @{$target{lib_defines} || ()},
336                                @{$target{shared_defines} || ()},
337                                @{$config{lib_defines} || ()},
338                                @{$config{shared_defines} || ()}),
339                           (map { '-I'.quotify1($_) }
340                                @{$target{lib_includes}},
341                                @{$target{shared_includes}},
342                                @{$config{lib_includes}},
343                                @{$config{shared_includes}}),
344                           @{$config{lib_cppflags}},
345                           @{$config{shared_cppflag}});
346                 join(' ', $lib_cppflags,
347                           (map { '-D'.$_ }
348                                'OPENSSLDIR="\"$(OPENSSLDIR)\""',
349                                'ENGINESDIR="\"$(ENGINESDIR)\""',
350                                'MODULESDIR="\"$(MODULESDIR)\""'),
351                           '$(CNF_CPPFLAGS)', '$(CPPFLAGS)') -}
352 LIB_CFLAGS={- join(' ', $target{lib_cflags} || (),
353                         $target{shared_cflag} || (),
354                         @{$config{lib_cflags}},
355                         @{$config{shared_cflag}},
356                         '$(CNF_CFLAGS)', '$(CFLAGS)') -}
357 LIB_CXXFLAGS={- join(' ', $target{lib_cxxflags} || (),
358                           $target{shared_cxxflag} || (),
359                           @{$config{lib_cxxflags}},
360                           @{$config{shared_cxxflag}},
361                           '$(CNF_CXXFLAGS)', '$(CXXFLAGS)') -}
362 LIB_LDFLAGS={- join(' ', $target{shared_ldflag} || (),
363                          $config{shared_ldflag} || (),
364                          '$(CNF_LDFLAGS)', '$(LDFLAGS)') -}
365 LIB_EX_LIBS=$(CNF_EX_LIBS) $(EX_LIBS)
366 DSO_CPPFLAGS={- join(' ', $target{dso_cppflags} || (),
367                           $target{module_cppflags} || (),
368                           (map { '-D'.$_ }
369                                @{$target{dso_defines}},
370                                @{$target{module_defines}},
371                                @{$config{dso_defines} || ()},
372                                @{$config{module_defines} || ()}),
373                           (map { '-I'.quotify1($_) }
374                                @{$target{dso_includes}},
375                                @{$target{module_includes}},
376                                @{$config{dso_includes}},
377                                @{$config{module_includes}}),
378                           @{$config{dso_cppflags}},
379                           @{$config{module_cppflags}},
380                           '$(CNF_CPPFLAGS)', '$(CPPFLAGS)') -}
381 DSO_CFLAGS={- join(' ', $target{dso_cflags} || (),
382                         $target{module_cflags} || (),
383                         @{$config{dso_cflags}},
384                         @{$config{module_cflags}},
385                         '$(CNF_CFLAGS)', '$(CFLAGS)') -}
386 DSO_CXXFLAGS={- join(' ', $target{dso_cxxflags} || (),
387                           $target{module_cxxflags} || (),
388                           @{$config{dso_cxxflags}},
389                           @{$config{module_cxxflag}},
390                           '$(CNF_CXXFLAGS)', '$(CXXFLAGS)') -}
391 DSO_LDFLAGS={- join(' ', $target{dso_ldflags} || (),
392                          $target{module_ldflags} || (),
393                          @{$config{dso_ldflags}},
394                          @{$config{module_ldflags}},
395                          '$(CNF_LDFLAGS)', '$(LDFLAGS)') -}
396 DSO_EX_LIBS=$(CNF_EX_LIBS) $(EX_LIBS)
397 BIN_CPPFLAGS={- join(' ', $target{bin_cppflags} || (),
398                           (map { '-D'.$_ } @{$config{bin_defines} || ()}),
399                           @{$config{bin_cppflags}},
400                           '$(CNF_CPPFLAGS)', '$(CPPFLAGS)') -}
401 BIN_CFLAGS={- join(' ', $target{bin_cflags} || (),
402                         @{$config{bin_cflags}},
403                         '$(CNF_CFLAGS)', '$(CFLAGS)') -}
404 BIN_CXXFLAGS={- join(' ', $target{bin_cxxflags} || (),
405                           @{$config{bin_cxxflags}},
406                           '$(CNF_CXXFLAGS)', '$(CXXFLAGS)') -}
407 BIN_LDFLAGS={- join(' ', $target{bin_lflags} || (),
408                          @{$config{bin_lflags}},
409                          '$(CNF_LDFLAGS)', '$(LDFLAGS)') -}
410 BIN_EX_LIBS=$(CNF_EX_LIBS) $(EX_LIBS)
411
412 # CPPFLAGS_Q is used for one thing only: to build up buildinf.h
413 CPPFLAGS_Q={- $cppflags1 =~ s|([\\"])|\\$1|g;
414               $cppflags2 =~ s|([\\"])|\\$1|g;
415               $lib_cppflags =~ s|([\\"])|\\$1|g;
416               join(' ', $lib_cppflags || (), $cppflags2 || (),
417                         $cppflags1 || ()) -}
418
419 PERLASM_SCHEME= {- $target{perlasm_scheme} -}
420
421 # For x86 assembler: Set PROCESSOR to 386 if you want to support
422 # the 80386.
423 PROCESSOR= {- $config{processor} -}
424
425 # We want error [and other] messages in English. Trouble is that make(1)
426 # doesn't pass macros down as environment variables unless there already
427 # was corresponding variable originally set. In other words we can only
428 # reassign environment variables, but not set new ones, not in portable
429 # manner that is. That's why we reassign several, just to be sure...
430 LC_ALL=C
431 LC_MESSAGES=C
432 LANG=C
433
434 # The main targets ###################################################
435
436 {- dependmagic('build_sw'); -}: build_libs_nodep build_modules_nodep build_programs_nodep link-utils
437 {- dependmagic('build_libs'); -}: build_libs_nodep
438 {- dependmagic('build_modules'); -}: build_modules_nodep
439 {- dependmagic('build_programs'); -}: build_programs_nodep
440
441 build_docs: build_man_docs build_html_docs
442 build_man_docs: $(MANDOCS1) $(MANDOCS3) $(MANDOCS5) $(MANDOCS7)
443 build_html_docs: $(HTMLDOCS1) $(HTMLDOCS3) $(HTMLDOCS5) $(HTMLDOCS7)
444
445 build_generated: $(GENERATED_MANDATORY)
446 build_libs_nodep: libcrypto.pc libssl.pc openssl.pc
447 build_modules_nodep: $(MODULES)
448 build_programs_nodep: $(PROGRAMS) $(SCRIPTS)
449
450 # Kept around for backward compatibility
451 build_apps build_tests: build_programs
452
453 # Convenience target to prebuild all generated files, not just the mandatory
454 # ones
455 build_all_generated: $(GENERATED_MANDATORY) $(GENERATED) build_docs
456         @ : {- output_off() if $disabled{makedepend}; "" -}
457         @echo "Warning: consider configuring with no-makedepend, because if"
458         @echo "         target system doesn't have $(PERL),"
459         @echo "         then make will fail..."
460         @ : {- output_on() if $disabled{makedepend}; "" -}
461
462 all: build_sw build_docs
463
464 test: tests
465 {- dependmagic('tests'); -}: build_programs_nodep build_modules_nodep link-utils
466         @ : {- output_off() if $disabled{tests}; "" -}
467         ( SRCTOP=$(SRCDIR) \
468           BLDTOP=$(BLDDIR) \
469           PERL="$(PERL)" \
470           EXE_EXT={- platform->binext() -} \
471           $(PERL) $(SRCDIR)/test/run_tests.pl $(TESTS) )
472         @ : {- if ($disabled{tests}) { output_on(); } else { output_off(); } "" -}
473         @echo "Tests are not supported with your chosen Configure options"
474         @ : {- output_on() if !$disabled{tests}; "" -}
475
476 list-tests:
477         @ : {- output_off() if $disabled{tests}; "" -}
478         @SRCTOP="$(SRCDIR)" \
479          $(PERL) $(SRCDIR)/test/run_tests.pl list
480         @ : {- if ($disabled{tests}) { output_on(); } else { output_off(); } "" -}
481         @echo "Tests are not supported with your chosen Configure options"
482         @ : {- output_on() if !$disabled{tests}; "" -}
483
484 install: install_sw install_ssldirs install_docs
485
486 uninstall: uninstall_docs uninstall_sw
487
488 libclean:
489         @set -e; for s in $(SHLIB_INFO); do \
490                 if [ "$$s" = ";" ]; then continue; fi; \
491                 s1=`echo "$$s" | cut -f1 -d";"`; \
492                 s2=`echo "$$s" | cut -f2 -d";"`; \
493                 $(ECHO) $(RM) $$s1; {- output_off() unless windowsdll(); "" -}\
494                 $(RM) apps/$$s1; \
495                 $(RM) test/$$s1; \
496                 $(RM) fuzz/$$s1; {- output_on() unless windowsdll(); "" -}\
497                 $(RM) $$s1; \
498                 if [ "$$s1" != "$$s2" ]; then \
499                         $(ECHO) $(RM) $$s2; \
500                         $(RM) $$s2; \
501                 fi; \
502         done
503         $(RM) $(LIBS)
504         $(RM) *{- platform->defext() -}
505
506 clean: libclean
507         $(RM) $(HTMLDOCS1) $(HTMLDOCS3) $(HTMLDOCS5) $(HTMLDOCS7)
508         $(RM) $(MANDOCS1) $(MANDOCS3) $(MANDOCS5) $(MANDOCS7)
509         $(RM) $(PROGRAMS) $(TESTPROGS) $(MODULES) $(SCRIPTS)
510         $(RM) $(GENERATED_MANDATORY) $(GENERATED)
511         -$(RM) `find . -name '*{- platform->depext() -}' \! -name '.*' \! -type d -print`
512         -$(RM) `find . -name '*{- platform->objext() -}' \! -name '.*' \! -type d -print`
513         $(RM) core
514         $(RM) tags TAGS doc-nits cmd-nits
515         $(RM) -r test/test-runs
516         $(RM) openssl.pc libcrypto.pc libssl.pc
517         -$(RM) `find . -type l \! -name '.*' -print`
518         $(RM) $(TARFILE)
519
520 distclean: clean
521         $(RM) configdata.pm
522         $(RM) Makefile
523
524 # We check if any depfile is newer than Makefile and decide to
525 # concatenate only if that is true.
526 depend:
527         @: {- output_off() if $disabled{makedepend}; "" -}
528         @$(PERL) $(SRCDIR)/util/add-depends.pl {-
529                  defined $makedepprog  && $makedepprog =~ /\/makedepend/
530                  ? 'makedepend' : 'gcc' -}
531         @: {- output_on() if $disabled{makedepend}; "" -}
532
533 # Install helper targets #############################################
534
535 install_sw: install_dev install_engines install_runtime
536
537 uninstall_sw: uninstall_runtime uninstall_engines uninstall_dev
538
539 install_docs: install_man_docs install_html_docs
540
541 uninstall_docs: uninstall_man_docs uninstall_html_docs
542         $(RM) -r $(DESTDIR)$(DOCDIR)
543
544 install_ssldirs:
545         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(OPENSSLDIR)/certs
546         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(OPENSSLDIR)/private
547         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(OPENSSLDIR)/misc
548         @set -e; for x in dummy $(MISC_SCRIPTS); do \
549                 if [ "$$x" = "dummy" ]; then continue; fi; \
550                 x1=`echo "$$x" | cut -f1 -d:`; \
551                 x2=`echo "$$x" | cut -f2 -d:`; \
552                 fn=`basename $$x1`; \
553                 $(ECHO) "install $$x1 -> $(DESTDIR)$(OPENSSLDIR)/misc/$$fn"; \
554                 cp $$x1 $(DESTDIR)$(OPENSSLDIR)/misc/$$fn.new; \
555                 chmod 755 $(DESTDIR)$(OPENSSLDIR)/misc/$$fn.new; \
556                 mv -f $(DESTDIR)$(OPENSSLDIR)/misc/$$fn.new \
557                       $(DESTDIR)$(OPENSSLDIR)/misc/$$fn; \
558                 if [ "$$x1" != "$$x2" ]; then \
559                         ln=`basename "$$x2"`; \
560                         : {- output_off() unless windowsdll(); "" -}; \
561                         $(ECHO) "copy $(DESTDIR)$(OPENSSLDIR)/misc/$$ln -> $(DESTDIR)$(OPENSSLDIR)/misc/$$fn"; \
562                         cp $(DESTDIR)$(OPENSSLDIR)/misc/$$fn $(DESTDIR)$(OPENSSLDIR)/misc/$$ln; \
563                         : {- output_on() unless windowsdll();
564                              output_off() if windowsdll(); "" -}; \
565                         $(ECHO) "link $(DESTDIR)$(OPENSSLDIR)/misc/$$ln -> $(DESTDIR)$(OPENSSLDIR)/misc/$$fn"; \
566                         ln -sf $$fn $(DESTDIR)$(OPENSSLDIR)/misc/$$ln; \
567                         : {- output_on() if windowsdll(); "" -}; \
568                 fi; \
569         done
570         @$(ECHO) "install $(SRCDIR)/apps/openssl.cnf -> $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.dist"
571         @cp $(SRCDIR)/apps/openssl.cnf $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.new
572         @chmod 644 $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.new
573         @mv -f  $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.new $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.dist
574         @if [ ! -f "$(DESTDIR)$(OPENSSLDIR)/openssl.cnf" ]; then \
575                 $(ECHO) "install $(SRCDIR)/apps/openssl.cnf -> $(DESTDIR)$(OPENSSLDIR)/openssl.cnf"; \
576                 cp $(SRCDIR)/apps/openssl.cnf $(DESTDIR)$(OPENSSLDIR)/openssl.cnf; \
577                 chmod 644 $(DESTDIR)$(OPENSSLDIR)/openssl.cnf; \
578         fi
579         @$(ECHO) "install $(SRCDIR)/apps/ct_log_list.cnf -> $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.dist"
580         @cp $(SRCDIR)/apps/ct_log_list.cnf $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.new
581         @chmod 644 $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.new
582         @mv -f  $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.new $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.dist
583         @if [ ! -f "$(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf" ]; then \
584                 $(ECHO) "install $(SRCDIR)/apps/ct_log_list.cnf -> $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf"; \
585                 cp $(SRCDIR)/apps/ct_log_list.cnf $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf; \
586                 chmod 644 $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf; \
587         fi
588
589 install_dev: install_runtime_libs
590         @[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
591         @$(ECHO) "*** Installing development files"
592         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(INSTALLTOP)/include/openssl
593         @ : {- output_off() unless grep { $_ eq "OPENSSL_USE_APPLINK" } (@{$target{defines}}, @{$config{defines}}); "" -}
594         @$(ECHO) "install $(SRCDIR)/ms/applink.c -> $(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c"
595         @cp $(SRCDIR)/ms/applink.c $(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c
596         @chmod 644 $(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c
597         @ : {- output_on() unless grep { $_ eq "OPENSSL_USE_APPLINK" } (@{$target{defines}}, @{$config{defines}}); "" -}
598         @set -e; for i in $(SRCDIR)/include/openssl/*.h \
599                           $(BLDDIR)/include/openssl/*.h; do \
600                 fn=`basename $$i`; \
601                 $(ECHO) "install $$i -> $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn"; \
602                 cp $$i $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn; \
603                 chmod 644 $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn; \
604         done
605         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(libdir)
606         @set -e; for l in $(INSTALL_LIBS); do \
607                 fn=`basename $$l`; \
608                 $(ECHO) "install $$l -> $(DESTDIR)$(libdir)/$$fn"; \
609                 cp $$l $(DESTDIR)$(libdir)/$$fn.new; \
610                 $(RANLIB) $(DESTDIR)$(libdir)/$$fn.new; \
611                 chmod 644 $(DESTDIR)$(libdir)/$$fn.new; \
612                 mv -f $(DESTDIR)$(libdir)/$$fn.new \
613                       $(DESTDIR)$(libdir)/$$fn; \
614         done
615         @ : {- output_off() if $disabled{shared}; "" -}
616         @set -e; for s in $(INSTALL_SHLIB_INFO); do \
617                 s1=`echo "$$s" | cut -f1 -d";"`; \
618                 s2=`echo "$$s" | cut -f2 -d";"`; \
619                 fn1=`basename $$s1`; \
620                 fn2=`basename $$s2`; \
621                 : {- output_off(); output_on() unless windowsdll() or sharedaix(); "" -}; \
622                 if [ "$$fn1" != "$$fn2" ]; then \
623                         $(ECHO) "link $(DESTDIR)$(libdir)/$$fn2 -> $(DESTDIR)$(libdir)/$$fn1"; \
624                         ln -sf $$fn1 $(DESTDIR)$(libdir)/$$fn2; \
625                 fi; \
626                 : {- output_off() unless windowsdll() or sharedaix(); output_on() if windowsdll(); "" -}; \
627                 $(ECHO) "install $$s2 -> $(DESTDIR)$(libdir)/$$fn2"; \
628                 cp $$s2 $(DESTDIR)$(libdir)/$$fn2.new; \
629                 chmod 755 $(DESTDIR)$(libdir)/$$fn2.new; \
630                 mv -f $(DESTDIR)$(libdir)/$$fn2.new \
631                       $(DESTDIR)$(libdir)/$$fn2; \
632                 : {- output_off() if windowsdll(); output_on() if sharedaix(); "" -}; \
633                 a=$(DESTDIR)$(libdir)/$$fn2; \
634                 $(ECHO) "install $$s1 -> $$a"; \
635                 if [ -f $$a ]; then ( trap "rm -rf /tmp/ar.$$$$" INT 0; \
636                         mkdir /tmp/ar.$$$$; ( cd /tmp/ar.$$$$; \
637                         cp -f $$a $$a.new; \
638                         for so in `$(AR) t $$a`; do \
639                                 $(AR) x $$a $$so; \
640                                 chmod u+w $$so; \
641                                 strip -X32_64 -e $$so; \
642                                 $(AR) r $$a.new $$so; \
643                         done; \
644                 )); fi; \
645                 $(AR) r $$a.new $$s1; \
646                 mv -f $$a.new $$a; \
647                 : {- output_off() if sharedaix(); output_on(); "" -}; \
648         done
649         @ : {- output_on() if $disabled{shared}; "" -}
650         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(libdir)/pkgconfig
651         @$(ECHO) "install libcrypto.pc -> $(DESTDIR)$(libdir)/pkgconfig/libcrypto.pc"
652         @cp libcrypto.pc $(DESTDIR)$(libdir)/pkgconfig
653         @chmod 644 $(DESTDIR)$(libdir)/pkgconfig/libcrypto.pc
654         @$(ECHO) "install libssl.pc -> $(DESTDIR)$(libdir)/pkgconfig/libssl.pc"
655         @cp libssl.pc $(DESTDIR)$(libdir)/pkgconfig
656         @chmod 644 $(DESTDIR)$(libdir)/pkgconfig/libssl.pc
657         @$(ECHO) "install openssl.pc -> $(DESTDIR)$(libdir)/pkgconfig/openssl.pc"
658         @cp openssl.pc $(DESTDIR)$(libdir)/pkgconfig
659         @chmod 644 $(DESTDIR)$(libdir)/pkgconfig/openssl.pc
660
661 uninstall_dev: uninstall_runtime_libs
662         @$(ECHO) "*** Uninstalling development files"
663         @ : {- output_off() unless grep { $_ eq "OPENSSL_USE_APPLINK" } (@{$target{defines}}, @{$config{defines}}); "" -}
664         @$(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c"
665         @$(RM) $(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c
666         @ : {- output_on() unless grep { $_ eq "OPENSSL_USE_APPLINK" } (@{$target{defines}}, @{$config{defines}}); "" -}
667         @set -e; for i in $(SRCDIR)/include/openssl/*.h \
668                           $(BLDDIR)/include/openssl/*.h; do \
669                 fn=`basename $$i`; \
670                 $(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn"; \
671                 $(RM) $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn; \
672         done
673         -$(RMDIR) $(DESTDIR)$(INSTALLTOP)/include/openssl
674         -$(RMDIR) $(DESTDIR)$(INSTALLTOP)/include
675         @set -e; for l in $(INSTALL_LIBS); do \
676                 fn=`basename $$l`; \
677                 $(ECHO) "$(RM) $(DESTDIR)$(libdir)/$$fn"; \
678                 $(RM) $(DESTDIR)$(libdir)/$$fn; \
679         done
680         @ : {- output_off() if $disabled{shared}; "" -}
681         @set -e; for s in $(INSTALL_SHLIB_INFO); do \
682                 s1=`echo "$$s" | cut -f1 -d";"`; \
683                 s2=`echo "$$s" | cut -f2 -d";"`; \
684                 fn1=`basename $$s1`; \
685                 fn2=`basename $$s2`; \
686                 : {- output_off() if windowsdll(); "" -}; \
687                 $(ECHO) "$(RM) $(DESTDIR)$(libdir)/$$fn2"; \
688                 $(RM) $(DESTDIR)$(libdir)/$$fn2; \
689                 if [ "$$fn1" != "$$fn2" -a -f "$(DESTDIR)$(libdir)/$$fn1" ]; then \
690                         $(ECHO) "$(RM) $(DESTDIR)$(libdir)/$$fn1"; \
691                         $(RM) $(DESTDIR)$(libdir)/$$fn1; \
692                 fi; \
693                 : {- output_on() if windowsdll(); "" -}{- output_off() unless windowsdll(); "" -}; \
694                 $(ECHO) "$(RM) $(DESTDIR)$(libdir)/$$fn2"; \
695                 $(RM) $(DESTDIR)$(libdir)/$$fn2; \
696                 : {- output_on() unless windowsdll(); "" -}; \
697         done
698         @ : {- output_on() if $disabled{shared}; "" -}
699         $(RM) $(DESTDIR)$(libdir)/pkgconfig/libcrypto.pc
700         $(RM) $(DESTDIR)$(libdir)/pkgconfig/libssl.pc
701         $(RM) $(DESTDIR)$(libdir)/pkgconfig/openssl.pc
702         -$(RMDIR) $(DESTDIR)$(libdir)/pkgconfig
703         -$(RMDIR) $(DESTDIR)$(libdir)
704
705 install_engines: install_runtime_libs build_modules
706         @[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
707         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(ENGINESDIR)/
708         @$(ECHO) "*** Installing ENGINE modules"
709         @set -e; for e in dummy $(INSTALL_ENGINES); do \
710                 if [ "$$e" = "dummy" ]; then continue; fi; \
711                 fn=`basename $$e`; \
712                 $(ECHO) "install $$e -> $(DESTDIR)$(ENGINESDIR)/$$fn"; \
713                 cp $$e $(DESTDIR)$(ENGINESDIR)/$$fn.new; \
714                 chmod 755 $(DESTDIR)$(ENGINESDIR)/$$fn.new; \
715                 mv -f $(DESTDIR)$(ENGINESDIR)/$$fn.new \
716                       $(DESTDIR)$(ENGINESDIR)/$$fn; \
717         done
718
719 uninstall_engines:
720         @$(ECHO) "*** Uninstalling ENGINE modules"
721         @set -e; for e in dummy $(INSTALL_ENGINES); do \
722                 if [ "$$e" = "dummy" ]; then continue; fi; \
723                 fn=`basename $$e`; \
724                 if [ "$$fn" = '{- platform->dso("ossltest") -}' ]; then \
725                         continue; \
726                 fi; \
727                 $(ECHO) "$(RM) $(DESTDIR)$(ENGINESDIR)/$$fn"; \
728                 $(RM) $(DESTDIR)$(ENGINESDIR)/$$fn; \
729         done
730         -$(RMDIR) $(DESTDIR)$(ENGINESDIR)
731
732 install_runtime: install_programs
733
734 install_runtime_libs: build_libs
735         @[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
736         @ : {- output_off() if windowsdll(); "" -}
737         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(libdir)
738         @ : {- output_on() if windowsdll(); output_off() unless windowsdll(); "" -}
739         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(INSTALLTOP)/bin
740         @ : {- output_on() unless windowsdll(); "" -}
741         @$(ECHO) "*** Installing runtime libraries"
742         @set -e; for s in dummy $(INSTALL_SHLIBS); do \
743                 if [ "$$s" = "dummy" ]; then continue; fi; \
744                 fn=`basename $$s`; \
745                 : {- output_off() unless windowsdll(); "" -}; \
746                 $(ECHO) "install $$s -> $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
747                 cp $$s $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
748                 chmod 755 $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
749                 mv -f $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new \
750                       $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
751                 : {- output_on() unless windowsdll(); "" -}{- output_off() if windowsdll(); "" -}; \
752                 $(ECHO) "install $$s -> $(DESTDIR)$(libdir)/$$fn"; \
753                 cp $$s $(DESTDIR)$(libdir)/$$fn.new; \
754                 chmod 755 $(DESTDIR)$(libdir)/$$fn.new; \
755                 mv -f $(DESTDIR)$(libdir)/$$fn.new \
756                       $(DESTDIR)$(libdir)/$$fn; \
757                 : {- output_on() if windowsdll(); "" -}; \
758         done
759
760 install_programs: install_runtime_libs build_programs
761         @[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
762         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(INSTALLTOP)/bin
763         @$(ECHO) "*** Installing runtime programs"
764         @set -e; for x in dummy $(INSTALL_PROGRAMS); do \
765                 if [ "$$x" = "dummy" ]; then continue; fi; \
766                 fn=`basename $$x`; \
767                 $(ECHO) "install $$x -> $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
768                 cp $$x $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
769                 chmod 755 $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
770                 mv -f $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new \
771                       $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
772         done
773         @set -e; for x in dummy $(BIN_SCRIPTS); do \
774                 if [ "$$x" = "dummy" ]; then continue; fi; \
775                 fn=`basename $$x`; \
776                 $(ECHO) "install $$x -> $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
777                 cp $$x $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
778                 chmod 755 $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
779                 mv -f $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new \
780                       $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
781         done
782
783 uninstall_runtime: uninstall_programs uninstall_runtime_libs
784
785 uninstall_programs:
786         @$(ECHO) "*** Uninstalling runtime programs"
787         @set -e; for x in dummy $(INSTALL_PROGRAMS); \
788         do  \
789                 if [ "$$x" = "dummy" ]; then continue; fi; \
790                 fn=`basename $$x`; \
791                 $(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
792                 $(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
793         done;
794         @set -e; for x in dummy $(BIN_SCRIPTS); \
795         do  \
796                 if [ "$$x" = "dummy" ]; then continue; fi; \
797                 fn=`basename $$x`; \
798                 $(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
799                 $(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
800         done
801         -$(RMDIR) $(DESTDIR)$(INSTALLTOP)/bin
802
803 uninstall_runtime_libs:
804         @$(ECHO) "*** Uninstalling runtime libraries"
805         @ : {- output_off() unless windowsdll(); "" -}
806         @set -e; for s in dummy $(INSTALL_SHLIBS); do \
807                 if [ "$$s" = "dummy" ]; then continue; fi; \
808                 fn=`basename $$s`; \
809                 $(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
810                 $(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
811         done
812         @ : {- output_on() unless windowsdll(); "" -}
813
814
815 install_man_docs: build_man_docs
816         @[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
817         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(MANDIR)/man1
818         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(MANDIR)/man3
819         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(MANDIR)/man5
820         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(MANDIR)/man7
821         @$(ECHO) "*** Installing manpages"
822         @set -e; for x in dummy $(MANDOCS1); do \
823                 if [ "$$x" = "dummy" ]; then continue; fi; \
824                 fn=`basename $$x`; \
825                 $(ECHO) "install $$x -> $(DESTDIR)$(MANDIR)/man1/$$fn"; \
826                 cp $$x $(DESTDIR)$(MANDIR)/man1/$$fn$(MANSUFFIX); \
827                 chmod 755 $(DESTDIR)$(MANDIR)/man1/$$fn$(MANSUFFIX); \
828         done
829         @set -e; for x in dummy $(MANDOCS3); do \
830                 if [ "$$x" = "dummy" ]; then continue; fi; \
831                 fn=`basename $$x`; \
832                 $(ECHO) "install $$x -> $(DESTDIR)$(MANDIR)/man3/$$fn"; \
833                 cp $$x $(DESTDIR)$(MANDIR)/man3/$$fn$(MANSUFFIX); \
834                 chmod 755 $(DESTDIR)$(MANDIR)/man3/$$fn$(MANSUFFIX); \
835         done
836         @set -e; for x in dummy $(MANDOCS5); do \
837                 if [ "$$x" = "dummy" ]; then continue; fi; \
838                 fn=`basename $$x`; \
839                 $(ECHO) "install $$x -> $(DESTDIR)$(MANDIR)/man5/$$fn"; \
840                 cp $$x $(DESTDIR)$(MANDIR)/man5/$$fn$(MANSUFFIX); \
841                 chmod 755 $(DESTDIR)$(MANDIR)/man5/$$fn$(MANSUFFIX); \
842         done
843         @set -e; for x in dummy $(MANDOCS7); do \
844                 if [ "$$x" = "dummy" ]; then continue; fi; \
845                 fn=`basename $$x`; \
846                 $(ECHO) "install $$x -> $(DESTDIR)$(MANDIR)/man7/$$fn"; \
847                 cp $$x $(DESTDIR)$(MANDIR)/man7/$$fn$(MANSUFFIX); \
848                 chmod 755 $(DESTDIR)$(MANDIR)/man7/$$fn$(MANSUFFIX); \
849         done
850
851 uninstall_man_docs:
852         @$(ECHO) "*** Uninstalling manpages"
853         @set -e; for x in dummy $(MANDOCS1); do \
854                 if [ "$$x" = "dummy" ]; then continue; fi; \
855                 fn=`basename $$x`; \
856                 $(ECHO) "$(RM) $(DESTDIR)$(MANDIR)/man1/$$fn"; \
857                 $(RM) $(DESTDIR)$(MANDIR)/man1/$$fn$(MANSUFFIX); \
858         done
859         @set -e; for x in dummy $(MANDOCS3); do \
860                 if [ "$$x" = "dummy" ]; then continue; fi; \
861                 fn=`basename $$x`; \
862                 $(ECHO) "$(RM) $(DESTDIR)$(MANDIR)/man3/$$fn"; \
863                 $(RM) $(DESTDIR)$(MANDIR)/man3/$$fn$(MANSUFFIX); \
864         done
865         @set -e; for x in dummy $(MANDOCS5); do \
866                 if [ "$$x" = "dummy" ]; then continue; fi; \
867                 fn=`basename $$x`; \
868                 $(ECHO) "$(RM) $(DESTDIR)$(MANDIR)/man5/$$fn"; \
869                 $(RM) $(DESTDIR)$(MANDIR)/man5/$$fn$(MANSUFFIX); \
870         done
871         @set -e; for x in dummy $(MANDOCS7); do \
872                 if [ "$$x" = "dummy" ]; then continue; fi; \
873                 fn=`basename $$x`; \
874                 $(ECHO) "$(RM) $(DESTDIR)$(MANDIR)/man7/$$fn"; \
875                 $(RM) $(DESTDIR)$(MANDIR)/man7/$$fn$(MANSUFFIX); \
876         done
877
878 install_html_docs: build_html_docs
879         @[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
880         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(HTMLDIR)/man1
881         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(HTMLDIR)/man3
882         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(HTMLDIR)/man5
883         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(HTMLDIR)/man7
884         @$(ECHO) "*** Installing HTML manpages"
885         @set -e; for x in dummy $(HTMLDOCS1); do \
886                 if [ "$$x" = "dummy" ]; then continue; fi; \
887                 fn=`basename $$x`; \
888                 $(ECHO) "install $$x -> $(DESTDIR)$(HTMLDIR)/man1/$$fn"; \
889                 cp $$x $(DESTDIR)$(HTMLDIR)/man1/$$fn; \
890                 chmod 755 $(DESTDIR)$(HTMLDIR)/man1/$$fn; \
891         done
892         @set -e; for x in dummy $(HTMLDOCS3); do \
893                 if [ "$$x" = "dummy" ]; then continue; fi; \
894                 fn=`basename $$x`; \
895                 $(ECHO) "install $$x -> $(DESTDIR)$(HTMLDIR)/man3/$$fn"; \
896                 cp $$x $(DESTDIR)$(HTMLDIR)/man3/$$fn; \
897                 chmod 755 $(DESTDIR)$(HTMLDIR)/man3/$$fn; \
898         done
899         @set -e; for x in dummy $(HTMLDOCS5); do \
900                 if [ "$$x" = "dummy" ]; then continue; fi; \
901                 fn=`basename $$x`; \
902                 $(ECHO) "install $$x -> $(DESTDIR)$(HTMLDIR)/man5/$$fn"; \
903                 cp $$x $(DESTDIR)$(HTMLDIR)/man5/$$fn; \
904                 chmod 755 $(DESTDIR)$(HTMLDIR)/man5/$$fn; \
905         done
906         @set -e; for x in dummy $(HTMLDOCS7); do \
907                 if [ "$$x" = "dummy" ]; then continue; fi; \
908                 fn=`basename $$x`; \
909                 $(ECHO) "install $$x -> $(DESTDIR)$(HTMLDIR)/man7/$$fn"; \
910                 cp $$x $(DESTDIR)$(HTMLDIR)/man7/$$fn; \
911                 chmod 755 $(DESTDIR)$(HTMLDIR)/man7/$$fn; \
912         done
913
914 uninstall_html_docs:
915         @$(ECHO) "*** Uninstalling HTML manpages"
916         @set -e; for x in dummy $(HTMLDOCS1); do \
917                 if [ "$$x" = "dummy" ]; then continue; fi; \
918                 fn=`basename $$x`; \
919                 $(ECHO) "$(RM) $(DESTDIR)$(HTMLDIR)/man1/$$fn"; \
920                 $(RM) $(DESTDIR)$(HTMLDIR)/man1/$$fn; \
921         done
922         @set -e; for x in dummy $(HTMLDOCS3); do \
923                 if [ "$$x" = "dummy" ]; then continue; fi; \
924                 fn=`basename $$x`; \
925                 $(ECHO) "$(RM) $(DESTDIR)$(HTMLDIR)/man3/$$fn"; \
926                 $(RM) $(DESTDIR)$(HTMLDIR)/man3/$$fn; \
927         done
928         @set -e; for x in dummy $(HTMLDOCS5); do \
929                 if [ "$$x" = "dummy" ]; then continue; fi; \
930                 fn=`basename $$x`; \
931                 $(ECHO) "$(RM) $(DESTDIR)$(HTMLDIR)/man5/$$fn"; \
932                 $(RM) $(DESTDIR)$(HTMLDIR)/man5/$$fn; \
933         done
934         @set -e; for x in dummy $(HTMLDOCS7); do \
935                 if [ "$$x" = "dummy" ]; then continue; fi; \
936                 fn=`basename $$x`; \
937                 $(ECHO) "$(RM) $(DESTDIR)$(HTMLDIR)/man7/$$fn"; \
938                 $(RM) $(DESTDIR)$(HTMLDIR)/man7/$$fn; \
939         done
940
941 # Developer targets (note: these are only available on Unix) #########
942
943 update: generate errors ordinals
944
945 generate: generate_apps generate_crypto_bn generate_crypto_objects \
946           generate_crypto_conf generate_crypto_asn1 generate_fuzz_oids
947
948 .PHONY: doc-nits cmd-nits
949 doc-nits: build_generated
950         $(PERL) $(SRCDIR)/util/find-doc-nits -n -l -e
951
952 cmd-nits: build_generated apps/openssl
953         $(PERL) $(SRCDIR)/util/find-doc-nits -c
954
955 # Test coverage is a good idea for the future
956 #coverage: $(PROGRAMS) $(TESTPROGRAMS)
957 #       ...
958
959 lint:
960         lint -DLINT $(INCLUDES) $(SRCS)
961
962 generate_apps:
963         ( cd $(SRCDIR); $(PERL) VMS/VMSify-conf.pl \
964                                 < apps/openssl.cnf > apps/openssl-vms.cnf )
965
966 generate_crypto_bn:
967         ( cd $(SRCDIR); $(PERL) crypto/bn/bn_prime.pl > crypto/bn/bn_prime.h )
968
969 generate_crypto_objects:
970         ( cd $(SRCDIR); $(PERL) crypto/objects/objects.pl -n \
971                                 crypto/objects/objects.txt \
972                                 crypto/objects/obj_mac.num \
973                                 > crypto/objects/obj_mac.new && \
974             mv crypto/objects/obj_mac.new crypto/objects/obj_mac.num )
975         ( cd $(SRCDIR); $(PERL) crypto/objects/objects.pl \
976                                 crypto/objects/objects.txt \
977                                 crypto/objects/obj_mac.num \
978                                 > include/openssl/obj_mac.h )
979         ( cd $(SRCDIR); $(PERL) crypto/objects/obj_dat.pl \
980                                 include/openssl/obj_mac.h \
981                                 > crypto/objects/obj_dat.h )
982         ( cd $(SRCDIR); $(PERL) crypto/objects/objxref.pl \
983                                 crypto/objects/obj_mac.num \
984                                 crypto/objects/obj_xref.txt \
985                                 > crypto/objects/obj_xref.h )
986
987 generate_crypto_conf:
988         ( cd $(SRCDIR); $(PERL) crypto/conf/keysets.pl \
989                                 > crypto/conf/conf_def.h )
990
991 generate_crypto_asn1:
992         ( cd $(SRCDIR); $(PERL) crypto/asn1/charmap.pl \
993                                 > crypto/asn1/charmap.h )
994
995 generate_fuzz_oids:
996         ( cd $(SRCDIR); $(PERL) fuzz/mkfuzzoids.pl \
997                                 crypto/objects/obj_dat.h \
998                                 > fuzz/oids.txt )
999
1000 # Set to -force to force a rebuild
1001 ERROR_REBUILD=
1002 errors:
1003         ( b=`pwd`; set -e; cd $(SRCDIR); \
1004           $(PERL) util/ck_errf.pl -strict -internal; \
1005           $(PERL) -I$$b util/mkerr.pl $(ERROR_REBUILD) -internal )
1006         ( b=`pwd`; set -e; cd $(SRCDIR)/engines; \
1007           for E in *.ec ; do \
1008               $(PERL) ../util/ck_errf.pl -strict \
1009                 -conf $$E `basename $$E .ec`.c; \
1010               $(PERL) -I$$b ../util/mkerr.pl $(ERROR_REBUILD) -static \
1011                 -conf $$E `basename $$E .ec`.c ; \
1012           done )
1013
1014 {- use File::Basename;
1015
1016    our @sslheaders =
1017        qw( include/openssl/ssl.h
1018            include/openssl/ssl2.h
1019            include/openssl/ssl3.h
1020            include/openssl/sslerr.h
1021            include/openssl/tls1.h
1022            include/openssl/dtls1.h
1023            include/openssl/srtp.h );
1024    our @cryptoheaders =
1025        qw( include/internal/dso.h
1026            include/internal/o_dir.h
1027            include/internal/err.h
1028            include/internal/evp.h
1029            include/internal/sslconf.h );
1030    our @cryptoskipheaders = ( @sslheaders,
1031        qw( include/openssl/conf_api.h
1032            include/openssl/ebcdic.h
1033            include/openssl/opensslconf.h
1034            include/openssl/symhacks.h ) );
1035    foreach my $f ( glob(catfile($config{sourcedir},
1036                                 'include','openssl','*.h')) ) {
1037        my $fn = "include/openssl/" . basename($f);
1038        push @cryptoheaders, $fn unless grep { $_ eq $fn } @cryptoskipheaders;
1039    }
1040    "";
1041 -}
1042 CRYPTOHEADERS={- join(" \\\n" . ' ' x 14,
1043                       fill_lines(" ", $COLUMNS - 14, sort @cryptoheaders)) -}
1044 SSLHEADERS={- join(" \\\n" . ' ' x 11,
1045                    fill_lines(" ", $COLUMNS - 11, sort @sslheaders)) -}
1046 ordinals:
1047         ( cd $(SRCDIR); \
1048           $(PERL) util/mknum.pl --version $(VERSION) --no-warnings \
1049                   --ordinals util/libcrypto.num \
1050                   --symhacks include/openssl/symhacks.h \
1051                   $(CRYPTOHEADERS) )
1052         ( cd $(SRCDIR); \
1053           $(PERL) util/mknum.pl --version $(VERSION) --no-warnings \
1054                   --ordinals util/libssl.num \
1055                   --symhacks include/openssl/symhacks.h \
1056                   $(SSLHEADERS))
1057
1058 test_ordinals:
1059         ( cd test; \
1060           SRCTOP=../$(SRCDIR) \
1061           BLDTOP=../$(BLDDIR) \
1062             $(PERL) ../$(SRCDIR)/test/run_tests.pl test_ordinals )
1063
1064 tags TAGS: FORCE
1065         rm -f TAGS tags
1066         -ctags -R .
1067         -etags `find . -name '*.[ch]' -o -name '*.pm'`
1068
1069 # Release targets (note: only available on Unix) #####################
1070
1071 tar:
1072         (cd $(SRCDIR); ./util/mktar.sh --name='$(NAME)' --tarfile='$(TARFILE)')
1073
1074 # Helper targets #####################################################
1075
1076 link-utils: $(BLDDIR)/util/opensslwrap.sh $(BLDDIR)/util/wrap.pl
1077
1078 $(BLDDIR)/util/opensslwrap.sh $(BLDDIR)/util/wrap.pl: configdata.pm
1079         @if [ "$(SRCDIR)" != "$(BLDDIR)" ]; then \
1080             mkdir -p "$(BLDDIR)/util"; \
1081             ln -sf "../$(SRCDIR)/util/`basename "$@"`" "$(BLDDIR)/util"; \
1082         fi
1083
1084 FORCE:
1085
1086 # Building targets ###################################################
1087
1088 libcrypto.pc libssl.pc openssl.pc: configdata.pm $(LIBS) {- join(" ",map { platform->sharedlib_simple($_) // () } @{$unified_info{libraries}}) -}
1089 libcrypto.pc:
1090         @ ( echo 'prefix=$(INSTALLTOP)'; \
1091             echo 'exec_prefix=$${prefix}'; \
1092             if [ -n "$(LIBDIR)" ]; then \
1093                 echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
1094             else \
1095                 echo 'libdir=$(libdir)'; \
1096             fi; \
1097             echo 'includedir=$${prefix}/include'; \
1098             echo 'enginesdir=$${libdir}/engines-{- $sover_dirname -}'; \
1099             echo ''; \
1100             echo 'Name: OpenSSL-libcrypto'; \
1101             echo 'Description: OpenSSL cryptography library'; \
1102             echo 'Version: '$(VERSION); \
1103             echo 'Libs: -L$${libdir} -lcrypto'; \
1104             echo 'Libs.private: $(LIB_EX_LIBS)'; \
1105             echo 'Cflags: -I$${includedir}' ) > libcrypto.pc
1106
1107 libssl.pc:
1108         @ ( echo 'prefix=$(INSTALLTOP)'; \
1109             echo 'exec_prefix=$${prefix}'; \
1110             if [ -n "$(LIBDIR)" ]; then \
1111                 echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
1112             else \
1113                 echo 'libdir=$(libdir)'; \
1114             fi; \
1115             echo 'includedir=$${prefix}/include'; \
1116             echo ''; \
1117             echo 'Name: OpenSSL-libssl'; \
1118             echo 'Description: Secure Sockets Layer and cryptography libraries'; \
1119             echo 'Version: '$(VERSION); \
1120             echo 'Requires.private: libcrypto'; \
1121             echo 'Libs: -L$${libdir} -lssl'; \
1122             echo 'Cflags: -I$${includedir}' ) > libssl.pc
1123
1124 openssl.pc:
1125         @ ( echo 'prefix=$(INSTALLTOP)'; \
1126             echo 'exec_prefix=$${prefix}'; \
1127             if [ -n "$(LIBDIR)" ]; then \
1128                 echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
1129             else \
1130                 echo 'libdir=$(libdir)'; \
1131             fi; \
1132             echo 'includedir=$${prefix}/include'; \
1133             echo ''; \
1134             echo 'Name: OpenSSL'; \
1135             echo 'Description: Secure Sockets Layer and cryptography libraries and tools'; \
1136             echo 'Version: '$(VERSION); \
1137             echo 'Requires: libssl libcrypto' ) > openssl.pc
1138
1139 configdata.pm: $(SRCDIR)/Configure $(SRCDIR)/config \
1140                {- join(" \\\n" . ' ' x 15,
1141                        fill_lines(" ", $COLUMNS - 15,
1142                                   @{$config{build_file_templates}},
1143                                   @{$config{build_infos}},
1144                                   @{$config{conf_files}})) -}
1145         @echo "Detected changed: $?"
1146         $(PERL) configdata.pm -r
1147         @echo "**************************************************"
1148         @echo "***                                            ***"
1149         @echo "***   Please run the same make command again   ***"
1150         @echo "***                                            ***"
1151         @echo "**************************************************"
1152         @false
1153
1154 reconfigure reconf:
1155         $(PERL) configdata.pm -r
1156
1157 {-
1158   use File::Basename;
1159   use File::Spec::Functions qw/:DEFAULT abs2rel rel2abs/;
1160
1161   # Helper function to figure out dependencies on libraries
1162   # It takes a list of library names and outputs a list of dependencies
1163   sub compute_lib_depends {
1164       # Depending on shared libraries:
1165       # On Windows POSIX layers, we depend on {libname}.dll.a
1166       # On Unix platforms, we depend on {shlibname}.so
1167       return map { platform->sharedlib_simple($_) // platform->staticlib($_) } @_;
1168   }
1169
1170   sub generatesrc {
1171       my %args = @_;
1172       my $generator = join(" ", @{$args{generator}});
1173       my $generator_incs = join("", map { " -I".$_ } @{$args{generator_incs}});
1174       my $incs = join("", map { " -I".$_ } @{$args{incs}});
1175       my $defs = join("", map { " -D".$_ } @{$args{defs}});
1176       my $deps = join(" ", @{$args{generator_deps}}, @{$args{deps}});
1177
1178       if ($args{src} =~ /\.html$/) {
1179           my $title = basename($args{src}, ".html");
1180           my $pod = $args{generator}->[0];
1181           return <<"EOF";
1182 $args{src}: $pod
1183         \$(PERL) \$(SRCDIR)/util/mkpod2html.pl -i "$pod" -o \$\@ -t "$title" -r "\$(SRCDIR)/doc"
1184 EOF
1185       } elsif ($args{src} =~ /\.(\d)$/) {
1186           my $section = $1;
1187           my $name = uc basename($args{src}, ".$section");
1188           my $pod = $args{generator}->[0];
1189           return <<"EOF";
1190 $args{src}: $pod
1191         pod2man --name=$name --section=$section --center=OpenSSL \\
1192                 --release=\$(VERSION) $pod >\$\@
1193 EOF
1194       } elsif (platform->isdef($args{src})) {
1195           my $target = platform->def($args{src});
1196           (my $mkdef_os = $target{shared_target}) =~ s|-shared$||;
1197           my $ord_ver = $args{intent} eq 'lib' ? ' --version $(VERSION)' : '';
1198           my $ord_name = $args{generator}->[1] || $args{product};
1199           return <<"EOF";
1200 $target: $args{generator}->[0] $deps \$(SRCDIR)/util/mkdef.pl
1201         \$(PERL) \$(SRCDIR)/util/mkdef.pl$ord_ver --ordinals $args{generator}->[0]  --name $ord_name --OS $mkdef_os > $target
1202 EOF
1203       } elsif (!platform->isasm($args{src})) {
1204           if ($args{generator}->[0] =~ m|^.*\.in$|) {
1205               my $dofile = abs2rel(rel2abs(catfile($config{sourcedir},
1206                                                    "util", "dofile.pl")),
1207                                    rel2abs($config{builddir}));
1208               my @modules = ( 'configdata.pm',
1209                               grep { $_ =~ m|\.pm$| } @{$args{deps}} );
1210               my %moduleincs = map { '"-I'.dirname($_).'"' => 1 } @modules;
1211               @modules = map { "-M".basename($_, '.pm') } @modules;
1212               my $modules = join(' ', '', sort keys %moduleincs, @modules);
1213               return <<"EOF";
1214 $args{src}: $args{generator}->[0] $deps \$(BLDDIR)/configdata.pm
1215         \$(PERL)$modules "$dofile" "-o$target{build_file}" $generator > \$@
1216 EOF
1217           } else {
1218               return <<"EOF";
1219 $args{src}: $args{generator}->[0] $deps
1220         \$(PERL)$generator_incs $generator > \$@
1221 EOF
1222           }
1223       } else {
1224           my $cppflags = {
1225               shlib => '$(LIB_CFLAGS) $(LIB_CPPFLAGS)',
1226               lib => '$(LIB_CFLAGS) $(LIB_CPPFLAGS)',
1227               dso => '$(DSO_CFLAGS) $(DSO_CPPFLAGS)',
1228               bin => '$(BIN_CFLAGS) $(BIN_CPPFLAGS)'
1229           } -> {$args{intent}};
1230
1231           if ($args{generator}->[0] =~ /\.pl$/) {
1232               $generator = 'CC="$(CC)" $(PERL)'.$generator_incs.' '.$generator
1233                   .' "$(PERLASM_SCHEME)"'.$incs.' '.$cppflags.$defs.' $(PROCESSSOR)';
1234           } elsif ($args{generator}->[0] =~ /\.m4$/) {
1235               $generator = 'm4 -B 8192'.$generator_incs.' '.$generator.' >'
1236           } elsif ($args{generator}->[0] =~ /\.S$/) {
1237               $generator = undef;
1238           } else {
1239               die "Generator type for $args{src} unknown: $generator\n";
1240           }
1241
1242           if (defined($generator)) {
1243               return <<"EOF";
1244 $args{src}: $args{generator}->[0] $deps
1245         $generator \$@
1246 EOF
1247           }
1248           return <<"EOF";
1249 $args{src}: $args{generator}->[0] $deps
1250         \$(CC) $incs $cppflags $defs -E $args{generator}->[0] | \\
1251         \$(PERL) -ne '/^#(line)?\\s*[0-9]+/ or print' > \$@
1252 EOF
1253       }
1254   }
1255
1256   # Should one wonder about the end of the Perl snippet, it's because this
1257   # second regexp eats up line endings as well, if the removed path is the
1258   # last in the line.  We may therefore need to put back a line ending.
1259   sub src2obj {
1260       my %args = @_;
1261       my $obj = platform->convertext($args{obj});
1262       my $dep = platform->dep($args{obj});
1263       my @srcs = @{$args{srcs}};
1264       my $srcs = join(" ",  @srcs);
1265       my $deps = join(" ", @srcs, @{$args{deps}});
1266       my $incs = join("", map { " -I".$_ } @{$args{incs}});
1267       my $defs = join("", map { " -D".$_ } @{$args{defs}});
1268       my $cmd;
1269       my $cmdflags;
1270       my $cmdcompile;
1271       if (grep /\.rc$/, @srcs) {
1272           $cmd = '$(RC)';
1273           $cmdflags = '$(RCFLAGS)';
1274           $cmdcompile = '';
1275       } elsif (grep /\.(cc|cpp)$/, @srcs) {
1276           $cmd = '$(CXX)';
1277           $cmdcompile = ' -c';
1278           $cmdflags = {
1279               shlib => '$(LIB_CXXFLAGS) $(LIB_CPPFLAGS)',
1280               lib => '$(LIB_CXXFLAGS) $(LIB_CPPFLAGS)',
1281               dso => '$(DSO_CXXFLAGS) $(DSO_CPPFLAGS)',
1282               bin => '$(BIN_CXXFLAGS) $(BIN_CPPFLAGS)'
1283           } -> {$args{intent}};
1284       } else {
1285           $cmd = '$(CC)';
1286           $cmdcompile = ' -c';
1287           $cmdflags = {
1288               shlib => '$(LIB_CFLAGS) $(LIB_CPPFLAGS)',
1289               lib => '$(LIB_CFLAGS) $(LIB_CPPFLAGS)',
1290               dso => '$(DSO_CFLAGS) $(DSO_CPPFLAGS)',
1291               bin => '$(BIN_CFLAGS) $(BIN_CPPFLAGS)'
1292           } -> {$args{intent}};
1293       }
1294       my $recipe;
1295       # extension-specific rules
1296       if (grep /\.s$/, @srcs) {
1297           $recipe .= <<"EOF";
1298 $obj: $deps
1299         $cmd $cmdflags -c -o \$\@ $srcs
1300 EOF
1301       } elsif (grep /\.S$/, @srcs) {
1302           # Originally there was mutli-step rule with $(CC) -E file.S
1303           # followed by $(CC) -c file.s. It compensated for one of
1304           # legacy platform compiler's inability to handle .S files.
1305           # The platform is long discontinued by vendor so there is
1306           # hardly a point to drag it along...
1307           $recipe .= <<"EOF";
1308 $obj: $deps
1309         $cmd $incs $defs $cmdflags -c -o \$\@ $srcs
1310 EOF
1311       } elsif (defined $makedepprog && $makedepprog !~ /\/makedepend/
1312                && !grep /\.rc$/, @srcs) {
1313           $recipe .= <<"EOF";
1314 $obj: $deps
1315         $cmd $incs $defs $cmdflags -MMD -MF $dep.tmp -MT \$\@ -c -o \$\@ $srcs
1316         \@touch $dep.tmp
1317         \@if cmp $dep.tmp $dep > /dev/null 2> /dev/null; then \\
1318                 rm -f $dep.tmp; \\
1319         else \\
1320                 mv $dep.tmp $dep; \\
1321         fi
1322 EOF
1323       } else {
1324           $recipe .= <<"EOF";
1325 $obj: $deps
1326         $cmd $incs $defs $cmdflags $cmdcompile -o \$\@ $srcs
1327 EOF
1328           if (defined $makedepprog  && $makedepprog =~ /\/makedepend/) {
1329               $recipe .= <<"EOF";
1330         \$(MAKEDEPEND) -f- -Y -- $incs $cmdflags -- $srcs 2>/dev/null \\
1331             > $dep
1332 EOF
1333           }
1334       }
1335       return $recipe;
1336   }
1337   # We *know* this routine is only called when we've configure 'shared'.
1338   sub obj2shlib {
1339       my %args = @_;
1340       my @linkdirs = ();
1341       my @linklibs = ();
1342       foreach (@{$args{deps}}) {
1343           if (platform->isstaticlib($_)) {
1344               push @linklibs, platform->convertext($_);
1345           } else {
1346               my $d = "-L" . dirname($_);
1347               my $l = basename($_);
1348               $l =~ s/^lib//;
1349               $l = "-l" . $l;
1350               push @linklibs, $l;
1351               push @linkdirs, $d unless grep { $d eq $_ } @linkdirs;
1352           }
1353       }
1354       my $linkflags = join("", map { $_." " } @linkdirs);
1355       my $linklibs = join("", map { $_." " } @linklibs);
1356       my @objs = map { platform->convertext($_) }
1357                  grep { !platform->isdef($_) }
1358                  @{$args{objs}};
1359       my @defs = map { platform->def($_) }
1360                  grep { platform->isdef($_) }
1361                  @{$args{objs}};
1362       my @deps = compute_lib_depends(@{$args{deps}});
1363       die "More than one exported symbol map" if scalar @defs > 1;
1364
1365       my $simple = platform->sharedlib_simple($args{lib});
1366       my $full = platform->sharedlib($args{lib});
1367       my $shared_soname = "";
1368       $shared_soname .= ' '.$target{shared_sonameflag}.basename($full)
1369           if defined $target{shared_sonameflag};
1370       my $shared_imp = "";
1371       $shared_imp .= ' '.$target{shared_impflag}.basename($simple)
1372           if defined $target{shared_impflag};
1373       my $shared_def = join("", map { ' '.$target{shared_defflag}.$_ } @defs);
1374
1375       my $objs = join(" \\\n\t\t", fill_lines(' ', $COLUMNS - 16, @objs));
1376       my $deps = join(" \\\n" . ' ' x (length($full) + 2),
1377                       fill_lines(' ', $COLUMNS - length($full) - 2,
1378                                  @objs, @defs, @deps));
1379
1380       my $recipe = <<"EOF";
1381 $simple: $full
1382 EOF
1383       if (sharedaix()) {
1384           $recipe .= <<"EOF";
1385         rm -f $simple && \\
1386         \$(AR) r $simple $full
1387 EOF
1388       } elsif ($simple ne $full) {
1389           $recipe .= <<"EOF";
1390         rm -f $simple && \\
1391         ln -s $full $simple
1392 EOF
1393       }
1394       $recipe .= <<"EOF";
1395 $full: $deps
1396         \$(CC) \$(LIB_CFLAGS) $linkflags\$(LIB_LDFLAGS)$shared_soname$shared_imp \\
1397                 -o $full$shared_def \\
1398                 $objs \\
1399                 $linklibs \$(LIB_EX_LIBS)
1400 EOF
1401       if (windowsdll()) {
1402           $recipe .= <<"EOF";
1403         rm -f apps/$full
1404         rm -f test/$full
1405         rm -f fuzz/$full
1406         cp -p $full apps/
1407         cp -p $full test/
1408         cp -p $full fuzz/
1409 EOF
1410       }
1411       return $recipe;
1412   }
1413   sub obj2dso {
1414       my %args = @_;
1415       my $dso = platform->dso($args{module});
1416       my @linkdirs = ();
1417       my @linklibs = ();
1418       foreach (@{$args{deps}}) {
1419           next unless defined $_;
1420           if (platform->isstaticlib($_)) {
1421               push @linklibs, platform->convertext($_);
1422           } else {
1423               my $d = "-L" . dirname($_);
1424               my $l = basename($_);
1425               $l =~ s/^lib//;
1426               $l = "-l" . $l;
1427               push @linklibs, $l;
1428               push @linkdirs, $d unless grep { $d eq $_ } @linkdirs;
1429           }
1430       }
1431       my $linkflags = join("", map { $_." " } @linkdirs);
1432       my $linklibs = join("", map { $_." " } @linklibs);
1433       my @objs = map { platform->convertext($_) }
1434                  grep { !platform->isdef($_) }
1435                  @{$args{objs}};
1436       my @defs = map { platform->def($_) }
1437                  grep { platform->isdef($_) }
1438                  @{$args{objs}};
1439       my @deps = compute_lib_depends(@{$args{deps}});
1440       my $shared_def = join("", map { ' '.$target{shared_defflag}.$_ } @defs);
1441
1442       my $objs = join(" \\\n\t\t", fill_lines(' ', $COLUMNS - 16, @objs));
1443       my $deps = join(" \\\n" . ' ' x (length($dso) + 2),
1444                       fill_lines(' ', $COLUMNS - length($dso) - 2,
1445                                  @objs, @defs, @deps));
1446
1447       return <<"EOF";
1448 $dso: $deps
1449         \$(CC) \$(DSO_CFLAGS) $linkflags\$(DSO_LDFLAGS) \\
1450                 -o $dso$shared_def \\
1451                 $objs \\
1452                 $linklibs\$(DSO_EX_LIBS)
1453 EOF
1454   }
1455   sub obj2lib {
1456       my %args = @_;
1457       my $lib = platform->staticlib($args{lib});
1458       my @objs = map { platform->obj($_) } @{$args{objs}};
1459       my $objs = join(" \\\n" . ' ' x (length($lib) + 2),
1460                       fill_lines(' ', $COLUMNS - length($lib) - 2, @objs));
1461       return <<"EOF";
1462 $lib: $objs
1463         \$(AR) \$(ARFLAGS) \$\@ \$\?
1464         \$(RANLIB) \$\@ || echo Never mind.
1465 EOF
1466   }
1467   sub obj2bin {
1468       my %args = @_;
1469       my $bin = platform->bin($args{bin});
1470       my @objs = map { platform->obj($_) } @{$args{objs}};
1471       my @deps = compute_lib_depends(@{$args{deps}});
1472       my $objs = join(" \\\n" . ' ' x (length($bin) + 2),
1473                       fill_lines(' ', $COLUMNS - length($bin) - 2, @objs));
1474       my @linkdirs = ();
1475       my @linklibs = ();
1476       foreach (@{$args{deps}}) {
1477           next unless defined $_;
1478           if (platform->isstaticlib($_)) {
1479               push @linklibs, platform->convertext($_);
1480           } else {
1481               my $d = "-L" . dirname($_);
1482               my $l = basename($_);
1483               $l =~ s/^lib//;
1484               $l = "-l" . $l;
1485               push @linklibs, $l;
1486               push @linkdirs, $d unless grep { $d eq $_ } @linkdirs;
1487           }
1488       }
1489       my $linkflags = join("", map { $_." " } @linkdirs);
1490       my $linklibs = join("", map { $_." " } @linklibs);
1491       my $cmd = '$(CC)';
1492       my $cmdflags = '$(BIN_CFLAGS)';
1493       if (grep /_cc\.o$/, @{$args{objs}}) {
1494           $cmd = '$(CXX)';
1495           $cmdflags = '$(BIN_CXXFLAGS)';
1496       }
1497
1498       my $objs = join(" \\\n\t\t", fill_lines(' ', $COLUMNS - 16, @objs));
1499       my $deps = join(" \\\n" . ' ' x (length($bin) + 2),
1500                       fill_lines(' ', $COLUMNS - length($bin) - 2,
1501                                  @objs, @deps));
1502
1503       return <<"EOF";
1504 $bin: $deps
1505         rm -f $bin
1506         \$\${LDCMD:-$cmd} $cmdflags $linkflags\$(BIN_LDFLAGS) \\
1507                 -o $bin \\
1508                 $objs \\
1509                 $linklibs\$(BIN_EX_LIBS)
1510 EOF
1511   }
1512   sub in2script {
1513       my %args = @_;
1514       my $script = $args{script};
1515       my $sources = join(" ", @{$args{sources}});
1516       my $dofile = abs2rel(rel2abs(catfile($config{sourcedir},
1517                                            "util", "dofile.pl")),
1518                            rel2abs($config{builddir}));
1519       return <<"EOF";
1520 $script: $sources
1521         \$(PERL) "-I\$(BLDDIR)" -Mconfigdata "$dofile" \\
1522             "-o$target{build_file}" $sources > "$script"
1523         chmod a+x $script
1524 EOF
1525   }
1526   sub generatedir {
1527       my %args = @_;
1528       my $dir = $args{dir};
1529       my @deps = map { platform->convertext($_) } @{$args{deps}};
1530       my @comments = ();
1531       my %extinfo = ( dso => platform->dsoext(),
1532                       lib => platform->libext(),
1533                       bin => platform->binext() );
1534
1535       # We already have a 'test' target, and the top directory is just plain
1536       # silly
1537       return if $dir eq "test" || $dir eq ".";
1538
1539       foreach my $type (("dso", "lib", "bin", "script")) {
1540           next unless defined($unified_info{dirinfo}->{$dir}->{products}->{$type});
1541           # For lib object files, we could update the library.  However, it
1542           # was decided that it's enough to build the directory local object
1543           # files, so we don't need to add any actions, and the dependencies
1544           # are already taken care of.
1545           if ($type ne "lib") {
1546               foreach my $prod (@{$unified_info{dirinfo}->{$dir}->{products}->{$type}}) {
1547                   if (dirname($prod) eq $dir) {
1548                       push @deps, $prod.$extinfo{$type};
1549                   } else {
1550                       push @comments, "# No support to produce $type ".join(", ", @{$unified_info{dirinfo}->{$dir}->{products}->{$type}});
1551                   }
1552               }
1553           }
1554       }
1555
1556       my $target = "$dir $dir/";
1557       my $deps = join(" \\\n\t",
1558                       fill_lines(' ', $COLUMNS - 8, @deps));
1559       my $comments = join("\n", "", @comments);
1560       return <<"EOF";
1561 $target: \\
1562         $deps$comments
1563 EOF
1564   }
1565   ""    # Important!  This becomes part of the template result.
1566 -}