42da98dd48f05596c596861d78405b0c87f00a14
[openssl.git] / Configurations / unix-Makefile.tmpl
1 ##
2 ## Makefile for OpenSSL
3 ##
4 ## {- join("\n## ", @autowarntext) -}
5 {-
6      our $objext = $target{obj_extension} || ".o";
7      our $depext = $target{dep_extension} || ".d";
8      our $exeext = $target{exe_extension} || "";
9      our $libext = $target{lib_extension} || ".a";
10      our $shlibext = $target{shared_extension} || ".so";
11      our $shlibvariant = $target{shlib_variant} || "";
12      our $shlibextsimple = $target{shared_extension_simple} || ".so";
13      our $shlibextimport = $target{shared_import_extension} || "";
14      our $dsoext = $target{dso_extension} || ".so";
15      our $makedepprog = $disabled{makedepend} ? undef : $config{makedepprog};
16
17      sub windowsdll { $config{target} =~ /^(?:Cygwin|mingw)/ }
18
19      our $sover_dirname = $config{shlib_version_number};
20      $sover_dirname =~ s|\.|_|g
21          if $config{target} =~ /^mingw/;
22
23      # shlib and shlib_simple both take a static library name and figure
24      # out what the shlib name should be.
25      #
26      # When OpenSSL is configured "no-shared", these functions will just
27      # return empty lists, making them suitable to join().
28      #
29      # With Windows DLL producers, shlib($libname) will return the shared
30      # library name (which usually is different from the static library
31      # name) with the default shared extension appended to it, while
32      # shlib_simple($libname) will return the static library name with
33      # the shared extension followed by ".a" appended to it.  The former
34      # result is used as the runtime shared library while the latter is
35      # used as the DLL import library.
36      #
37      # On all Unix systems, shlib($libname) will return the library name
38      # with the default shared extension, while shlib_simple($libname)
39      # will return the name from shlib($libname) with any SO version number
40      # removed.  On some systems, they may therefore return the exact same
41      # string.
42      sub shlib {
43          my $lib = shift;
44          return () if $disabled{shared} || $lib =~ /\.a$/;
45          return $unified_info{sharednames}->{$lib}. $shlibvariant. '$(SHLIB_EXT)';
46      }
47      sub shlib_simple {
48          my $lib = shift;
49          return () if $disabled{shared} || $lib =~ /\.a$/;
50
51          if (windowsdll()) {
52              return $lib . '$(SHLIB_EXT_IMPORT)';
53          }
54          return $lib .  '$(SHLIB_EXT_SIMPLE)';
55      }
56
57      # Easy fixing of static library names
58      sub lib {
59          (my $lib = shift) =~ s/\.a$//;
60          return $lib . $libext;
61      }
62
63      # dso is a complement to shlib / shlib_simple that returns the
64      # given libname with the simple shared extension (possible SO version
65      # removed).  This differs from shlib_simple() by being unconditional.
66      sub dso {
67          my $engine = shift;
68
69          return $engine . $dsoext;
70      }
71      # This makes sure things get built in the order they need
72      # to. You're welcome.
73      sub dependmagic {
74          my $target = shift;
75
76          return "$target: build_generated\n\t\$(MAKE) depend && \$(MAKE) _$target\n_$target";
77      }
78      '';
79 -}
80 PLATFORM={- $config{target} -}
81 OPTIONS={- $config{options} -}
82 CONFIGURE_ARGS=({- join(", ",quotify_l(@{$config{perlargv}})) -})
83 SRCDIR={- $config{sourcedir} -}
84 BLDDIR={- $config{builddir} -}
85
86 VERSION={- $config{version} -}
87 MAJOR={- $config{major} -}
88 MINOR={- $config{minor} -}
89 SHLIB_VERSION_NUMBER={- $config{shlib_version_number} -}
90 SHLIB_VERSION_HISTORY={- $config{shlib_version_history} -}
91 SHLIB_MAJOR={- $config{shlib_major} -}
92 SHLIB_MINOR={- $config{shlib_minor} -}
93 SHLIB_TARGET={- $target{shared_target} -}
94 SHLIB_EXT={- $shlibext -}
95 SHLIB_EXT_SIMPLE={- $shlibextsimple -}
96 SHLIB_EXT_IMPORT={- $shlibextimport -}
97
98 LIBS={- join(" ", map { lib($_) } @{$unified_info{libraries}}) -}
99 SHLIBS={- join(" ", map { shlib($_) } @{$unified_info{libraries}}) -}
100 SHLIB_INFO={- join(" ", map { "\"".shlib($_).";".shlib_simple($_)."\"" } @{$unified_info{libraries}}) -}
101 ENGINES={- join(" ", map { dso($_) } @{$unified_info{engines}}) -}
102 PROGRAMS={- join(" ", map { $_.$exeext } @{$unified_info{programs}}) -}
103 SCRIPTS={- join(" ", @{$unified_info{scripts}}) -}
104 {- output_off() if $disabled{makedepend}; "" -}
105 DEPS={- join(" ", map { (my $x = $_) =~ s|\.o$|$depext|; $x; }
106                   grep { $unified_info{sources}->{$_}->[0] =~ /\.c$/ }
107                   keys %{$unified_info{sources}}); -}
108 {- output_on() if $disabled{makedepend}; "" -}
109 GENERATED_MANDATORY={- join(" ", @{$unified_info{depends}->{""}}) -}
110 GENERATED={- # common0.tmpl provides @generated
111              join(" ", @generated ) -}
112
113 INSTALL_LIBS={- join(" ", map { lib($_) } @{$unified_info{install}->{libraries}}) -}
114 INSTALL_SHLIBS={- join(" ", map { shlib($_) } @{$unified_info{install}->{libraries}}) -}
115 INSTALL_SHLIB_INFO={- join(" ", map { "\"".shlib($_).";".shlib_simple($_)."\"" } @{$unified_info{install}->{libraries}}) -}
116 INSTALL_ENGINES={- join(" ", map { dso($_) } @{$unified_info{install}->{engines}}) -}
117 INSTALL_PROGRAMS={- join(" ", map { $_.$exeext } @{$unified_info{install}->{programs}}) -}
118 {- output_off() if $disabled{apps}; "" -}
119 BIN_SCRIPTS=$(BLDDIR)/tools/c_rehash
120 MISC_SCRIPTS=$(BLDDIR)/apps/CA.pl $(BLDDIR)/apps/tsget
121 {- output_on() if $disabled{apps}; "" -}
122
123 APPS_OPENSSL={- use File::Spec::Functions;
124                 catfile("apps","openssl") -}
125
126 # DESTDIR is for package builders so that they can configure for, say,
127 # /usr/ and yet have everything installed to /tmp/somedir/usr/.
128 # Normally it is left empty.
129 DESTDIR=
130
131 # Do not edit these manually. Use Configure with --prefix or --openssldir
132 # to change this!  Short explanation in the top comment in Configure
133 INSTALLTOP={- # $prefix is used in the OPENSSLDIR perl snippet
134               #
135               our $prefix = $config{prefix} || "/usr/local";
136               $prefix -}
137 OPENSSLDIR={- #
138               # The logic here is that if no --openssldir was given,
139               # OPENSSLDIR will get the value from $prefix plus "/ssl".
140               # If --openssldir was given and the value is an absolute
141               # path, OPENSSLDIR will get its value without change.
142               # If the value from --openssldir is a relative path,
143               # OPENSSLDIR will get $prefix with the --openssldir
144               # value appended as a subdirectory.
145               #
146               use File::Spec::Functions;
147               our $openssldir =
148                   $config{openssldir} ?
149                       (file_name_is_absolute($config{openssldir}) ?
150                            $config{openssldir}
151                            : catdir($prefix, $config{openssldir}))
152                       : catdir($prefix, "ssl");
153               $openssldir -}
154 LIBDIR={- our $libdir = $config{libdir};
155           unless ($libdir) {
156               #
157               # if $prefix/lib$target{multilib} is not an existing
158               # directory, then assume that it's not searched by linker
159               # automatically, in which case adding $target{multilib} suffix
160               # causes more grief than we're ready to tolerate, so don't...
161               our $multilib =
162                   -d "$prefix/lib$target{multilib}" ? $target{multilib} : "";
163               $libdir = "lib$multilib";
164           }
165           file_name_is_absolute($libdir) ? "" : $libdir -}
166 # $(libdir) is chosen to be compatible with the GNU coding standards
167 libdir={- file_name_is_absolute($libdir)
168           ? $libdir : '$(INSTALLTOP)/$(LIBDIR)' -}
169 ENGINESDIR=$(libdir)/engines-{- $sover_dirname -}
170
171 # Convenience variable for those who want to set the rpath in shared
172 # libraries and applications
173 LIBRPATH=$(libdir)
174
175 MANDIR=$(INSTALLTOP)/share/man
176 DOCDIR=$(INSTALLTOP)/share/doc/$(BASENAME)
177 HTMLDIR=$(DOCDIR)/html
178
179 # MANSUFFIX is for the benefit of anyone who may want to have a suffix
180 # appended after the manpage file section number.  "ssl" is popular,
181 # resulting in files such as config.5ssl rather than config.5.
182 MANSUFFIX=
183 HTMLSUFFIX=html
184
185 # For "optional" echo messages, to get "real" silence
186 ECHO = echo
187
188 ##### User defined commands and flags ################################
189
190 # We let the C compiler driver to take care of .s files. This is done in
191 # order to be excused from maintaining a separate set of architecture
192 # dependent assembler flags. E.g. if you throw -mcpu=ultrasparc at SPARC
193 # gcc, then the driver will automatically translate it to -xarch=v8plus
194 # and pass it down to assembler.  In any case, we do not define AS or
195 # ASFLAGS for this reason.
196
197 CROSS_COMPILE={- $config{CROSS_COMPILE} -}
198 CC=$(CROSS_COMPILE){- $config{CC} -}
199 CXX={- $config{CXX} ? "\$(CROSS_COMPILE)$config{CXX}" : '' -}
200 CPPFLAGS={- our $cppflags1 = join(" ",
201                                   (map { "-D".$_} @{$config{CPPDEFINES}}),
202                                   (map { "-I".$_} @{$config{CPPINCLUDES}}),
203                                   @{$config{CPPFLAGS}}) -}
204 CFLAGS={- join(' ', @{$config{CFLAGS}}) -}
205 CXXFLAGS={- join(' ', @{$config{CXXFLAGS}}) -}
206 LDFLAGS= {- join(' ', @{$config{LDFLAGS}}) -}
207 EX_LIBS= {- join(' ', @{$config{LDLIBS}}) -}
208
209 MAKEDEPEND={- $config{makedepprog} -}
210
211 PERL={- $config{perl} -}
212
213 AR=$(CROSS_COMPILE){- $config{AR} -}
214 ARFLAGS= {- join(' ', @{$config{ARFLAGS}}) -}
215 RANLIB={- $config{RANLIB} ? "\$(CROSS_COMPILE)$config{RANLIB}" : "true"; -}
216 RC= $(CROSS_COMPILE){- $config{RC} -}
217 RCFLAGS={- join(' ', @{$config{RCFLAGS}}) -} {- $target{shared_rcflag} -}
218
219 RM= rm -f
220 RMDIR= rmdir
221 TAR= {- $target{TAR} || "tar" -}
222 TARFLAGS= {- $target{TARFLAGS} -}
223
224 BASENAME=       openssl
225 NAME=           $(BASENAME)-$(VERSION)
226 TARFILE=        ../$(NAME).tar
227
228 ##### Project flags ##################################################
229
230 # Variables starting with CNF_ are common variables for all product types
231
232 CNF_CPPFLAGS={- our $cppflags2 =
233                     join(' ', $target{cppflags} || (),
234                               (map { "-D".$_} @{$target{defines}},
235                                               @{$config{defines}}),
236                               (map { "-I".$_} @{$target{includes}},
237                                               @{$config{includes}}),
238                               @{$config{cppflags}}) -}
239 CNF_CFLAGS={- join(' ', $target{cflags} || (),
240                         @{$config{cflags}}) -}
241 CNF_CXXFLAGS={- join(' ', $target{cxxflags} || (),
242                           @{$config{cxxflags}}) -}
243 CNF_LDFLAGS={- join(' ', $target{lflags} || (),
244                          @{$config{lflags}}) -}
245 CNF_EX_LIBS={- join(' ', $target{ex_libs} || (),
246                          @{$config{ex_libs}}) -}
247
248 # Variables starting with LIB_ are used to build library object files
249 # and shared libraries.
250 # Variables starting with DSO_ are used to build DSOs and their object files.
251 # Variables starting with BIN_ are used to build programs and their object
252 # files.
253
254 LIB_CPPFLAGS={- our $lib_cppflags =
255                 join(' ', $target{lib_cppflags} || (),
256                           $target{shared_cppflag} || (),
257                           (map { '-D'.$_ }
258                                @{$config{lib_defines}},
259                                @{$config{shared_defines}}),
260                           @{$config{lib_cppflags}},
261                           @{$config{shared_cppflag}});
262                 join(' ', $lib_cppflags,
263                           (map { '-D'.$_ }
264                                'OPENSSLDIR="\"$(OPENSSLDIR)\""',
265                                'ENGINESDIR="\"$(ENGINESDIR)\""'),
266                           '$(CNF_CPPFLAGS)', '$(CPPFLAGS)') -}
267 LIB_CFLAGS={- join(' ', $target{lib_cflags} || (),
268                         $target{shared_cflag} || (),
269                         @{$config{lib_cflags}},
270                         @{$config{shared_cflag}},
271                         '$(CNF_CFLAGS)', '$(CFLAGS)') -}
272 LIB_CXXFLAGS={- join(' ', $target{lib_cxxflags} || (),
273                           $target{shared_cxxflag} || (),
274                           @{$config{lib_cxxflags}},
275                           @{$config{shared_cxxflag}},
276                           '$(CNF_CXXFLAGS)', '$(CXXFLAGS)') -}
277 LIB_LDFLAGS={- join(' ', $target{shared_ldflag} || (),
278                          $config{shared_ldflag} || (),
279                          '$(CNF_LDFLAGS)', '$(LDFLAGS)') -}
280 LIB_EX_LIBS=$(CNF_EX_LIBS) $(EX_LIBS)
281 DSO_CPPFLAGS={- join(' ', $target{dso_cppflags} || (),
282                           $target{module_cppflags} || (),
283                           @{$config{dso_cppflags}},
284                           @{$config{module_cppflags}},
285                           '$(CNF_CPPFLAGS)', '$(CPPFLAGS)') -}
286 DSO_CFLAGS={- join(' ', $target{dso_cflags} || (),
287                         $target{module_cflags} || (),
288                         @{$config{dso_cflags}},
289                         @{$config{module_cflags}},
290                         '$(CNF_CFLAGS)', '$(CFLAGS)') -}
291 DSO_CXXFLAGS={- join(' ', $target{dso_cxxflags} || (),
292                           $target{module_cxxflags} || (),
293                           @{$config{dso_cxxflags}},
294                           @{$config{module_cxxflag}},
295                           '$(CNF_CXXFLAGS)', '$(CXXFLAGS)') -}
296 DSO_LDFLAGS={- join(' ', $target{dso_ldflags} || (),
297                          $target{module_ldflags} || (),
298                          @{$config{dso_ldflags}},
299                          @{$config{module_ldflags}},
300                          '$(CNF_LDFLAGS)', '$(LDFLAGS)') -}
301 DSO_EX_LIBS=$(CNF_EX_LIBS) $(EX_LIBS)
302 BIN_CPPFLAGS={- join(' ', $target{bin_cppflags} || (),
303                           @{$config{bin_cppflags}},
304                           '$(CNF_CPPFLAGS)', '$(CPPFLAGS)') -}
305 BIN_CFLAGS={- join(' ', $target{bin_cflags} || (),
306                         @{$config{bin_cflags}},
307                         '$(CNF_CFLAGS)', '$(CFLAGS)') -}
308 BIN_CXXFLAGS={- join(' ', $target{bin_cxxflags} || (),
309                           @{$config{bin_cxxflags}},
310                           '$(CNF_CXXFLAGS)', '$(CXXFLAGS)') -}
311 BIN_LDFLAGS={- join(' ', $target{bin_lflags} || (),
312                          @{$config{bin_lflags}},
313                          '$(CNF_LDFLAGS)', '$(LDFLAGS)') -}
314 BIN_EX_LIBS=$(CNF_EX_LIBS) $(EX_LIBS)
315
316 # CPPFLAGS_Q is used for one thing only: to build up buildinf.h
317 CPPFLAGS_Q={- $cppflags1 =~ s|([\\"])|\\$1|g;
318               $cppflags2 =~ s|([\\"])|\\$1|g;
319               $lib_cppflags =~ s|([\\"])|\\$1|g;
320               join(' ', $lib_cppflags || (), $cppflags2 || (),
321                         $cppflags1 || ()) -}
322
323 PERLASM_SCHEME= {- $target{perlasm_scheme} -}
324
325 # For x86 assembler: Set PROCESSOR to 386 if you want to support
326 # the 80386.
327 PROCESSOR= {- $config{processor} -}
328
329 # We want error [and other] messages in English. Trouble is that make(1)
330 # doesn't pass macros down as environment variables unless there already
331 # was corresponding variable originally set. In other words we can only
332 # reassign environment variables, but not set new ones, not in portable
333 # manner that is. That's why we reassign several, just to be sure...
334 LC_ALL=C
335 LC_MESSAGES=C
336 LANG=C
337
338 # The main targets ###################################################
339
340 {- dependmagic('all'); -}: build_libs_nodep build_engines_nodep build_programs_nodep link-utils
341 {- dependmagic('build_libs'); -}: build_libs_nodep
342 {- dependmagic('build_engines'); -}: build_engines_nodep
343 {- dependmagic('build_programs'); -}: build_programs_nodep
344
345 build_generated: $(GENERATED_MANDATORY)
346 build_libs_nodep: libcrypto.pc libssl.pc openssl.pc
347 build_engines_nodep: $(ENGINES)
348 build_programs_nodep: $(PROGRAMS) $(SCRIPTS)
349
350 # Kept around for backward compatibility
351 build_apps build_tests: build_programs
352
353 # Convenience target to prebuild all generated files, not just the mandatory
354 # ones
355 build_all_generated: $(GENERATED_MANDATORY) $(GENERATED)
356         @ : {- output_off() if $disabled{makedepend}; "" -}
357         @echo "Warning: consider configuring with no-makedepend, because if"
358         @echo "         target system doesn't have $(PERL),"
359         @echo "         then make will fail..."
360         @ : {- output_on() if $disabled{makedepend}; "" -}
361
362 test: tests
363 {- dependmagic('tests'); -}: build_programs_nodep build_engines_nodep link-utils
364         @ : {- output_off() if $disabled{tests}; "" -}
365         ( cd test; \
366           mkdir -p test-runs; \
367           SRCTOP=../$(SRCDIR) \
368           BLDTOP=../$(BLDDIR) \
369           RESULT_D=test-runs \
370           PERL="$(PERL)" \
371           EXE_EXT={- $exeext -} \
372           OPENSSL_ENGINES=`cd ../$(BLDDIR)/engines 2>/dev/null && pwd` \
373           OPENSSL_DEBUG_MEMORY=on \
374             $(PERL) ../$(SRCDIR)/test/run_tests.pl $(TESTS) )
375         @ : {- if ($disabled{tests}) { output_on(); } else { output_off(); } "" -}
376         @echo "Tests are not supported with your chosen Configure options"
377         @ : {- output_on() if !$disabled{tests}; "" -}
378
379 list-tests:
380         @ : {- output_off() if $disabled{tests}; "" -}
381         @SRCTOP="$(SRCDIR)" \
382          $(PERL) $(SRCDIR)/test/run_tests.pl list
383         @ : {- if ($disabled{tests}) { output_on(); } else { output_off(); } "" -}
384         @echo "Tests are not supported with your chosen Configure options"
385         @ : {- output_on() if !$disabled{tests}; "" -}
386
387 install: install_sw install_ssldirs install_docs
388
389 uninstall: uninstall_docs uninstall_sw
390
391 libclean:
392         @set -e; for s in $(SHLIB_INFO); do \
393                 if [ "$$s" = ";" ]; then continue; fi; \
394                 s1=`echo "$$s" | cut -f1 -d";"`; \
395                 s2=`echo "$$s" | cut -f2 -d";"`; \
396                 $(ECHO) $(RM) $$s1; {- output_off() unless windowsdll(); "" -}\
397                 $(RM) apps/$$s1; \
398                 $(RM) test/$$s1; \
399                 $(RM) fuzz/$$s1; {- output_on() unless windowsdll(); "" -}\
400                 $(RM) $$s1; \
401                 if [ "$$s1" != "$$s2" ]; then \
402                         $(ECHO) $(RM) $$s2; \
403                         $(RM) $$s2; \
404                 fi; \
405         done
406         $(RM) $(LIBS)
407         $(RM) *.map
408
409 clean: libclean
410         $(RM) $(PROGRAMS) $(TESTPROGS) $(ENGINES) $(SCRIPTS)
411         $(RM) $(GENERATED_MANDATORY) $(GENERATED)
412         -$(RM) `find . -name '*{- $depext -}' -a \! -path "./.git/*"`
413         -$(RM) `find . -name '*{- $objext -}' -a \! -path "./.git/*"`
414         $(RM) core
415         $(RM) tags TAGS doc-nits
416         $(RM) -r test/test-runs
417         $(RM) openssl.pc libcrypto.pc libssl.pc
418         -$(RM) `find . -type l -a \! -path "./.git/*"`
419         $(RM) $(TARFILE)
420
421 distclean: clean
422         $(RM) configdata.pm
423         $(RM) Makefile
424
425 # We check if any depfile is newer than Makefile and decide to
426 # concatenate only if that is true.
427 depend:
428         @: {- output_off() if $disabled{makedepend}; "" -}
429         @$(PERL) $(SRCDIR)/util/add-depends.pl {-
430                  defined $makedepprog  && $makedepprog =~ /\/makedepend/
431                  ? 'makedepend' : 'gcc' -}
432         @: {- output_on() if $disabled{makedepend}; "" -}
433
434 # Install helper targets #############################################
435
436 install_sw: all install_dev install_engines install_runtime
437
438 uninstall_sw: uninstall_runtime uninstall_engines uninstall_dev
439
440 install_docs: install_man_docs install_html_docs
441
442 uninstall_docs: uninstall_man_docs uninstall_html_docs
443         $(RM) -r -v $(DESTDIR)$(DOCDIR)
444
445 install_ssldirs:
446         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(OPENSSLDIR)/certs
447         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(OPENSSLDIR)/private
448         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(OPENSSLDIR)/misc
449         @set -e; for x in dummy $(MISC_SCRIPTS); do \
450                 if [ "$$x" = "dummy" ]; then continue; fi; \
451                 fn=`basename $$x`; \
452                 $(ECHO) "install $$x -> $(DESTDIR)$(OPENSSLDIR)/misc/$$fn"; \
453                 cp $$x $(DESTDIR)$(OPENSSLDIR)/misc/$$fn.new; \
454                 chmod 755 $(DESTDIR)$(OPENSSLDIR)/misc/$$fn.new; \
455                 mv -f $(DESTDIR)$(OPENSSLDIR)/misc/$$fn.new \
456                       $(DESTDIR)$(OPENSSLDIR)/misc/$$fn; \
457         done
458         @$(ECHO) "install $(SRCDIR)/apps/openssl.cnf -> $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.dist"
459         @cp $(SRCDIR)/apps/openssl.cnf $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.new
460         @chmod 644 $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.new
461         @mv -f  $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.new $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.dist
462         @if [ ! -f "$(DESTDIR)$(OPENSSLDIR)/openssl.cnf" ]; then \
463                 $(ECHO) "install $(SRCDIR)/apps/openssl.cnf -> $(DESTDIR)$(OPENSSLDIR)/openssl.cnf"; \
464                 cp $(SRCDIR)/apps/openssl.cnf $(DESTDIR)$(OPENSSLDIR)/openssl.cnf; \
465                 chmod 644 $(DESTDIR)$(OPENSSLDIR)/openssl.cnf; \
466         fi
467         @$(ECHO) "install $(SRCDIR)/apps/ct_log_list.cnf -> $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.dist"
468         @cp $(SRCDIR)/apps/ct_log_list.cnf $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.new
469         @chmod 644 $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.new
470         @mv -f  $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.new $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.dist
471         @if [ ! -f "$(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf" ]; then \
472                 $(ECHO) "install $(SRCDIR)/apps/ct_log_list.cnf -> $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf"; \
473                 cp $(SRCDIR)/apps/ct_log_list.cnf $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf; \
474                 chmod 644 $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf; \
475         fi
476
477 install_dev:
478         @[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
479         @$(ECHO) "*** Installing development files"
480         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(INSTALLTOP)/include/openssl
481         @ : {- output_off() unless grep { $_ eq "OPENSSL_USE_APPLINK" } @{$target{defines}}; "" -}
482         @$(ECHO) "install $(SRCDIR)/ms/applink.c -> $(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c"
483         @cp $(SRCDIR)/ms/applink.c $(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c
484         @chmod 644 $(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c
485         @ : {- output_on() unless grep { $_ eq "OPENSSL_USE_APPLINK" } @{$target{defines}}; "" -}
486         @set -e; for i in $(SRCDIR)/include/openssl/*.h \
487                           $(BLDDIR)/include/openssl/*.h; do \
488                 fn=`basename $$i`; \
489                 $(ECHO) "install $$i -> $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn"; \
490                 cp $$i $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn; \
491                 chmod 644 $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn; \
492         done
493         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(libdir)
494         @set -e; for l in $(INSTALL_LIBS); do \
495                 fn=`basename $$l`; \
496                 $(ECHO) "install $$l -> $(DESTDIR)$(libdir)/$$fn"; \
497                 cp $$l $(DESTDIR)$(libdir)/$$fn.new; \
498                 $(RANLIB) $(DESTDIR)$(libdir)/$$fn.new; \
499                 chmod 644 $(DESTDIR)$(libdir)/$$fn.new; \
500                 mv -f $(DESTDIR)$(libdir)/$$fn.new \
501                       $(DESTDIR)$(libdir)/$$fn; \
502         done
503         @ : {- output_off() if $disabled{shared}; "" -}
504         @set -e; for s in $(INSTALL_SHLIB_INFO); do \
505                 s1=`echo "$$s" | cut -f1 -d";"`; \
506                 s2=`echo "$$s" | cut -f2 -d";"`; \
507                 fn1=`basename $$s1`; \
508                 fn2=`basename $$s2`; \
509                 : {- output_off() if windowsdll(); "" -}; \
510                 $(ECHO) "install $$s1 -> $(DESTDIR)$(libdir)/$$fn1"; \
511                 cp $$s1 $(DESTDIR)$(libdir)/$$fn1.new; \
512                 chmod 755 $(DESTDIR)$(libdir)/$$fn1.new; \
513                 mv -f $(DESTDIR)$(libdir)/$$fn1.new \
514                       $(DESTDIR)$(libdir)/$$fn1; \
515                 if [ "$$fn1" != "$$fn2" ]; then \
516                         $(ECHO) "link $(DESTDIR)$(libdir)/$$fn2 -> $(DESTDIR)$(libdir)/$$fn1"; \
517                         ln -sf $$fn1 $(DESTDIR)$(libdir)/$$fn2; \
518                 fi; \
519                 : {- output_on() if windowsdll(); "" -}{- output_off() unless windowsdll(); "" -}; \
520                 $(ECHO) "install $$s2 -> $(DESTDIR)$(libdir)/$$fn2"; \
521                 cp $$s2 $(DESTDIR)$(libdir)/$$fn2.new; \
522                 chmod 755 $(DESTDIR)$(libdir)/$$fn2.new; \
523                 mv -f $(DESTDIR)$(libdir)/$$fn2.new \
524                       $(DESTDIR)$(libdir)/$$fn2; \
525                 : {- output_on() unless windowsdll(); "" -}; \
526         done
527         @ : {- output_on() if $disabled{shared}; "" -}
528         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(libdir)/pkgconfig
529         @$(ECHO) "install libcrypto.pc -> $(DESTDIR)$(libdir)/pkgconfig/libcrypto.pc"
530         @cp libcrypto.pc $(DESTDIR)$(libdir)/pkgconfig
531         @chmod 644 $(DESTDIR)$(libdir)/pkgconfig/libcrypto.pc
532         @$(ECHO) "install libssl.pc -> $(DESTDIR)$(libdir)/pkgconfig/libssl.pc"
533         @cp libssl.pc $(DESTDIR)$(libdir)/pkgconfig
534         @chmod 644 $(DESTDIR)$(libdir)/pkgconfig/libssl.pc
535         @$(ECHO) "install openssl.pc -> $(DESTDIR)$(libdir)/pkgconfig/openssl.pc"
536         @cp openssl.pc $(DESTDIR)$(libdir)/pkgconfig
537         @chmod 644 $(DESTDIR)$(libdir)/pkgconfig/openssl.pc
538
539 uninstall_dev:
540         @$(ECHO) "*** Uninstalling development files"
541         @ : {- output_off() unless grep { $_ eq "OPENSSL_USE_APPLINK" } @{$target{defines}}; "" -}
542         @$(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c"
543         @$(RM) $(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c
544         @ : {- output_on() unless grep { $_ eq "OPENSSL_USE_APPLINK" } @{$target{defines}}; "" -}
545         @set -e; for i in $(SRCDIR)/include/openssl/*.h \
546                           $(BLDDIR)/include/openssl/*.h; do \
547                 fn=`basename $$i`; \
548                 $(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn"; \
549                 $(RM) $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn; \
550         done
551         -$(RMDIR) $(DESTDIR)$(INSTALLTOP)/include/openssl
552         -$(RMDIR) $(DESTDIR)$(INSTALLTOP)/include
553         @set -e; for l in $(INSTALL_LIBS); do \
554                 fn=`basename $$l`; \
555                 $(ECHO) "$(RM) $(DESTDIR)$(libdir)/$$fn"; \
556                 $(RM) $(DESTDIR)$(libdir)/$$fn; \
557         done
558         @ : {- output_off() if $disabled{shared}; "" -}
559         @set -e; for s in $(INSTALL_SHLIB_INFO); do \
560                 s1=`echo "$$s" | cut -f1 -d";"`; \
561                 s2=`echo "$$s" | cut -f2 -d";"`; \
562                 fn1=`basename $$s1`; \
563                 fn2=`basename $$s2`; \
564                 : {- output_off() if windowsdll(); "" -}; \
565                 $(ECHO) "$(RM) $(DESTDIR)$(libdir)/$$fn1"; \
566                 $(RM) $(DESTDIR)$(libdir)/$$fn1; \
567                 if [ "$$fn1" != "$$fn2" ]; then \
568                         $(ECHO) "$(RM) $(DESTDIR)$(libdir)/$$fn2"; \
569                         $(RM) $(DESTDIR)$(libdir)/$$fn2; \
570                 fi; \
571                 : {- output_on() if windowsdll(); "" -}{- output_off() unless windowsdll(); "" -}; \
572                 $(ECHO) "$(RM) $(DESTDIR)$(libdir)/$$fn2"; \
573                 $(RM) $(DESTDIR)$(libdir)/$$fn2; \
574                 : {- output_on() unless windowsdll(); "" -}; \
575         done
576         @ : {- output_on() if $disabled{shared}; "" -}
577         $(RM) $(DESTDIR)$(libdir)/pkgconfig/libcrypto.pc
578         $(RM) $(DESTDIR)$(libdir)/pkgconfig/libssl.pc
579         $(RM) $(DESTDIR)$(libdir)/pkgconfig/openssl.pc
580         -$(RMDIR) $(DESTDIR)$(libdir)/pkgconfig
581         -$(RMDIR) $(DESTDIR)$(libdir)
582
583 install_engines:
584         @[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
585         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(ENGINESDIR)/
586         @$(ECHO) "*** Installing engines"
587         @set -e; for e in dummy $(INSTALL_ENGINES); do \
588                 if [ "$$e" = "dummy" ]; then continue; fi; \
589                 fn=`basename $$e`; \
590                 $(ECHO) "install $$e -> $(DESTDIR)$(ENGINESDIR)/$$fn"; \
591                 cp $$e $(DESTDIR)$(ENGINESDIR)/$$fn.new; \
592                 chmod 755 $(DESTDIR)$(ENGINESDIR)/$$fn.new; \
593                 mv -f $(DESTDIR)$(ENGINESDIR)/$$fn.new \
594                       $(DESTDIR)$(ENGINESDIR)/$$fn; \
595         done
596
597 uninstall_engines:
598         @$(ECHO) "*** Uninstalling engines"
599         @set -e; for e in dummy $(INSTALL_ENGINES); do \
600                 if [ "$$e" = "dummy" ]; then continue; fi; \
601                 fn=`basename $$e`; \
602                 if [ "$$fn" = '{- dso("ossltest") -}' ]; then \
603                         continue; \
604                 fi; \
605                 $(ECHO) "$(RM) $(DESTDIR)$(ENGINESDIR)/$$fn"; \
606                 $(RM) $(DESTDIR)$(ENGINESDIR)/$$fn; \
607         done
608         -$(RMDIR) $(DESTDIR)$(ENGINESDIR)
609
610 install_runtime:
611         @[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
612         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(INSTALLTOP)/bin
613         @ : {- output_off() if windowsdll(); "" -}
614         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(libdir)
615         @ : {- output_on() if windowsdll(); "" -}
616         @$(ECHO) "*** Installing runtime files"
617         @set -e; for s in dummy $(INSTALL_SHLIBS); do \
618                 if [ "$$s" = "dummy" ]; then continue; fi; \
619                 fn=`basename $$s`; \
620                 : {- output_off() unless windowsdll(); "" -}; \
621                 $(ECHO) "install $$s -> $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
622                 cp $$s $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
623                 chmod 644 $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
624                 mv -f $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new \
625                       $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
626                 : {- output_on() unless windowsdll(); "" -}{- output_off() if windowsdll(); "" -}; \
627                 $(ECHO) "install $$s -> $(DESTDIR)$(libdir)/$$fn"; \
628                 cp $$s $(DESTDIR)$(libdir)/$$fn.new; \
629                 chmod 755 $(DESTDIR)$(libdir)/$$fn.new; \
630                 mv -f $(DESTDIR)$(libdir)/$$fn.new \
631                       $(DESTDIR)$(libdir)/$$fn; \
632                 : {- output_on() if windowsdll(); "" -}; \
633         done
634         @set -e; for x in dummy $(INSTALL_PROGRAMS); do \
635                 if [ "$$x" = "dummy" ]; then continue; fi; \
636                 fn=`basename $$x`; \
637                 $(ECHO) "install $$x -> $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
638                 cp $$x $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
639                 chmod 755 $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
640                 mv -f $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new \
641                       $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
642         done
643         @set -e; for x in dummy $(BIN_SCRIPTS); do \
644                 if [ "$$x" = "dummy" ]; then continue; fi; \
645                 fn=`basename $$x`; \
646                 $(ECHO) "install $$x -> $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
647                 cp $$x $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
648                 chmod 755 $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
649                 mv -f $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new \
650                       $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
651         done
652
653 uninstall_runtime:
654         @$(ECHO) "*** Uninstalling runtime files"
655         @set -e; for x in dummy $(INSTALL_PROGRAMS); \
656         do  \
657                 if [ "$$x" = "dummy" ]; then continue; fi; \
658                 fn=`basename $$x`; \
659                 $(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
660                 $(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
661         done;
662         @set -e; for x in dummy $(BIN_SCRIPTS); \
663         do  \
664                 if [ "$$x" = "dummy" ]; then continue; fi; \
665                 fn=`basename $$x`; \
666                 $(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
667                 $(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
668         done
669         @ : {- output_off() unless windowsdll(); "" -}
670         @set -e; for s in dummy $(INSTALL_SHLIBS); do \
671                 if [ "$$s" = "dummy" ]; then continue; fi; \
672                 fn=`basename $$s`; \
673                 $(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
674                 $(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
675         done
676         @ : {- output_on() unless windowsdll(); "" -}
677         -$(RMDIR) $(DESTDIR)$(INSTALLTOP)/bin
678
679
680 install_man_docs:
681         @[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
682         @$(ECHO) "*** Installing manpages"
683         $(PERL) $(SRCDIR)/util/process_docs.pl \
684                 --destdir=$(DESTDIR)$(MANDIR) --type=man --suffix=$(MANSUFFIX)
685
686 uninstall_man_docs:
687         @$(ECHO) "*** Uninstalling manpages"
688         $(PERL) $(SRCDIR)/util/process_docs.pl \
689                 --destdir=$(DESTDIR)$(MANDIR) --type=man --suffix=$(MANSUFFIX) \
690                 --remove
691
692 install_html_docs:
693         @[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
694         @$(ECHO) "*** Installing HTML manpages"
695         $(PERL) $(SRCDIR)/util/process_docs.pl \
696                 --destdir=$(DESTDIR)$(HTMLDIR) --type=html
697
698 uninstall_html_docs:
699         @$(ECHO) "*** Uninstalling manpages"
700         $(PERL) $(SRCDIR)/util/process_docs.pl \
701                 --destdir=$(DESTDIR)$(HTMLDIR) --type=html --remove
702
703
704 # Developer targets (note: these are only available on Unix) #########
705
706 update: generate errors ordinals
707
708 generate: generate_apps generate_crypto_bn generate_crypto_objects \
709           generate_crypto_conf generate_crypto_asn1 generate_fuzz_oids
710
711 .PHONY: doc-nits
712 doc-nits:
713         (cd $(SRCDIR); $(PERL) util/find-doc-nits -n -p ) >doc-nits
714         @if [ -s doc-nits ] ; then cat doc-nits ; exit 1; \
715         else echo 'doc-nits: no errors.'; rm doc-nits ; fi
716
717 # Test coverage is a good idea for the future
718 #coverage: $(PROGRAMS) $(TESTPROGRAMS)
719 #       ...
720
721 lint:
722         lint -DLINT $(INCLUDES) $(SRCS)
723
724 generate_apps:
725         ( cd $(SRCDIR); $(PERL) VMS/VMSify-conf.pl \
726                                 < apps/openssl.cnf > apps/openssl-vms.cnf )
727
728 generate_crypto_bn:
729         ( cd $(SRCDIR); $(PERL) crypto/bn/bn_prime.pl > crypto/bn/bn_prime.h )
730
731 generate_crypto_objects:
732         ( cd $(SRCDIR); $(PERL) crypto/objects/objects.pl -n \
733                                 crypto/objects/objects.txt \
734                                 crypto/objects/obj_mac.num \
735                                 > crypto/objects/obj_mac.new && \
736             mv crypto/objects/obj_mac.new crypto/objects/obj_mac.num )
737         ( cd $(SRCDIR); $(PERL) crypto/objects/objects.pl \
738                                 crypto/objects/objects.txt \
739                                 crypto/objects/obj_mac.num \
740                                 > include/openssl/obj_mac.h )
741         ( cd $(SRCDIR); $(PERL) crypto/objects/obj_dat.pl \
742                                 include/openssl/obj_mac.h \
743                                 > crypto/objects/obj_dat.h )
744         ( cd $(SRCDIR); $(PERL) crypto/objects/objxref.pl \
745                                 crypto/objects/obj_mac.num \
746                                 crypto/objects/obj_xref.txt \
747                                 > crypto/objects/obj_xref.h )
748
749 generate_crypto_conf:
750         ( cd $(SRCDIR); $(PERL) crypto/conf/keysets.pl \
751                                 > crypto/conf/conf_def.h )
752
753 generate_crypto_asn1:
754         ( cd $(SRCDIR); $(PERL) crypto/asn1/charmap.pl \
755                                 > crypto/asn1/charmap.h )
756
757 generate_fuzz_oids:
758         ( cd $(SRCDIR); $(PERL) fuzz/mkfuzzoids.pl \
759                                 crypto/objects/obj_dat.h \
760                                 > fuzz/oids.txt )
761
762 # Set to -force to force a rebuild
763 ERROR_REBUILD=
764 errors:
765         ( b=`pwd`; set -e; cd $(SRCDIR); \
766           $(PERL) util/ck_errf.pl -strict -internal; \
767           $(PERL) -I$$b util/mkerr.pl $(ERROR_REBUILD) -internal )
768         ( b=`pwd`; set -e; cd $(SRCDIR)/engines; \
769           for E in *.ec ; do \
770               $(PERL) ../util/ck_errf.pl -strict \
771                 -conf $$E `basename $$E .ec`.c; \
772               $(PERL) -I$$b ../util/mkerr.pl $(ERROR_REBUILD) -static \
773                 -conf $$E `basename $$E .ec`.c ; \
774           done )
775
776 ordinals:
777         ( b=`pwd`; cd $(SRCDIR); $(PERL) -I$$b util/mkdef.pl crypto update )
778         ( b=`pwd`; cd $(SRCDIR); $(PERL) -I$$b util/mkdef.pl ssl update )
779
780 test_ordinals:
781         ( cd test; \
782           SRCTOP=../$(SRCDIR) \
783           BLDTOP=../$(BLDDIR) \
784             $(PERL) ../$(SRCDIR)/test/run_tests.pl test_ordinals )
785
786 tags TAGS: FORCE
787         rm -f TAGS tags
788         -ctags -R .
789         -etags `find . -name '*.[ch]' -o -name '*.pm'`
790
791 # Release targets (note: only available on Unix) #####################
792
793 # If your tar command doesn't support --owner and --group, make sure to
794 # use one that does, for example GNU tar
795 TAR_COMMAND=$(TAR) $(TARFLAGS) --owner 0 --group 0 -cf -
796 PREPARE_CMD=:
797 tar:
798         set -e; \
799         TMPDIR=/var/tmp/openssl-copy.$$$$; \
800         DISTDIR=$(NAME); \
801         mkdir -p $$TMPDIR/$$DISTDIR; \
802         (cd $(SRCDIR); \
803          excl_re=`git submodule status | sed -e 's/^.//' | cut -d' ' -f2`; \
804          excl_re="^(fuzz/corpora|Configurations/.*\.norelease\.conf|`echo $$excl_re | sed -e 's/ /$$|/g'`\$$)"; \
805          echo "$$excl_re"; \
806          git ls-tree -r --name-only --full-tree HEAD \
807          | egrep -v "$$excl_re" \
808          | while read F; do \
809                mkdir -p $$TMPDIR/$$DISTDIR/`dirname $$F`; \
810                cp $$F $$TMPDIR/$$DISTDIR/$$F; \
811            done); \
812         (cd $$TMPDIR/$$DISTDIR; \
813          $(PREPARE_CMD); \
814          find . -type d -print | xargs chmod 755; \
815          find . -type f -print | xargs chmod a+r; \
816          find . -type f -perm -0100 -print | xargs chmod a+x); \
817         (cd $$TMPDIR; $(TAR_COMMAND) $$DISTDIR) \
818         | (cd $(SRCDIR); gzip --best > $(TARFILE).gz); \
819         rm -rf $$TMPDIR
820         cd $(SRCDIR); ls -l $(TARFILE).gz
821
822 dist:
823         @$(MAKE) PREPARE_CMD='$(PERL) ./Configure dist' TARFILE="$(TARFILE)" NAME="$(NAME)" tar
824
825 # Helper targets #####################################################
826
827 link-utils: $(BLDDIR)/util/opensslwrap.sh
828
829 $(BLDDIR)/util/opensslwrap.sh: configdata.pm
830         @if [ "$(SRCDIR)" != "$(BLDDIR)" ]; then \
831             mkdir -p "$(BLDDIR)/util"; \
832             ln -sf "../$(SRCDIR)/util/opensslwrap.sh" "$(BLDDIR)/util"; \
833         fi
834
835 FORCE:
836
837 # Building targets ###################################################
838
839 libcrypto.pc libssl.pc openssl.pc: configdata.pm $(LIBS) {- join(" ",map { shlib_simple($_) } @{$unified_info{libraries}}) -}
840 libcrypto.pc:
841         @ ( echo 'prefix=$(INSTALLTOP)'; \
842             echo 'exec_prefix=$${prefix}'; \
843             if [ -n "$(LIBDIR)" ]; then \
844                 echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
845             else \
846                 echo 'libdir=$(libdir)'; \
847             fi; \
848             echo 'includedir=$${prefix}/include'; \
849             echo 'enginesdir=$${libdir}/engines-{- $sover_dirname -}'; \
850             echo ''; \
851             echo 'Name: OpenSSL-libcrypto'; \
852             echo 'Description: OpenSSL cryptography library'; \
853             echo 'Version: '$(VERSION); \
854             echo 'Libs: -L$${libdir} -lcrypto'; \
855             echo 'Libs.private: $(LIB_EX_LIBS)'; \
856             echo 'Cflags: -I$${includedir}' ) > libcrypto.pc
857
858 libssl.pc:
859         @ ( echo 'prefix=$(INSTALLTOP)'; \
860             echo 'exec_prefix=$${prefix}'; \
861             if [ -n "$(LIBDIR)" ]; then \
862                 echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
863             else \
864                 echo 'libdir=$(libdir)'; \
865             fi; \
866             echo 'includedir=$${prefix}/include'; \
867             echo ''; \
868             echo 'Name: OpenSSL-libssl'; \
869             echo 'Description: Secure Sockets Layer and cryptography libraries'; \
870             echo 'Version: '$(VERSION); \
871             echo 'Requires.private: libcrypto'; \
872             echo 'Libs: -L$${libdir} -lssl'; \
873             echo 'Cflags: -I$${includedir}' ) > libssl.pc
874
875 openssl.pc:
876         @ ( echo 'prefix=$(INSTALLTOP)'; \
877             echo 'exec_prefix=$${prefix}'; \
878             if [ -n "$(LIBDIR)" ]; then \
879                 echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
880             else \
881                 echo 'libdir=$(libdir)'; \
882             fi; \
883             echo 'includedir=$${prefix}/include'; \
884             echo ''; \
885             echo 'Name: OpenSSL'; \
886             echo 'Description: Secure Sockets Layer and cryptography libraries and tools'; \
887             echo 'Version: '$(VERSION); \
888             echo 'Requires: libssl libcrypto' ) > openssl.pc
889
890 configdata.pm: $(SRCDIR)/Configure $(SRCDIR)/config {- join(" ", @{$config{build_file_templates}}, @{$config{build_infos}}, @{$config{conf_files}}) -}
891         @echo "Detected changed: $?"
892         $(PERL) configdata.pm -r
893         @echo "**************************************************"
894         @echo "***                                            ***"
895         @echo "***   Please run the same make command again   ***"
896         @echo "***                                            ***"
897         @echo "**************************************************"
898         @false
899
900 reconfigure reconf:
901         $(PERL) configdata.pm -r
902
903 {-
904   use File::Basename;
905   use File::Spec::Functions qw/:DEFAULT abs2rel rel2abs/;
906
907   # Helper function to figure out dependencies on libraries
908   # It takes a list of library names and outputs a list of dependencies
909   sub compute_lib_depends {
910       if ($disabled{shared}) {
911           return map { lib($_) } @_;
912       }
913
914       # Depending on shared libraries:
915       # On Windows POSIX layers, we depend on {libname}.dll.a
916       # On Unix platforms, we depend on {shlibname}.so
917       return map { $_ =~ /\.a$/ ? $`.$libext : shlib_simple($_) } @_;
918   }
919
920   sub generatesrc {
921       my %args = @_;
922       my $generator = join(" ", @{$args{generator}});
923       my $generator_incs = join("", map { " -I".$_ } @{$args{generator_incs}});
924       my $incs = join("", map { " -I".$_ } @{$args{incs}});
925       my $deps = join(" ", @{$args{generator_deps}}, @{$args{deps}});
926
927       if ($args{src} !~ /\.[sS]$/) {
928           if ($args{generator}->[0] =~ m|^.*\.in$|) {
929               my $dofile = abs2rel(rel2abs(catfile($config{sourcedir},
930                                                    "util", "dofile.pl")),
931                                    rel2abs($config{builddir}));
932               return <<"EOF";
933 $args{src}: $args{generator}->[0] $deps
934         \$(PERL) "-I\$(BLDDIR)" -Mconfigdata "$dofile" \\
935             "-o$target{build_file}" $generator > \$@
936 EOF
937           } else {
938               return <<"EOF";
939 $args{src}: $args{generator}->[0] $deps
940         \$(PERL)$generator_incs $generator > \$@
941 EOF
942           }
943       } else {
944           if ($args{generator}->[0] =~ /\.pl$/) {
945               $generator = 'CC="$(CC)" $(PERL)'.$generator_incs.' '.$generator;
946           } elsif ($args{generator}->[0] =~ /\.m4$/) {
947               $generator = 'm4 -B 8192'.$generator_incs.' '.$generator.' >'
948           } elsif ($args{generator}->[0] =~ /\.S$/) {
949               $generator = undef;
950           } else {
951               die "Generator type for $args{src} unknown: $generator\n";
952           }
953
954           my $cppflags = {
955               lib => '$(LIB_CFLAGS) $(LIB_CPPFLAGS)',
956               dso => '$(DSO_CFLAGS) $(DSO_CPPFLAGS)',
957               bin => '$(BIN_CFLAGS) $(BIN_CPPFLAGS)'
958           } -> {$args{intent}};
959           if (defined($generator)) {
960               return <<"EOF";
961 $args{src}: $args{generator}->[0] $deps
962         $generator \$@
963 EOF
964           }
965           return <<"EOF";
966 $args{src}: $args{generator}->[0] $deps
967         \$(CC) $incs $cppflags -E $args{generator}->[0] | \\
968         \$(PERL) -ne '/^#(line)?\\s*[0-9]+/ or print' > \$@
969 EOF
970       }
971   }
972
973   # Should one wonder about the end of the Perl snippet, it's because this
974   # second regexp eats up line endings as well, if the removed path is the
975   # last in the line.  We may therefore need to put back a line ending.
976   sub src2obj {
977       my %args = @_;
978       (my $obj = $args{obj}) =~ s|\.o$||;
979       my @srcs = @{$args{srcs}};
980       my $srcs = join(" ",  @srcs);
981       my $deps = join(" ", @srcs, @{$args{deps}});
982       my $incs = join("", map { " -I".$_ } @{$args{incs}});
983       my $cmd;
984       my $cmdflags;
985       my $cmdcompile;
986       if (grep /\.rc$/, @srcs) {
987           $cmd = '$(RC)';
988           $cmdflags = '$(RCFLAGS)';
989           $cmdcompile = '';
990       } elsif (grep /\.(cc|cpp)$/, @srcs) {
991           $cmd = '$(CXX)';
992           $cmdcompile = ' -c';
993           $cmdflags = {
994               lib => '$(LIB_CXXFLAGS) $(LIB_CPPFLAGS)',
995               dso => '$(DSO_CXXFLAGS) $(DSO_CPPFLAGS)',
996               bin => '$(BIN_CXXFLAGS) $(BIN_CPPFLAGS)'
997           } -> {$args{intent}};
998       } else {
999           $cmd = '$(CC)';
1000           $cmdcompile = ' -c';
1001           $cmdflags = {
1002               lib => '$(LIB_CFLAGS) $(LIB_CPPFLAGS)',
1003               dso => '$(DSO_CFLAGS) $(DSO_CPPFLAGS)',
1004               bin => '$(BIN_CFLAGS) $(BIN_CPPFLAGS)'
1005           } -> {$args{intent}};
1006       }
1007       my $recipe;
1008       # extension-specific rules
1009       if (grep /\.s$/, @srcs) {
1010           $recipe .= <<"EOF";
1011 $obj$objext: $deps
1012         $cmd $cmdflags -c -o \$\@ $srcs
1013 EOF
1014       } elsif (grep /\.S$/, @srcs) {
1015           # Originally there was mutli-step rule with $(CC) -E file.S
1016           # followed by $(CC) -c file.s. It compensated for one of
1017           # legacy platform compiler's inability to handle .S files.
1018           # The platform is long discontinued by vendor so there is
1019           # hardly a point to drag it along...
1020           $recipe .= <<"EOF";
1021 $obj$objext: $deps
1022         $cmd $incs $cmdflags -c -o \$\@ $srcs
1023 EOF
1024       } elsif (defined $makedepprog && $makedepprog !~ /\/makedepend/
1025                && !grep /\.rc$/, @srcs) {
1026           $recipe .= <<"EOF";
1027 $obj$objext: $deps
1028         $cmd $incs $cmdflags -MMD -MF $obj$depext.tmp -MT \$\@ -c -o \$\@ $srcs
1029         \@touch $obj$depext.tmp
1030         \@if cmp $obj$depext.tmp $obj$depext > /dev/null 2> /dev/null; then \\
1031                 rm -f $obj$depext.tmp; \\
1032         else \\
1033                 mv $obj$depext.tmp $obj$depext; \\
1034         fi
1035 EOF
1036       } else {
1037           $recipe .= <<"EOF";
1038 $obj$objext: $deps
1039         $cmd $incs $cmdflags $cmdcompile -o \$\@ $srcs
1040 EOF
1041           if (defined $makedepprog  && $makedepprog =~ /\/makedepend/) {
1042               $recipe .= <<"EOF";
1043         \$(MAKEDEPEND) -f- -Y -- $incs $cmdflags -- $srcs 2>/dev/null \\
1044             > $obj$depext
1045 EOF
1046           }
1047       }
1048       return $recipe;
1049   }
1050   # On Unix, we build shlibs from static libs, so we're ignoring the
1051   # object file array.  We *know* this routine is only called when we've
1052   # configure 'shared'.
1053   sub libobj2shlib {
1054       my %args = @_;
1055       my $lib = $args{lib};
1056       my $shlib = $args{shlib};
1057       my $libd = dirname($lib);
1058       my $libn = basename($lib);
1059       (my $libname = $libn) =~ s/^lib//;
1060       my @linkdirs = ();
1061       foreach (@{args{deps}}) {
1062           my $d = dirname($_);
1063           push @linkdirs, $d unless grep { $d eq $_ } @linkdirs;
1064       }
1065       my $linkflags = join("", map { "-L$_ " } @linkdirs);
1066       my $linklibs = join("", map { my $f = basename($_);
1067                                     (my $l = $f) =~ s/^lib//;
1068                                     " -l$l" } @{$args{deps}});
1069       my @objs = map { (my $x = $_) =~ s|\.o$||; "$x$objext" }
1070                  grep { $_ !~ m/\.(?:def|map)$/ }
1071                  @{$args{objs}};
1072       my @defs = grep { $_ =~ /\.(?:def|map)$/ } @{$args{objs}};
1073       my @deps = compute_lib_depends(@{$args{deps}});
1074       die "More than one exported symbol map" if scalar @defs > 1;
1075       my $objs = join(" ", @objs);
1076       my $deps = join(" ", @objs, @defs, @deps);
1077       my $target = shlib_simple($lib);
1078       my $target_full = shlib($lib);
1079       my $shared_soname = "";
1080       $shared_soname .= ' '.$target{shared_sonameflag}.basename($target_full)
1081           if defined $target{shared_sonameflag};
1082       my $shared_imp = "";
1083       $shared_imp .= ' '.$target{shared_impflag}.basename($target)
1084           if defined $target{shared_impflag};
1085       my $shared_def = join("", map { ' '.$target{shared_defflag}.$_ } @defs);
1086       my $recipe = <<"EOF";
1087 # When building on a Windows POSIX layer (Cygwin or Mingw), we know for a fact
1088 # that two files get produced, {shlibname}.dll and {libname}.dll.a.
1089 # With all other Unix platforms, we often build a shared library with the
1090 # SO version built into the file name and a symlink without the SO version
1091 # It's not necessary to have both as targets.  The choice falls on the
1092 # simplest, {libname}\$(SHLIB_EXT_IMPORT) for Windows POSIX layers and
1093 # {libname}\$(SHLIB_EXT_SIMPLE) for the Unix platforms.
1094 $target: $deps
1095         \$(CC) \$(LIB_CFLAGS) $linkflags\$(LIB_LDFLAGS)$shared_soname$shared_imp \\
1096                 -o $target_full$shared_def $objs \\
1097                 $linklibs \$(LIB_EX_LIBS)
1098 EOF
1099       if (windowsdll()) {
1100           $recipe .= <<"EOF";
1101         rm -f apps/$shlib'\$(SHLIB_EXT)'
1102         rm -f test/$shlib'\$(SHLIB_EXT)'
1103         rm -f fuzz/$shlib'\$(SHLIB_EXT)'
1104         cp -p $shlib'\$(SHLIB_EXT)' apps/
1105         cp -p $shlib'\$(SHLIB_EXT)' test/
1106         cp -p $shlib'\$(SHLIB_EXT)' fuzz/
1107 EOF
1108       } else {
1109           $recipe .= <<"EOF";
1110         if [ '$target' != '$target_full' ]; then \\
1111                 rm -f $target; \\
1112                 ln -s $target_full $target; \\
1113         fi
1114 EOF
1115       }
1116   }
1117   sub obj2dso {
1118       my %args = @_;
1119       my $dso = $args{lib};
1120       my $dsod = dirname($dso);
1121       my $dson = basename($dso);
1122       my @linkdirs = ();
1123       foreach (@{args{deps}}) {
1124           my $d = dirname($_);
1125           push @linkdirs, $d unless grep { $d eq $_ } @linkdirs;
1126       }
1127       my $linkflags = join("", map { "-L$_ " } @linkdirs);
1128       my $linklibs = join("", map { my $f = basename($_);
1129                                     (my $l = $f) =~ s/^lib//;
1130                                     " -l$l" } @{$args{deps}});
1131       my @objs = map { (my $x = $_) =~ s|\.o$||; "$x$objext" }
1132                  grep { $_ !~ m/\.(?:def|map)$/ }
1133                  @{$args{objs}};
1134       my @deps = compute_lib_depends(@{$args{deps}});
1135       my $objs = join(" ", @objs);
1136       my $deps = join(" ", @deps);
1137       my $target = dso($dso);
1138       return <<"EOF";
1139 $target: $objs $deps
1140         \$(CC) \$(DSO_CFLAGS) $linkflags\$(DSO_LDFLAGS) \\
1141                 -o $target $objs \\
1142                 $linklibs \$(DSO_EX_LIBS)
1143 EOF
1144   }
1145   sub obj2lib {
1146       my %args = @_;
1147       (my $lib = $args{lib}) =~ s/\.a$//;
1148       my @objs = map { (my $x = $_) =~ s|\.o$|$objext|; $x } @{$args{objs}};
1149       my $objs = join(" ", @objs);
1150       return <<"EOF";
1151 $lib$libext: $objs
1152         \$(AR) \$(ARFLAGS) \$\@ \$\?
1153         \$(RANLIB) \$\@ || echo Never mind.
1154 EOF
1155   }
1156   sub obj2bin {
1157       my %args = @_;
1158       my $bin = $args{bin};
1159       my $bind = dirname($bin);
1160       my $binn = basename($bin);
1161       my $objs = join(" ", map { (my $x = $_) =~ s|\.o$||; "$x$objext" }
1162                            @{$args{objs}});
1163       my $deps = join(" ",compute_lib_depends(@{$args{deps}}));
1164       my @linkdirs = ();
1165       foreach (@{args{deps}}) {
1166           next if $_ =~ /\.a$/;
1167           my $d = dirname($_);
1168           push @linkdirs, $d unless grep { $d eq $_ } @linkdirs;
1169       }
1170       my $linkflags = join("", map { "-L$_ " } @linkdirs);
1171       my $linklibs = join("", map { if ($_ =~ /\.a$/) {
1172                                         " $_";
1173                                     } else {
1174                                         my $f = basename($_);
1175                                         (my $l = $f) =~ s/^lib//;
1176                                         " -l$l"
1177                                     }
1178                                   } @{$args{deps}});
1179       my $cmd = '$(CC)';
1180       my $cmdflags = '$(BIN_CFLAGS)';
1181       if (grep /_cc\.o$/, @{$args{objs}}) {
1182           $cmd = '$(CXX)';
1183           $cmdflags = '$(BIN_CXXFLAGS)';
1184       }
1185       return <<"EOF";
1186 $bin$exeext: $objs $deps
1187         rm -f $bin$exeext
1188         \$\${LDCMD:-$cmd} $cmdflags $linkflags\$(BIN_LDFLAGS) \\
1189                 -o $bin$exeext $objs \\
1190                 $linklibs \$(BIN_EX_LIBS)
1191 EOF
1192   }
1193   sub in2script {
1194       my %args = @_;
1195       my $script = $args{script};
1196       my $sources = join(" ", @{$args{sources}});
1197       my $dofile = abs2rel(rel2abs(catfile($config{sourcedir},
1198                                            "util", "dofile.pl")),
1199                            rel2abs($config{builddir}));
1200       return <<"EOF";
1201 $script: $sources
1202         \$(PERL) "-I\$(BLDDIR)" -Mconfigdata "$dofile" \\
1203             "-o$target{build_file}" $sources > "$script"
1204         chmod a+x $script
1205 EOF
1206   }
1207   sub generatedir {
1208       my %args = @_;
1209       my $dir = $args{dir};
1210       my @deps = map { s|\.o$|$objext|; $_ } @{$args{deps}};
1211       my @actions = ();
1212       my %extinfo = ( dso => $dsoext,
1213                       lib => $libext,
1214                       bin => $exeext );
1215
1216       foreach my $type (("dso", "lib", "bin", "script")) {
1217           next unless defined($unified_info{dirinfo}->{$dir}->{products}->{$type});
1218           # For lib object files, we could update the library.  However, it
1219           # was decided that it's enough to build the directory local object
1220           # files, so we don't need to add any actions, and the dependencies
1221           # are already taken care of.
1222           if ($type ne "lib") {
1223               foreach my $prod (@{$unified_info{dirinfo}->{$dir}->{products}->{$type}}) {
1224                   if (dirname($prod) eq $dir) {
1225                       push @deps, $prod.$extinfo{$type};
1226                   } else {
1227                       push @actions, "\t@ : No support to produce $type ".join(", ", @{$unified_info{dirinfo}->{$dir}->{products}->{$type}});
1228                   }
1229               }
1230           }
1231       }
1232
1233       my $deps = join(" ", @deps);
1234       my $actions = join("\n", "", @actions);
1235       return <<"EOF";
1236 $args{dir} $args{dir}/: $deps$actions
1237 EOF
1238   }
1239   ""    # Important!  This becomes part of the template result.
1240 -}