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