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