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