17f76a56547b5d54e952c4d59acccf77365b9817
[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: all 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:
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}}; "" -}
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}}; "" -}
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                 $(ECHO) "install $$s1 -> $(DESTDIR)$(libdir)/$$fn1"; \
528                 cp $$s1 $(DESTDIR)$(libdir)/$$fn1.new; \
529                 chmod 755 $(DESTDIR)$(libdir)/$$fn1.new; \
530                 mv -f $(DESTDIR)$(libdir)/$$fn1.new \
531                       $(DESTDIR)$(libdir)/$$fn1; \
532                 if [ "$$fn1" != "$$fn2" ]; then \
533                         $(ECHO) "link $(DESTDIR)$(libdir)/$$fn2 -> $(DESTDIR)$(libdir)/$$fn1"; \
534                         ln -sf $$fn1 $(DESTDIR)$(libdir)/$$fn2; \
535                 fi; \
536                 : {- output_off() unless windowsdll() or sharedaix(); output_on() if windowsdll(); "" -}; \
537                 $(ECHO) "install $$s2 -> $(DESTDIR)$(libdir)/$$fn2"; \
538                 cp $$s2 $(DESTDIR)$(libdir)/$$fn2.new; \
539                 chmod 755 $(DESTDIR)$(libdir)/$$fn2.new; \
540                 mv -f $(DESTDIR)$(libdir)/$$fn2.new \
541                       $(DESTDIR)$(libdir)/$$fn2; \
542                 : {- output_off() if windowsdll(); output_on() if sharedaix(); "" -}; \
543                 a=$(DESTDIR)$(libdir)/$$fn2; \
544                 $(ECHO) "install $$s1 -> $$a"; \
545                 if [ -f $$a ]; then ( trap "rm -rf /tmp/ar.$$$$" INT 0; \
546                         mkdir /tmp/ar.$$$$; ( cd /tmp/ar.$$$$; \
547                         cp -f $$a $$a.new; \
548                         for so in `$(AR) t $$a`; do \
549                                 $(AR) x $$a $$so; \
550                                 chmod u+w $$so; \
551                                 strip -X32_64 -e $$so; \
552                                 $(AR) r $$a.new $$so; \
553                         done; \
554                 )); fi; \
555                 $(AR) r $$a.new $$s1; \
556                 mv -f $$a.new $$a; \
557                 : {- output_off() if sharedaix(); output_on(); "" -}; \
558         done
559         @ : {- output_on() if $disabled{shared}; "" -}
560         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(libdir)/pkgconfig
561         @$(ECHO) "install libcrypto.pc -> $(DESTDIR)$(libdir)/pkgconfig/libcrypto.pc"
562         @cp libcrypto.pc $(DESTDIR)$(libdir)/pkgconfig
563         @chmod 644 $(DESTDIR)$(libdir)/pkgconfig/libcrypto.pc
564         @$(ECHO) "install libssl.pc -> $(DESTDIR)$(libdir)/pkgconfig/libssl.pc"
565         @cp libssl.pc $(DESTDIR)$(libdir)/pkgconfig
566         @chmod 644 $(DESTDIR)$(libdir)/pkgconfig/libssl.pc
567         @$(ECHO) "install openssl.pc -> $(DESTDIR)$(libdir)/pkgconfig/openssl.pc"
568         @cp openssl.pc $(DESTDIR)$(libdir)/pkgconfig
569         @chmod 644 $(DESTDIR)$(libdir)/pkgconfig/openssl.pc
570
571 uninstall_dev:
572         @$(ECHO) "*** Uninstalling development files"
573         @ : {- output_off() unless grep { $_ eq "OPENSSL_USE_APPLINK" } @{$target{defines}}; "" -}
574         @$(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c"
575         @$(RM) $(DESTDIR)$(INSTALLTOP)/include/openssl/applink.c
576         @ : {- output_on() unless grep { $_ eq "OPENSSL_USE_APPLINK" } @{$target{defines}}; "" -}
577         @set -e; for i in $(SRCDIR)/include/openssl/*.h \
578                           $(BLDDIR)/include/openssl/*.h; do \
579                 fn=`basename $$i`; \
580                 $(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn"; \
581                 $(RM) $(DESTDIR)$(INSTALLTOP)/include/openssl/$$fn; \
582         done
583         -$(RMDIR) $(DESTDIR)$(INSTALLTOP)/include/openssl
584         -$(RMDIR) $(DESTDIR)$(INSTALLTOP)/include
585         @set -e; for l in $(INSTALL_LIBS); do \
586                 fn=`basename $$l`; \
587                 $(ECHO) "$(RM) $(DESTDIR)$(libdir)/$$fn"; \
588                 $(RM) $(DESTDIR)$(libdir)/$$fn; \
589         done
590         @ : {- output_off() if $disabled{shared}; "" -}
591         @set -e; for s in $(INSTALL_SHLIB_INFO); do \
592                 s1=`echo "$$s" | cut -f1 -d";"`; \
593                 s2=`echo "$$s" | cut -f2 -d";"`; \
594                 fn1=`basename $$s1`; \
595                 fn2=`basename $$s2`; \
596                 : {- output_off() if windowsdll(); "" -}; \
597                 $(ECHO) "$(RM) $(DESTDIR)$(libdir)/$$fn2"; \
598                 $(RM) $(DESTDIR)$(libdir)/$$fn2; \
599                 if [ "$$fn1" != "$$fn2" -a -f "$(DESTDIR)$(libdir)/$$fn1" ]; then \
600                         $(ECHO) "$(RM) $(DESTDIR)$(libdir)/$$fn1"; \
601                         $(RM) $(DESTDIR)$(libdir)/$$fn1; \
602                 fi; \
603                 : {- output_on() if windowsdll(); "" -}{- output_off() unless windowsdll(); "" -}; \
604                 $(ECHO) "$(RM) $(DESTDIR)$(libdir)/$$fn2"; \
605                 $(RM) $(DESTDIR)$(libdir)/$$fn2; \
606                 : {- output_on() unless windowsdll(); "" -}; \
607         done
608         @ : {- output_on() if $disabled{shared}; "" -}
609         $(RM) $(DESTDIR)$(libdir)/pkgconfig/libcrypto.pc
610         $(RM) $(DESTDIR)$(libdir)/pkgconfig/libssl.pc
611         $(RM) $(DESTDIR)$(libdir)/pkgconfig/openssl.pc
612         -$(RMDIR) $(DESTDIR)$(libdir)/pkgconfig
613         -$(RMDIR) $(DESTDIR)$(libdir)
614
615 install_engines:
616         @[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
617         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(ENGINESDIR)/
618         @$(ECHO) "*** Installing engines"
619         @set -e; for e in dummy $(INSTALL_ENGINES); do \
620                 if [ "$$e" = "dummy" ]; then continue; fi; \
621                 fn=`basename $$e`; \
622                 $(ECHO) "install $$e -> $(DESTDIR)$(ENGINESDIR)/$$fn"; \
623                 cp $$e $(DESTDIR)$(ENGINESDIR)/$$fn.new; \
624                 chmod 755 $(DESTDIR)$(ENGINESDIR)/$$fn.new; \
625                 mv -f $(DESTDIR)$(ENGINESDIR)/$$fn.new \
626                       $(DESTDIR)$(ENGINESDIR)/$$fn; \
627         done
628
629 uninstall_engines:
630         @$(ECHO) "*** Uninstalling engines"
631         @set -e; for e in dummy $(INSTALL_ENGINES); do \
632                 if [ "$$e" = "dummy" ]; then continue; fi; \
633                 fn=`basename $$e`; \
634                 if [ "$$fn" = '{- dso("ossltest") -}' ]; then \
635                         continue; \
636                 fi; \
637                 $(ECHO) "$(RM) $(DESTDIR)$(ENGINESDIR)/$$fn"; \
638                 $(RM) $(DESTDIR)$(ENGINESDIR)/$$fn; \
639         done
640         -$(RMDIR) $(DESTDIR)$(ENGINESDIR)
641
642 install_runtime:
643         @[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
644         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(INSTALLTOP)/bin
645         @ : {- output_off() if windowsdll(); "" -}
646         @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(libdir)
647         @ : {- output_on() if windowsdll(); "" -}
648         @$(ECHO) "*** Installing runtime files"
649         @set -e; for s in dummy $(INSTALL_SHLIBS); do \
650                 if [ "$$s" = "dummy" ]; then continue; fi; \
651                 fn=`basename $$s`; \
652                 : {- output_off() unless windowsdll(); "" -}; \
653                 $(ECHO) "install $$s -> $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
654                 cp $$s $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
655                 chmod 644 $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
656                 mv -f $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new \
657                       $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
658                 : {- output_on() unless windowsdll(); "" -}{- output_off() if windowsdll(); "" -}; \
659                 $(ECHO) "install $$s -> $(DESTDIR)$(libdir)/$$fn"; \
660                 cp $$s $(DESTDIR)$(libdir)/$$fn.new; \
661                 chmod 755 $(DESTDIR)$(libdir)/$$fn.new; \
662                 mv -f $(DESTDIR)$(libdir)/$$fn.new \
663                       $(DESTDIR)$(libdir)/$$fn; \
664                 : {- output_on() if windowsdll(); "" -}; \
665         done
666         @set -e; for x in dummy $(INSTALL_PROGRAMS); do \
667                 if [ "$$x" = "dummy" ]; then continue; fi; \
668                 fn=`basename $$x`; \
669                 $(ECHO) "install $$x -> $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
670                 cp $$x $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
671                 chmod 755 $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
672                 mv -f $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new \
673                       $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
674         done
675         @set -e; for x in dummy $(BIN_SCRIPTS); do \
676                 if [ "$$x" = "dummy" ]; then continue; fi; \
677                 fn=`basename $$x`; \
678                 $(ECHO) "install $$x -> $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
679                 cp $$x $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
680                 chmod 755 $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
681                 mv -f $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new \
682                       $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
683         done
684
685 uninstall_runtime:
686         @$(ECHO) "*** Uninstalling runtime files"
687         @set -e; for x in dummy $(INSTALL_PROGRAMS); \
688         do  \
689                 if [ "$$x" = "dummy" ]; then continue; fi; \
690                 fn=`basename $$x`; \
691                 $(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
692                 $(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
693         done;
694         @set -e; for x in dummy $(BIN_SCRIPTS); \
695         do  \
696                 if [ "$$x" = "dummy" ]; then continue; fi; \
697                 fn=`basename $$x`; \
698                 $(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
699                 $(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
700         done
701         @ : {- output_off() unless windowsdll(); "" -}
702         @set -e; for s in dummy $(INSTALL_SHLIBS); do \
703                 if [ "$$s" = "dummy" ]; then continue; fi; \
704                 fn=`basename $$s`; \
705                 $(ECHO) "$(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
706                 $(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
707         done
708         @ : {- output_on() unless windowsdll(); "" -}
709         -$(RMDIR) $(DESTDIR)$(INSTALLTOP)/bin
710
711
712 install_man_docs:
713         @[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
714         @$(ECHO) "*** Installing manpages"
715         $(PERL) $(SRCDIR)/util/process_docs.pl \
716                 --destdir=$(DESTDIR)$(MANDIR) --type=man --suffix=$(MANSUFFIX)
717
718 uninstall_man_docs:
719         @$(ECHO) "*** Uninstalling manpages"
720         $(PERL) $(SRCDIR)/util/process_docs.pl \
721                 --destdir=$(DESTDIR)$(MANDIR) --type=man --suffix=$(MANSUFFIX) \
722                 --remove
723
724 install_html_docs:
725         @[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
726         @$(ECHO) "*** Installing HTML manpages"
727         $(PERL) $(SRCDIR)/util/process_docs.pl \
728                 --destdir=$(DESTDIR)$(HTMLDIR) --type=html
729
730 uninstall_html_docs:
731         @$(ECHO) "*** Uninstalling manpages"
732         $(PERL) $(SRCDIR)/util/process_docs.pl \
733                 --destdir=$(DESTDIR)$(HTMLDIR) --type=html --remove
734
735
736 # Developer targets (note: these are only available on Unix) #########
737
738 update: generate errors ordinals
739
740 generate: generate_apps generate_crypto_bn generate_crypto_objects \
741           generate_crypto_conf generate_crypto_asn1 generate_fuzz_oids
742
743 .PHONY: doc-nits
744 doc-nits:
745         (cd $(SRCDIR); $(PERL) util/find-doc-nits -n -p ) >doc-nits
746         @if [ -s doc-nits ] ; then cat doc-nits ; exit 1; \
747         else echo 'doc-nits: no errors.'; rm doc-nits ; fi
748
749 # Test coverage is a good idea for the future
750 #coverage: $(PROGRAMS) $(TESTPROGRAMS)
751 #       ...
752
753 lint:
754         lint -DLINT $(INCLUDES) $(SRCS)
755
756 generate_apps:
757         ( cd $(SRCDIR); $(PERL) VMS/VMSify-conf.pl \
758                                 < apps/openssl.cnf > apps/openssl-vms.cnf )
759
760 generate_crypto_bn:
761         ( cd $(SRCDIR); $(PERL) crypto/bn/bn_prime.pl > crypto/bn/bn_prime.h )
762
763 generate_crypto_objects:
764         ( cd $(SRCDIR); $(PERL) crypto/objects/objects.pl -n \
765                                 crypto/objects/objects.txt \
766                                 crypto/objects/obj_mac.num \
767                                 > crypto/objects/obj_mac.new && \
768             mv crypto/objects/obj_mac.new crypto/objects/obj_mac.num )
769         ( cd $(SRCDIR); $(PERL) crypto/objects/objects.pl \
770                                 crypto/objects/objects.txt \
771                                 crypto/objects/obj_mac.num \
772                                 > include/openssl/obj_mac.h )
773         ( cd $(SRCDIR); $(PERL) crypto/objects/obj_dat.pl \
774                                 include/openssl/obj_mac.h \
775                                 > crypto/objects/obj_dat.h )
776         ( cd $(SRCDIR); $(PERL) crypto/objects/objxref.pl \
777                                 crypto/objects/obj_mac.num \
778                                 crypto/objects/obj_xref.txt \
779                                 > crypto/objects/obj_xref.h )
780
781 generate_crypto_conf:
782         ( cd $(SRCDIR); $(PERL) crypto/conf/keysets.pl \
783                                 > crypto/conf/conf_def.h )
784
785 generate_crypto_asn1:
786         ( cd $(SRCDIR); $(PERL) crypto/asn1/charmap.pl \
787                                 > crypto/asn1/charmap.h )
788
789 generate_fuzz_oids:
790         ( cd $(SRCDIR); $(PERL) fuzz/mkfuzzoids.pl \
791                                 crypto/objects/obj_dat.h \
792                                 > fuzz/oids.txt )
793
794 # Set to -force to force a rebuild
795 ERROR_REBUILD=
796 errors:
797         ( b=`pwd`; set -e; cd $(SRCDIR); \
798           $(PERL) util/ck_errf.pl -strict -internal; \
799           $(PERL) -I$$b util/mkerr.pl $(ERROR_REBUILD) -internal )
800         ( b=`pwd`; set -e; cd $(SRCDIR)/engines; \
801           for E in *.ec ; do \
802               $(PERL) ../util/ck_errf.pl -strict \
803                 -conf $$E `basename $$E .ec`.c; \
804               $(PERL) -I$$b ../util/mkerr.pl $(ERROR_REBUILD) -static \
805                 -conf $$E `basename $$E .ec`.c ; \
806           done )
807
808 ordinals:
809         ( b=`pwd`; cd $(SRCDIR); $(PERL) -I$$b util/mkdef.pl crypto update )
810         ( b=`pwd`; cd $(SRCDIR); $(PERL) -I$$b util/mkdef.pl ssl update )
811
812 test_ordinals:
813         ( cd test; \
814           SRCTOP=../$(SRCDIR) \
815           BLDTOP=../$(BLDDIR) \
816             $(PERL) ../$(SRCDIR)/test/run_tests.pl test_ordinals )
817
818 tags TAGS: FORCE
819         rm -f TAGS tags
820         -ctags -R .
821         -etags `find . -name '*.[ch]' -o -name '*.pm'`
822
823 # Release targets (note: only available on Unix) #####################
824
825 # If your tar command doesn't support --owner and --group, make sure to
826 # use one that does, for example GNU tar
827 TAR_COMMAND=$(TAR) $(TARFLAGS) --owner 0 --group 0 -cf -
828 PREPARE_CMD=:
829 tar:
830         set -e; \
831         TMPDIR=/var/tmp/openssl-copy.$$$$; \
832         DISTDIR=$(NAME); \
833         mkdir -p $$TMPDIR/$$DISTDIR; \
834         (cd $(SRCDIR); \
835          excl_re=`git submodule status | sed -e 's/^.//' | cut -d' ' -f2`; \
836          excl_re="^(fuzz/corpora|Configurations/.*\.norelease\.conf|`echo $$excl_re | sed -e 's/ /$$|/g'`\$$)"; \
837          echo "$$excl_re"; \
838          git ls-tree -r --name-only --full-tree HEAD \
839          | egrep -v "$$excl_re" \
840          | while read F; do \
841                mkdir -p $$TMPDIR/$$DISTDIR/`dirname $$F`; \
842                cp $$F $$TMPDIR/$$DISTDIR/$$F; \
843            done); \
844         (cd $$TMPDIR/$$DISTDIR; \
845          $(PREPARE_CMD); \
846          find . -type d -print | xargs chmod 755; \
847          find . -type f -print | xargs chmod a+r; \
848          find . -type f -perm -0100 -print | xargs chmod a+x); \
849         (cd $$TMPDIR; $(TAR_COMMAND) $$DISTDIR) \
850         | (cd $(SRCDIR); gzip --best > $(TARFILE).gz); \
851         rm -rf $$TMPDIR
852         cd $(SRCDIR); ls -l $(TARFILE).gz
853
854 dist:
855         @$(MAKE) PREPARE_CMD='$(PERL) ./Configure dist' TARFILE="$(TARFILE)" NAME="$(NAME)" tar
856
857 # Helper targets #####################################################
858
859 link-utils: $(BLDDIR)/util/opensslwrap.sh
860
861 $(BLDDIR)/util/opensslwrap.sh: configdata.pm
862         @if [ "$(SRCDIR)" != "$(BLDDIR)" ]; then \
863             mkdir -p "$(BLDDIR)/util"; \
864             ln -sf "../$(SRCDIR)/util/opensslwrap.sh" "$(BLDDIR)/util"; \
865         fi
866
867 FORCE:
868
869 # Building targets ###################################################
870
871 libcrypto.pc libssl.pc openssl.pc: configdata.pm $(LIBS) {- join(" ",map { shlib_simple($_) } @{$unified_info{libraries}}) -}
872 libcrypto.pc:
873         @ ( echo 'prefix=$(INSTALLTOP)'; \
874             echo 'exec_prefix=$${prefix}'; \
875             if [ -n "$(LIBDIR)" ]; then \
876                 echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
877             else \
878                 echo 'libdir=$(libdir)'; \
879             fi; \
880             echo 'includedir=$${prefix}/include'; \
881             echo 'enginesdir=$${libdir}/engines-{- $sover_dirname -}'; \
882             echo ''; \
883             echo 'Name: OpenSSL-libcrypto'; \
884             echo 'Description: OpenSSL cryptography library'; \
885             echo 'Version: '$(VERSION); \
886             echo 'Libs: -L$${libdir} -lcrypto'; \
887             echo 'Libs.private: $(LIB_EX_LIBS)'; \
888             echo 'Cflags: -I$${includedir}' ) > libcrypto.pc
889
890 libssl.pc:
891         @ ( echo 'prefix=$(INSTALLTOP)'; \
892             echo 'exec_prefix=$${prefix}'; \
893             if [ -n "$(LIBDIR)" ]; then \
894                 echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
895             else \
896                 echo 'libdir=$(libdir)'; \
897             fi; \
898             echo 'includedir=$${prefix}/include'; \
899             echo ''; \
900             echo 'Name: OpenSSL-libssl'; \
901             echo 'Description: Secure Sockets Layer and cryptography libraries'; \
902             echo 'Version: '$(VERSION); \
903             echo 'Requires.private: libcrypto'; \
904             echo 'Libs: -L$${libdir} -lssl'; \
905             echo 'Cflags: -I$${includedir}' ) > libssl.pc
906
907 openssl.pc:
908         @ ( echo 'prefix=$(INSTALLTOP)'; \
909             echo 'exec_prefix=$${prefix}'; \
910             if [ -n "$(LIBDIR)" ]; then \
911                 echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
912             else \
913                 echo 'libdir=$(libdir)'; \
914             fi; \
915             echo 'includedir=$${prefix}/include'; \
916             echo ''; \
917             echo 'Name: OpenSSL'; \
918             echo 'Description: Secure Sockets Layer and cryptography libraries and tools'; \
919             echo 'Version: '$(VERSION); \
920             echo 'Requires: libssl libcrypto' ) > openssl.pc
921
922 configdata.pm: $(SRCDIR)/Configure $(SRCDIR)/config {- join(" ", @{$config{build_file_templates}}, @{$config{build_infos}}, @{$config{conf_files}}) -}
923         @echo "Detected changed: $?"
924         $(PERL) configdata.pm -r
925         @echo "**************************************************"
926         @echo "***                                            ***"
927         @echo "***   Please run the same make command again   ***"
928         @echo "***                                            ***"
929         @echo "**************************************************"
930         @false
931
932 reconfigure reconf:
933         $(PERL) configdata.pm -r
934
935 {-
936   use File::Basename;
937   use File::Spec::Functions qw/:DEFAULT abs2rel rel2abs/;
938
939   # Helper function to figure out dependencies on libraries
940   # It takes a list of library names and outputs a list of dependencies
941   sub compute_lib_depends {
942       if ($disabled{shared}) {
943           return map { lib($_) } @_;
944       }
945
946       # Depending on shared libraries:
947       # On Windows POSIX layers, we depend on {libname}.dll.a
948       # On Unix platforms, we depend on {shlibname}.so
949       return map { $_ =~ /\.a$/ ? $`.$libext : shlib_simple($_) } @_;
950   }
951
952   sub generatesrc {
953       my %args = @_;
954       my $generator = join(" ", @{$args{generator}});
955       my $generator_incs = join("", map { " -I".$_ } @{$args{generator_incs}});
956       my $incs = join("", map { " -I".$_ } @{$args{incs}});
957       my $deps = join(" ", @{$args{generator_deps}}, @{$args{deps}});
958
959       if ($args{src} !~ /\.[sS]$/) {
960           if ($args{generator}->[0] =~ m|^.*\.in$|) {
961               my $dofile = abs2rel(rel2abs(catfile($config{sourcedir},
962                                                    "util", "dofile.pl")),
963                                    rel2abs($config{builddir}));
964               return <<"EOF";
965 $args{src}: $args{generator}->[0] $deps
966         \$(PERL) "-I\$(BLDDIR)" -Mconfigdata "$dofile" \\
967             "-o$target{build_file}" $generator > \$@
968 EOF
969           } else {
970               return <<"EOF";
971 $args{src}: $args{generator}->[0] $deps
972         \$(PERL)$generator_incs $generator > \$@
973 EOF
974           }
975       } else {
976           if ($args{generator}->[0] =~ /\.pl$/) {
977               $generator = 'CC="$(CC)" $(PERL)'.$generator_incs.' '.$generator;
978           } elsif ($args{generator}->[0] =~ /\.m4$/) {
979               $generator = 'm4 -B 8192'.$generator_incs.' '.$generator.' >'
980           } elsif ($args{generator}->[0] =~ /\.S$/) {
981               $generator = undef;
982           } else {
983               die "Generator type for $args{src} unknown: $generator\n";
984           }
985
986           my $cppflags = {
987               shlib => '$(LIB_CFLAGS) $(LIB_CPPFLAGS)',
988               lib => '$(LIB_CFLAGS) $(LIB_CPPFLAGS)',
989               dso => '$(DSO_CFLAGS) $(DSO_CPPFLAGS)',
990               bin => '$(BIN_CFLAGS) $(BIN_CPPFLAGS)'
991           } -> {$args{intent}};
992           if (defined($generator)) {
993               return <<"EOF";
994 $args{src}: $args{generator}->[0] $deps
995         $generator \$@
996 EOF
997           }
998           return <<"EOF";
999 $args{src}: $args{generator}->[0] $deps
1000         \$(CC) $incs $cppflags -E $args{generator}->[0] | \\
1001         \$(PERL) -ne '/^#(line)?\\s*[0-9]+/ or print' > \$@
1002 EOF
1003       }
1004   }
1005
1006   # Should one wonder about the end of the Perl snippet, it's because this
1007   # second regexp eats up line endings as well, if the removed path is the
1008   # last in the line.  We may therefore need to put back a line ending.
1009   sub src2obj {
1010       my %args = @_;
1011       (my $obj = $args{obj}) =~ s|\.o$||;
1012       my @srcs = @{$args{srcs}};
1013       my $srcs = join(" ",  @srcs);
1014       my $deps = join(" ", @srcs, @{$args{deps}});
1015       my $incs = join("", map { " -I".$_ } @{$args{incs}});
1016       my $cmd;
1017       my $cmdflags;
1018       my $cmdcompile;
1019       if (grep /\.rc$/, @srcs) {
1020           $cmd = '$(RC)';
1021           $cmdflags = '$(RCFLAGS)';
1022           $cmdcompile = '';
1023       } elsif (grep /\.(cc|cpp)$/, @srcs) {
1024           $cmd = '$(CXX)';
1025           $cmdcompile = ' -c';
1026           $cmdflags = {
1027               shlib => '$(LIB_CXXFLAGS) $(LIB_CPPFLAGS)',
1028               lib => '$(LIB_CXXFLAGS) $(LIB_CPPFLAGS)',
1029               dso => '$(DSO_CXXFLAGS) $(DSO_CPPFLAGS)',
1030               bin => '$(BIN_CXXFLAGS) $(BIN_CPPFLAGS)'
1031           } -> {$args{intent}};
1032       } else {
1033           $cmd = '$(CC)';
1034           $cmdcompile = ' -c';
1035           $cmdflags = {
1036               shlib => '$(LIB_CFLAGS) $(LIB_CPPFLAGS)',
1037               lib => '$(LIB_CFLAGS) $(LIB_CPPFLAGS)',
1038               dso => '$(DSO_CFLAGS) $(DSO_CPPFLAGS)',
1039               bin => '$(BIN_CFLAGS) $(BIN_CPPFLAGS)'
1040           } -> {$args{intent}};
1041       }
1042       my $recipe;
1043       # extension-specific rules
1044       if (grep /\.s$/, @srcs) {
1045           $recipe .= <<"EOF";
1046 $obj$objext: $deps
1047         $cmd $cmdflags -c -o \$\@ $srcs
1048 EOF
1049       } elsif (grep /\.S$/, @srcs) {
1050           # Originally there was mutli-step rule with $(CC) -E file.S
1051           # followed by $(CC) -c file.s. It compensated for one of
1052           # legacy platform compiler's inability to handle .S files.
1053           # The platform is long discontinued by vendor so there is
1054           # hardly a point to drag it along...
1055           $recipe .= <<"EOF";
1056 $obj$objext: $deps
1057         $cmd $incs $cmdflags -c -o \$\@ $srcs
1058 EOF
1059       } elsif (defined $makedepprog && $makedepprog !~ /\/makedepend/
1060                && !grep /\.rc$/, @srcs) {
1061           $recipe .= <<"EOF";
1062 $obj$objext: $deps
1063         $cmd $incs $cmdflags -MMD -MF $obj$depext.tmp -MT \$\@ -c -o \$\@ $srcs
1064         \@touch $obj$depext.tmp
1065         \@if cmp $obj$depext.tmp $obj$depext > /dev/null 2> /dev/null; then \\
1066                 rm -f $obj$depext.tmp; \\
1067         else \\
1068                 mv $obj$depext.tmp $obj$depext; \\
1069         fi
1070 EOF
1071       } else {
1072           $recipe .= <<"EOF";
1073 $obj$objext: $deps
1074         $cmd $incs $cmdflags $cmdcompile -o \$\@ $srcs
1075 EOF
1076           if (defined $makedepprog  && $makedepprog =~ /\/makedepend/) {
1077               $recipe .= <<"EOF";
1078         \$(MAKEDEPEND) -f- -Y -- $incs $cmdflags -- $srcs 2>/dev/null \\
1079             > $obj$depext
1080 EOF
1081           }
1082       }
1083       return $recipe;
1084   }
1085   # On Unix, we build shlibs from static libs, so we're ignoring the
1086   # object file array.  We *know* this routine is only called when we've
1087   # configure 'shared'.
1088   sub obj2shlib {
1089       my %args = @_;
1090       my $lib = $args{lib};
1091       my $shlib = $args{shlib};
1092       my $libd = dirname($lib);
1093       my $libn = basename($lib);
1094       (my $libname = $libn) =~ s/^lib//;
1095       my @linkdirs = ();
1096       foreach (@{args{deps}}) {
1097           my $d = dirname($_);
1098           push @linkdirs, $d unless grep { $d eq $_ } @linkdirs;
1099       }
1100       my $linkflags = join("", map { "-L$_ " } @linkdirs);
1101       my $linklibs = join("", map { my $f = basename($_);
1102                                     (my $l = $f) =~ s/^lib//;
1103                                     " -l$l" } @{$args{deps}});
1104       my @objs = map { (my $x = $_) =~ s|\.o$||; "$x$objext" }
1105                  grep { $_ !~ m/\.(?:def|map)$/ }
1106                  @{$args{objs}};
1107       my @defs = grep { $_ =~ /\.(?:def|map)$/ } @{$args{objs}};
1108       my @deps = compute_lib_depends(@{$args{deps}});
1109       die "More than one exported symbol map" if scalar @defs > 1;
1110       my $objs = join(" ", @objs);
1111       my $deps = join(" ", @objs, @defs, @deps);
1112       my $target = shlib_simple($lib);
1113       my $target_full = shlib($lib);
1114       my $shared_soname = "";
1115       $shared_soname .= ' '.$target{shared_sonameflag}.basename($target_full)
1116           if defined $target{shared_sonameflag};
1117       my $shared_imp = "";
1118       $shared_imp .= ' '.$target{shared_impflag}.basename($target)
1119           if defined $target{shared_impflag};
1120       my $shared_def = join("", map { ' '.$target{shared_defflag}.$_ } @defs);
1121       my $recipe = <<"EOF";
1122 # When building on a Windows POSIX layer (Cygwin or Mingw), we know for a fact
1123 # that two files get produced, {shlibname}.dll and {libname}.dll.a.
1124 # With all other Unix platforms, we often build a shared library with the
1125 # SO version built into the file name and a symlink without the SO version
1126 # It's not necessary to have both as targets.  The choice falls on the
1127 # simplest, {libname}\$(SHLIB_EXT_IMPORT) for Windows POSIX layers and
1128 # {libname}\$(SHLIB_EXT_SIMPLE) for the Unix platforms.
1129 $target: $deps
1130         \$(CC) \$(LIB_CFLAGS) $linkflags\$(LIB_LDFLAGS)$shared_soname$shared_imp \\
1131                 -o $target_full$shared_def $objs \\
1132                 $linklibs \$(LIB_EX_LIBS)
1133 EOF
1134       if (windowsdll()) {
1135           $recipe .= <<"EOF";
1136         rm -f apps/$shlib'\$(SHLIB_EXT)'
1137         rm -f test/$shlib'\$(SHLIB_EXT)'
1138         rm -f fuzz/$shlib'\$(SHLIB_EXT)'
1139         cp -p $shlib'\$(SHLIB_EXT)' apps/
1140         cp -p $shlib'\$(SHLIB_EXT)' test/
1141         cp -p $shlib'\$(SHLIB_EXT)' fuzz/
1142 EOF
1143       } elsif (sharedaix()) {
1144           $recipe .= <<"EOF";
1145         rm -f $target && \\
1146         \$(AR) r $target $target_full
1147 EOF
1148       } else {
1149           $recipe .= <<"EOF";
1150         if [ '$target' != '$target_full' ]; then \\
1151                 rm -f $target; \\
1152                 ln -s $target_full $target; \\
1153         fi
1154 EOF
1155       }
1156   }
1157   sub obj2dso {
1158       my %args = @_;
1159       my $dso = $args{lib};
1160       my $dsod = dirname($dso);
1161       my $dson = basename($dso);
1162       my @linkdirs = ();
1163       foreach (@{args{deps}}) {
1164           my $d = dirname($_);
1165           push @linkdirs, $d unless grep { $d eq $_ } @linkdirs;
1166       }
1167       my $linkflags = join("", map { "-L$_ " } @linkdirs);
1168       my $linklibs = join("", map { my $f = basename($_);
1169                                     (my $l = $f) =~ s/^lib//;
1170                                     " -l$l" } @{$args{deps}});
1171       my @objs = map { (my $x = $_) =~ s|\.o$||; "$x$objext" }
1172                  grep { $_ !~ m/\.(?:def|map)$/ }
1173                  @{$args{objs}};
1174       my @deps = compute_lib_depends(@{$args{deps}});
1175       my $objs = join(" ", @objs);
1176       my $deps = join(" ", @deps);
1177       my $target = dso($dso);
1178       return <<"EOF";
1179 $target: $objs $deps
1180         \$(CC) \$(DSO_CFLAGS) $linkflags\$(DSO_LDFLAGS) \\
1181                 -o $target $objs \\
1182                 $linklibs \$(DSO_EX_LIBS)
1183 EOF
1184   }
1185   sub obj2lib {
1186       my %args = @_;
1187       (my $lib = $args{lib}) =~ s/\.a$//;
1188       my @objs = map { (my $x = $_) =~ s|\.o$|$objext|; $x } @{$args{objs}};
1189       my $objs = join(" ", @objs);
1190       return <<"EOF";
1191 $lib$libext: $objs
1192         \$(AR) \$(ARFLAGS) \$\@ \$\?
1193         \$(RANLIB) \$\@ || echo Never mind.
1194 EOF
1195   }
1196   sub obj2bin {
1197       my %args = @_;
1198       my $bin = $args{bin};
1199       my $bind = dirname($bin);
1200       my $binn = basename($bin);
1201       my $objs = join(" ", map { (my $x = $_) =~ s|\.o$||; "$x$objext" }
1202                            @{$args{objs}});
1203       my $deps = join(" ",compute_lib_depends(@{$args{deps}}));
1204       my @linkdirs = ();
1205       foreach (@{args{deps}}) {
1206           next if $_ =~ /\.a$/;
1207           my $d = dirname($_);
1208           push @linkdirs, $d unless grep { $d eq $_ } @linkdirs;
1209       }
1210       my $linkflags = join("", map { "-L$_ " } @linkdirs);
1211       my $linklibs = join("", map { if ($_ =~ s/\.a$//) {
1212                                         " $_$libext";
1213                                     } else {
1214                                         my $f = basename($_);
1215                                         (my $l = $f) =~ s/^lib//;
1216                                         " -l$l"
1217                                     }
1218                                   } @{$args{deps}});
1219       my $cmd = '$(CC)';
1220       my $cmdflags = '$(BIN_CFLAGS)';
1221       if (grep /_cc\.o$/, @{$args{objs}}) {
1222           $cmd = '$(CXX)';
1223           $cmdflags = '$(BIN_CXXFLAGS)';
1224       }
1225       return <<"EOF";
1226 $bin$exeext: $objs $deps
1227         rm -f $bin$exeext
1228         \$\${LDCMD:-$cmd} $cmdflags $linkflags\$(BIN_LDFLAGS) \\
1229                 -o $bin$exeext $objs \\
1230                 $linklibs \$(BIN_EX_LIBS)
1231 EOF
1232   }
1233   sub in2script {
1234       my %args = @_;
1235       my $script = $args{script};
1236       my $sources = join(" ", @{$args{sources}});
1237       my $dofile = abs2rel(rel2abs(catfile($config{sourcedir},
1238                                            "util", "dofile.pl")),
1239                            rel2abs($config{builddir}));
1240       return <<"EOF";
1241 $script: $sources
1242         \$(PERL) "-I\$(BLDDIR)" -Mconfigdata "$dofile" \\
1243             "-o$target{build_file}" $sources > "$script"
1244         chmod a+x $script
1245 EOF
1246   }
1247   sub generatedir {
1248       my %args = @_;
1249       my $dir = $args{dir};
1250       my @deps = map { s|\.o$|$objext|; $_ } @{$args{deps}};
1251       my @actions = ();
1252       my %extinfo = ( dso => $dsoext,
1253                       lib => $libext,
1254                       bin => $exeext );
1255
1256       foreach my $type (("dso", "lib", "bin", "script")) {
1257           next unless defined($unified_info{dirinfo}->{$dir}->{products}->{$type});
1258           # For lib object files, we could update the library.  However, it
1259           # was decided that it's enough to build the directory local object
1260           # files, so we don't need to add any actions, and the dependencies
1261           # are already taken care of.
1262           if ($type ne "lib") {
1263               foreach my $prod (@{$unified_info{dirinfo}->{$dir}->{products}->{$type}}) {
1264                   if (dirname($prod) eq $dir) {
1265                       push @deps, $prod.$extinfo{$type};
1266                   } else {
1267                       push @actions, "\t@ : No support to produce $type ".join(", ", @{$unified_info{dirinfo}->{$dir}->{products}->{$type}});
1268                   }
1269               }
1270           }
1271       }
1272
1273       my $deps = join(" ", @deps);
1274       my $actions = join("\n", "", @actions);
1275       return <<"EOF";
1276 $args{dir} $args{dir}/: $deps$actions
1277 EOF
1278   }
1279   ""    # Important!  This becomes part of the template result.
1280 -}