Refactor util/mkdef.pl for clearer separation of functionality
[openssl.git] / Configurations / descrip.mms.tmpl
1 ## descrip.mms to build OpenSSL on OpenVMS
2 ##
3 ## {- join("\n## ", @autowarntext) -}
4 {-
5   use File::Spec::Functions qw/:DEFAULT abs2rel rel2abs/;
6   use File::Basename;
7
8   # Our prefix, claimed when speaking with the VSI folks Tuesday
9   # January 26th 2016
10   our $osslprefix = 'OSSL$';
11   (our $osslprefix_q = $osslprefix) =~ s/\$/\\\$/;
12
13   our $sover_dirname = sprintf "%02d%02d", split(/\./, $config{shlib_version_number});
14   our $osslver = sprintf "%02d%02d", split(/\./, $config{version});
15
16   our $sourcedir = $config{sourcedir};
17   our $builddir = $config{builddir};
18   sub sourcefile {
19       catfile($sourcedir, @_);
20   }
21   sub buildfile {
22       catfile($builddir, @_);
23   }
24   sub sourcedir {
25       catdir($sourcedir, @_);
26   }
27   sub builddir {
28       catdir($builddir, @_);
29   }
30   sub tree {
31       (my $x = shift) =~ s|\]$|...]|;
32       $x
33   }
34   sub move {
35       my $f = catdir(@_);
36       my $b = abs2rel(rel2abs("."),rel2abs($f));
37       $sourcedir = catdir($b,$sourcedir)
38           if !file_name_is_absolute($sourcedir);
39       $builddir = catdir($b,$builddir)
40           if !file_name_is_absolute($builddir);
41       "";
42   }
43
44   # Because we need to make two computations of these data,
45   # we store them in arrays for reuse
46   our @libs =
47       map { (my $x = $_) =~ s/\.a$//; $x }
48       @{$unified_info{libraries}};
49   our @shlibs =
50       map { $unified_info{sharednames}->{$_} || () }
51       grep(!/\.a$/, @{$unified_info{libraries}});
52   our @install_libs =
53       map { (my $x = $_) =~ s/\.a$//; $x }
54       @{$unified_info{install}->{libraries}};
55   our @install_shlibs =
56       map { $unified_info{sharednames}->{$_} || () }
57       grep(!/\.a$/, @{$unified_info{install}->{libraries}});
58
59   # This is a horrible hack, but is needed because recursive inclusion of files
60   # in different directories does not work well with HP C.
61   my $sd = sourcedir("crypto", "async", "arch");
62   foreach (grep /\[\.crypto\.async\.arch\].*\.o$/, keys %{$unified_info{sources}}) {
63       (my $x = $_) =~ s|\.o$|.OBJ|;
64       $unified_info{before}->{$x}
65           = qq(arch_include = F\$PARSE("$sd","A.;",,,"SYNTAX_ONLY") - "A.;"
66         define arch 'arch_include');
67       $unified_info{after}->{$x}
68           = qq(deassign arch);
69   }
70   my $sd1 = sourcedir("ssl","record");
71   my $sd2 = sourcedir("ssl","statem");
72   my @ssl_locl_users = grep(/^\[\.(?:ssl\.(?:record|statem)|test)\].*\.o$/,
73                             keys %{$unified_info{sources}});
74   foreach (@ssl_locl_users) {
75       (my $x = $_) =~ s|\.o$|.OBJ|;
76       $unified_info{before}->{$x}
77           = qq(record_include = F\$PARSE("$sd1","A.;",,,"SYNTAX_ONLY") - "A.;"
78         define record 'record_include'
79         statem_include = F\$PARSE("$sd2","A.;",,,"SYNTAX_ONLY") - "A.;"
80         define statem 'statem_include');
81       $unified_info{after}->{$x}
82           = qq(deassign statem
83         deassign record);
84   }
85   # This makes sure things get built in the order they need
86   # to. You're welcome.
87   sub dependmagic {
88       my $target = shift;
89
90       return "$target : build_generated\n\t\pipe \$(MMS) \$(MMSQUALIFIERS) depend && \$(MMS) \$(MMSQUALIFIERS) _$target\n_$target";
91   }
92   #use Data::Dumper;
93   #print STDERR "DEBUG: before:\n", Dumper($unified_info{before});
94   #print STDERR "DEBUG: after:\n", Dumper($unified_info{after});
95   "";
96 -}
97 PLATFORM={- $config{target} -}
98 OPTIONS={- $config{options} -}
99 CONFIGURE_ARGS=({- join(", ",quotify_l(@{$config{perlargv}})) -})
100 SRCDIR={- $config{sourcedir} -}
101 BLDDIR={- $config{builddir} -}
102
103 # Allow both V and VERBOSE to indicate verbosity.  This only applies
104 # to testing.
105 VERBOSE=$(V)
106
107 VERSION={- $config{version} -}
108 MAJOR={- $config{major} -}
109 MINOR={- $config{minor} -}
110 SHLIB_VERSION_NUMBER={- $config{shlib_version_number} -}
111 SHLIB_VERSION_HISTORY={- $config{shlib_version_history} -}
112 SHLIB_MAJOR={- $config{shlib_major} -}
113 SHLIB_MINOR={- $config{shlib_minor} -}
114 SHLIB_TARGET={- $target{shared_target} -}
115
116 EXE_EXT=.EXE
117 LIB_EXT=.OLB
118 SHLIB_EXT=.EXE
119 OBJ_EXT=.OBJ
120 DEP_EXT=.D
121
122 LIBS={- join(", ", map { "-\n\t".$_.".OLB" } @libs) -}
123 SHLIBS={- join(", ", map { "-\n\t".$_.".EXE" } @shlibs) -}
124 ENGINES={- join(", ", map { "-\n\t".$_.".EXE" } @{$unified_info{engines}}) -}
125 PROGRAMS={- join(", ", map { "-\n\t".$_.".EXE" } @{$unified_info{programs}}) -}
126 SCRIPTS={- join(", ", map { "-\n\t".$_ } @{$unified_info{scripts}}) -}
127 {- output_off() if $disabled{makedepend}; "" -}
128 DEPS={- our @deps = map { (my $x = $_) =~ s|\.o$|\$(DEP_EXT)|; $x; }
129                     grep { $unified_info{sources}->{$_}->[0] =~ /\.c$/ }
130                     keys %{$unified_info{sources}};
131         join(", ", map { "-\n\t".$_ } @deps); -}
132 {- output_on() if $disabled{makedepend}; "" -}
133 GENERATED_MANDATORY={- join(", ", map { "-\n\t".$_ } @{$unified_info{depends}->{""}} ) -}
134 GENERATED={- # common0.tmpl provides @generated
135              join(", ", map { my $x = $_;
136                               $x =~ s|\.[sS]$|.asm|;
137                               $x =~ s|\.ld$|.OPT|;
138                               "-\n\t".$x }
139                         @generated) -}
140
141 INSTALL_LIBS={- join(", ", map { "-\n\t".$_.".OLB" } @install_libs) -}
142 INSTALL_SHLIBS={- join(", ", map { "-\n\t".$_.".EXE" } @install_shlibs) -}
143 INSTALL_ENGINES={- join(", ", map { "-\n\t".$_.".EXE" } @{$unified_info{install}->{engines}}) -}
144 INSTALL_PROGRAMS={- join(", ", map { "-\n\t".$_.".EXE" } @{$unified_info{install}->{programs}}) -}
145 {- output_off() if $disabled{apps}; "" -}
146 BIN_SCRIPTS=[.tools]c_rehash.pl
147 MISC_SCRIPTS=[.apps]CA.pl, [.apps]tsget.pl
148 {- output_on() if $disabled{apps}; "" -}
149
150 APPS_OPENSSL={- use File::Spec::Functions;
151                 catfile("apps","openssl") -}
152
153 # DESTDIR is for package builders so that they can configure for, say,
154 # SYS$COMMON:[OPENSSL] and yet have everything installed in STAGING:[USER].
155 # In that case, configure with --prefix=SYS$COMMON:[OPENSSL] and then run
156 # MMS with /MACROS=(DESTDIR=STAGING:[USER]).  The result will end up in
157 # STAGING:[USER.OPENSSL].
158 # Normally it is left empty.
159 DESTDIR=
160
161 # Do not edit this manually. Use Configure --prefix=DIR to change this!
162 INSTALLTOP={- our $installtop =
163                   catdir($config{prefix}) || "SYS\$COMMON:[OPENSSL]";
164               $installtop -}
165 SYSTARTUP={- catdir($installtop, '[.SYS$STARTUP]'); -}
166 # This is the standard central area to store certificates, private keys...
167 OPENSSLDIR={- catdir($config{openssldir}) or
168               $config{prefix} ? catdir($config{prefix},"COMMON")
169                               : "SYS\$COMMON:[OPENSSL-COMMON]" -}
170 # The same, but for C
171 OPENSSLDIR_C={- $osslprefix -}DATAROOT:[000000]
172 # Where installed engines reside, for C
173 ENGINESDIR_C={- $osslprefix -}ENGINES{- $sover_dirname.$target{pointer_size} -}:
174
175 ##### User defined commands and flags ################################
176
177 CC={- $config{CC} -}
178 CPP={- $config{CPP} -}
179 DEFINES={- our $defines1 = join('', map { ",$_" } @{$config{CPPDEFINES}}) -}
180 INCLUDES={- our $includes1 = join(',', @{$config{CPPINCLUDES}}) -}
181 CPPFLAGS={- our $cppflags1 = join('', @{$config{CPPFLAGS}}) -}
182 CFLAGS={- join('', @{$config{CFLAGS}}) -}
183 LDFLAGS={- join('', @{$config{LFLAGS}}) -}
184 EX_LIBS={- join('', map { ",$_" } @{$config{LDLIBS}}) -}
185
186 PERL={- $config{PERL} -}
187
188 AS={- $config{AS} -}
189 ASFLAGS={- join(' ', @{$config{ASFLAGS}}) -}
190
191 ##### Special command flags ##########################################
192
193 ASOUTFLAG={- $target{asoutflag} -}$(OSSL_EMPTY)
194
195 ##### Project flags ##################################################
196
197 # Variables starting with CNF_ are common variables for all product types
198
199 CNF_ASFLAGS={- join('', $target{asflags} || (),
200                         @{$config{asflags}}) -}
201 CNF_DEFINES={- our $defines2 = join('', map { ",$_" } @{$target{defines}},
202                                                       @{$config{defines}}) -}
203 CNF_INCLUDES={- our $includes2 = join(',', @{$target{includes}},
204                                            @{$config{includes}}) -}
205 CNF_CPPFLAGS={- our $cppflags2 = join('', $target{cppflags} || (),
206                                           @{$config{cppflags}}) -}
207 CNF_CFLAGS={- join('', $target{cflags} || (),
208                        @{$config{cflags}}) -}
209 CNF_CXXFLAGS={- join('', $target{cxxflags} || (),
210                          @{$config{cxxflags}}) -}
211 CNF_LDFLAGS={- join('', $target{lflags} || (),
212                         @{$config{lflags}}) -}
213 CNF_EX_LIBS={- join('', map{ ",$_" } @{$target{ex_libs}},
214                                      @{$config{ex_libs}}) -}
215
216 # Variables starting with LIB_ are used to build library object files
217 # and shared libraries.
218 # Variables starting with DSO_ are used to build DSOs and their object files.
219 # Variables starting with BIN_ are used to build programs and their object
220 # files.
221
222 LIB_ASFLAGS={- join(' ', $target{lib_asflags} || (),
223                          @{$config{lib_asflags}},
224                          '$(CNF_ASFLAGS)', '$(ASFLAGS)') -}
225 LIB_DEFINES={- our $lib_defines =
226                join('', (map { ",$_" } @{$target{lib_defines}},
227                                        @{$target{shared_defines}},
228                                        @{$config{lib_defines}},
229                                        @{$config{shared_defines}}));
230                join('', $lib_defines,
231                         (map { ",$_" } 'OPENSSLDIR="""$(OPENSSLDIR_C)"""',
232                                        'ENGINESDIR="""$(ENGINESDIR_C)"""'),
233                         '$(CNF_DEFINES)', '$(DEFINES)') -}
234 LIB_INCLUDES={- our $lib_includes =
235                 join(',', @{$target{lib_includes}},
236                           @{$target{shared_includes}},
237                           @{$config{lib_includes}},
238                           @{$config{shared_includes}}) -}
239 LIB_CPPFLAGS={- our $lib_cppflags =
240                 join('', $target{lib_cppflags} || (),
241                          $target{shared_cppflags} || (),
242                          @{$config{lib_cppflags}},
243                          @{$config{shared_cppflag}});
244                 join('', "'qual_includes'",
245                          '/DEFINE=(__dummy$(LIB_DEFINES))',
246                          $lib_cppflags,
247                          '$(CNF_CPPFLAGS)', '$(CPPFLAGS)') -}
248 LIB_CFLAGS={- join('', $target{lib_cflags} || (),
249                        $target{shared_cflag} || (),
250                        @{$config{lib_cflags}},
251                        @{$config{shared_cflag}},
252                        '$(CNF_CFLAGS)', '$(CFLAGS)') -}
253 LIB_LDFLAGS={- join('', $target{lib_lflags} || (),
254                         $target{shared_ldflag} || (),
255                         @{$config{lib_lflags}},
256                         @{$config{shared_ldflag}},
257                         '$(CNF_LDFLAGS)', '$(LDFLAGS)') -}
258 LIB_EX_LIBS=$(CNF_EX_LIBS)$(EX_LIBS)
259 DSO_ASFLAGS={- join(' ', $target{dso_asflags} || (),
260                          $target{module_asflags} || (),
261                          @{$config{dso_asflags}},
262                          @{$config{module_asflags}},
263                          '$(CNF_ASFLAGS)', '$(ASFLAGS)') -}
264 DSO_DEFINES={- join('', (map { ",$_" } @{$target{dso_defines}},
265                                        @{$target{module_defines}},
266                                        @{$config{dso_defines}},
267                                        @{$config{module_defines}}),
268                         '$(CNF_DEFINES)', '$(DEFINES)') -}
269 DSO_INCLUDES={- join(',', @{$target{dso_includes}},
270                           @{$target{module_includes}},
271                           @{$config{dso_includes}},
272                           @{$config{module_includes}}) -}
273 DSO_CPPFLAGS={- join('', "'qual_includes'",
274                          '/DEFINE=(__dummy$(DSO_DEFINES))',
275                          $target{dso_cppflags} || (),
276                          $target{module_cppflags} || (),
277                          @{$config{dso_cppflags}},
278                          @{$config{module_cppflags}},
279                          '$(CNF_CPPFLAGS)', '$(CPPFLAGS)') -}
280 DSO_CFLAGS={- join('', $target{dso_cflags} || (),
281                        $target{module_cflags} || (),
282                        @{$config{dso_cflags}},
283                        @{$config{module_cflags}},
284                        '$(CNF_CFLAGS)', '$(CFLAGS)') -}
285 DSO_LDFLAGS={- join('', $target{dso_lflags} || (),
286                         $target{module_ldflags} || (),
287                         @{$config{dso_lflags}},
288                         @{$config{module_ldflags}},
289                         '$(CNF_LDFLAGS)', '$(LDFLAGS)') -}
290 DSO_EX_LIBS=$(CNF_EX_LIBS) $(EX_LIBS)
291 BIN_ASFLAGS={- join(' ', $target{bin_asflags} || (),
292                          @{$config{bin_asflags}},
293                          '$(CNF_ASFLAGS)', '$(ASFLAGS)') -}
294 BIN_DEFINES={- join('', (map { ",$_" } @{$target{bin_defines}},
295                                        @{$config{bin_defines}}),
296                         '$(CNF_DEFINES)', '$(DEFINES)') -}
297 BIN_INCLUDES={- join(',', @{$target{bin_includes}},
298                           @{$config{bin_includes}}) -}
299 BIN_CPPFLAGS={- join('', "'qual_includes'",
300                          '/DEFINE=(__dummy$(DSO_DEFINES))',
301                          $target{bin_cppflags} || (),
302                          @{$config{bin_cppflag}},
303                          '$(CNF_CPPFLAGS)', '$(CPPFLAGS)') -}
304 BIN_CFLAGS={- join('', $target{bin_cflags} || (),
305                        @{$config{bin_cflags}},
306                        '$(CNF_CFLAGS)', '$(CFLAGS)') -}
307 BIN_LDFLAGS={- join('', $target{bin_lflags} || (),
308                         @{$config{bin_lflags}} || (),
309                         '$(CNF_LDFLAGS)', '$(LDFLAGS)') -}
310 BIN_EX_LIBS=$(CNF_EX_LIBS) $(EX_LIBS)
311 NO_INST_LIB_CFLAGS={- join('', $target{no_inst_lib_cflags}
312                                // $target{lib_cflags}
313                                // (),
314                                $target{shared_cflag} || (),
315                                @{$config{lib_cflags}},
316                                @{$config{shared_cflag}},
317                                '$(CNF_CFLAGS)', '$(CFLAGS)') -}
318 NO_INST_DSO_CFLAGS={- join('', $target{no_inst_dso_cflags}
319                                // $target{dso_cflags}
320                                // (),
321                                $target{no_inst_module_cflags}
322                                // $target{module_cflags}
323                                // (),
324                                @{$config{dso_cflags}},
325                                @{$config{module_cflags}},
326                                '$(CNF_CFLAGS)', '$(CFLAGS)') -}
327 NO_INST_BIN_CFLAGS={- join('', $target{no_inst_bin_cflags}
328                                // $target{bin_cflags}
329                                // (),
330                                @{$config{bin_cflags}},
331                                '$(CNF_CFLAGS)', '$(CFLAGS)') -}
332
333 PERLASM_SCHEME={- $target{perlasm_scheme} -}
334
335 # CPPFLAGS_Q is used for one thing only: to build up buildinf.h
336 CPPFLAGS_Q={- (my $c = $lib_cppflags.$cppflags2.$cppflags1) =~ s|"|""|g;
337               (my $d = $lib_defines.$defines2.$defines1) =~ s|"|""|g;
338               my $i = join(',', $lib_includes || (), $includes2 || (),
339                                 $includes1 || ());
340               my $x = $c;
341               $x .= "/INCLUDE=($i)" if $i;
342               $x .= "/DEFINE=($d)" if $d;
343               $x; -}
344
345 # .FIRST and .LAST are special targets with MMS and MMK.
346 # The defines in there are for C.  includes that look like
347 # this:
348 #
349 #    #include <openssl/foo.h>
350 #    #include "internal/bar.h"
351 #
352 # will use the logical names to find the files.  Expecting
353 # DECompHP C to find files in subdirectories of whatever was
354 # given with /INCLUDE is a fantasy, unfortunately.
355 NODEBUG=@
356 .FIRST :
357         $(NODEBUG) openssl_inc1 = F$PARSE("[.include.openssl]","A.;",,,"syntax_only") - "A.;"
358         $(NODEBUG) openssl_inc2 = F$PARSE("{- catdir($config{sourcedir},"[.include.openssl]") -}","A.;",,,"SYNTAX_ONLY") - "A.;"
359         $(NODEBUG) internal_inc1 = F$PARSE("[.crypto.include.internal]","A.;",,,"SYNTAX_ONLY") - "A.;"
360         $(NODEBUG) internal_inc2 = F$PARSE("{- catdir($config{sourcedir},"[.include.internal]") -}","A.;",,,"SYNTAX_ONLY") - "A.;"
361         $(NODEBUG) internal_inc3 = F$PARSE("{- catdir($config{sourcedir},"[.crypto.include.internal]") -}","A.;",,,"SYNTAX_ONLY") - "A.;"
362         $(NODEBUG) DEFINE openssl 'openssl_inc1','openssl_inc2'
363         $(NODEBUG) DEFINE internal 'internal_inc1','internal_inc2','internal_inc3'
364         $(NODEBUG) staging_dir = "$(DESTDIR)"
365         $(NODEBUG) staging_instdir = ""
366         $(NODEBUG) staging_datadir = ""
367         $(NODEBUG) IF staging_dir .NES. "" THEN -
368                 staging_instdir = F$PARSE("A.;",staging_dir,"[]",,"SYNTAX_ONLY")
369         $(NODEBUG) IF staging_instdir - "]A.;" .NES. staging_instdir THEN -
370                 staging_instdir = staging_instdir - "]A.;" + ".OPENSSL-INSTALL]"
371         $(NODEBUG) IF staging_instdir - "A.;" .NES. staging_instdir THEN -
372                 staging_instdir = staging_instdir - "A.;" + "[OPENSSL-INSTALL]"
373         $(NODEBUG) IF staging_dir .NES. "" THEN -
374                 staging_datadir = F$PARSE("A.;",staging_dir,"[]",,"SYNTAX_ONLY")
375         $(NODEBUG) IF staging_datadir - "]A.;" .NES. staging_datadir THEN -
376                 staging_datadir = staging_datadir - "]A.;" + ".OPENSSL-COMMON]"
377         $(NODEBUG) IF staging_datadir - "A.;" .NES. staging_datadir THEN -
378                 staging_datadir = staging_datadir - "A.;" + "[OPENSSL-COMMON]"
379         $(NODEBUG) !
380         $(NODEBUG) ! Installation logical names
381         $(NODEBUG) !
382         $(NODEBUG) installtop = F$PARSE(staging_instdir,"$(INSTALLTOP)","[]A.;",,"SYNTAX_ONLY,NO_CONCEAL") - ".][000000" - "[000000." - "][" - "]A.;" + ".]"
383         $(NODEBUG) datatop = F$PARSE(staging_datadir,"$(OPENSSLDIR)","[]A.;",,"SYNTAX_ONLY,NO_CONCEAL") - ".][000000" - "[000000." - "][" - "]A.;" + ".]"
384         $(NODEBUG) DEFINE ossl_installroot 'installtop'
385         $(NODEBUG) DEFINE ossl_dataroot 'datatop'
386         $(NODEBUG) !
387         $(NODEBUG) ! Figure out the architecture
388         $(NODEBUG) !
389         $(NODEBUG) arch = f$edit( f$getsyi( "arch_name"), "upcase")
390         $(NODEBUG) !
391         $(NODEBUG) ! Set up logical names for the libraries, so LINK and
392         $(NODEBUG) ! running programs can use them.
393         $(NODEBUG) !
394         $(NODEBUG) {- join("\n\t\$(NODEBUG) ", map { "DEFINE ".uc($_)." 'F\$ENV(\"DEFAULT\")'".uc($_)."\$(SHLIB_EXT)" } @shlibs) || "!" -}
395
396 .LAST :
397         $(NODEBUG) {- join("\n\t\$(NODEBUG) ", map { "DEASSIGN ".uc($_) } @shlibs) || "!" -}
398         $(NODEBUG) DEASSIGN ossl_dataroot
399         $(NODEBUG) DEASSIGN ossl_installroot
400         $(NODEBUG) DEASSIGN internal
401         $(NODEBUG) DEASSIGN openssl
402 .DEFAULT :
403         @ ! MMS cannot handle no actions...
404
405 # The main targets ###################################################
406
407 {- dependmagic('all'); -} : build_libs_nodep, build_engines_nodep, build_programs_nodep
408 {- dependmagic('build_libs'); -} : build_libs_nodep
409 {- dependmagic('build_engines'); -} : build_engines_nodep
410 {- dependmagic('build_programs'); -} : build_programs_nodep
411
412 build_generated : $(GENERATED_MANDATORY)
413 build_libs_nodep : $(LIBS), $(SHLIBS)
414 build_engines_nodep : $(ENGINES)
415 build_programs_nodep : $(PROGRAMS), $(SCRIPTS)
416
417 # Kept around for backward compatibility
418 build_apps build_tests : build_programs
419
420 # Convenience target to prebuild all generated files, not just the mandatory
421 # ones
422 build_all_generated : $(GENERATED_MANDATORY) $(GENERATED)
423         @ ! {- output_off() if $disabled{makedepend}; "" -}
424         @ WRITE SYS$OUTPUT "Warning: consider configuring with no-makedepend, because if"
425         @ WRITE SYS$OUTPUT "         target system doesn't have $(PERL),"
426         @ WRITE SYS$OUTPUT "         then make will fail..."
427         @ ! {- output_on() if $disabled{makedepend}; "" -}
428
429 test : tests
430 {- dependmagic('tests'); -} : build_programs_nodep, build_engines_nodep
431         @ ! {- output_off() if $disabled{tests}; "" -}
432         SET DEFAULT [.test]{- move("test") -}
433         CREATE/DIR [.test-runs]
434         DEFINE SRCTOP {- sourcedir() -}
435         DEFINE BLDTOP {- builddir() -}
436         DEFINE RESULT_D {- builddir(qw(test test-runs)) -}
437         DEFINE OPENSSL_ENGINES {- builddir("engines") -}
438         DEFINE OPENSSL_DEBUG_MEMORY "on"
439         IF "$(VERBOSE)" .NES. "" THEN DEFINE VERBOSE "$(VERBOSE)"
440         $(PERL) {- sourcefile("test", "run_tests.pl") -} $(TESTS)
441         DEASSIGN OPENSSL_DEBUG_MEMORY
442         DEASSIGN OPENSSL_ENGINES
443         DEASSIGN BLDTOP
444         DEASSIGN SRCTOP
445         SET DEFAULT [-]{- move("..") -}
446         @ ! {- if ($disabled{tests}) { output_on(); } else { output_off(); } "" -}
447         @ WRITE SYS$OUTPUT "Tests are not supported with your chosen Configure options"
448         @ ! {- output_on() if !$disabled{tests}; "" -}
449
450 list-tests :
451         @ ! {- output_off() if $disabled{tests}; "" -}
452         @ DEFINE SRCTOP {- sourcedir() -}
453         @ $(PERL) {- sourcefile("test", "run_tests.pl") -} list
454         @ DEASSIGN SRCTOP
455         @ ! {- if ($disabled{tests}) { output_on(); } else { output_off(); } "" -}
456         @ WRITE SYS$OUTPUT "Tests are not supported with your chosen Configure options"
457         @ ! {- output_on() if !$disabled{tests}; "" -}
458
459 install : install_sw install_ssldirs install_docs
460         @ WRITE SYS$OUTPUT ""
461         @ WRITE SYS$OUTPUT "######################################################################"
462         @ WRITE SYS$OUTPUT ""
463         @ IF "$(DESTDIR)" .EQS. "" THEN -
464              PIPE ( WRITE SYS$OUTPUT "Installation complete" ; -
465                     WRITE SYS$OUTPUT "" ; -
466                     WRITE SYS$OUTPUT "Run @$(SYSTARTUP)openssl_startup{- $osslver -} to set up logical names" ; -
467                     WRITE SYS$OUTPUT "then run @$(SYSTARTUP)openssl_utils{- $osslver -} to define commands" ; -
468                     WRITE SYS$OUTPUT "" )
469         @ IF "$(DESTDIR)" .NES. "" THEN -
470              PIPE ( WRITE SYS$OUTPUT "Staging installation complete" ; -
471                     WRITE SYS$OUTPUT "" ; -
472                     WRITE SYS$OUTPUT "Finish or package in such a way that the contents of the directory tree" ; -
473                     WRITE SYS$OUTPUT staging_instdir ; -
474                     WRITE SYS$OUTPUT "ends up in $(INSTALLTOP)," ; -
475                     WRITE SYS$OUTPUT "and that the contents of the contents of the directory tree" ; -
476                     WRITE SYS$OUTPUT staging_datadir ; -
477                     WRITE SYS$OUTPUT "ends up in $(OPENSSLDIR)" ; -
478                     WRITE SYS$OUTPUT "" ; -
479                     WRITE SYS$OUTPUT "When in its final destination," ; -
480                     WRITE SYS$OUTPUT "Run @$(SYSTARTUP)openssl_startup{- $osslver -} to set up logical names" ; -
481                     WRITE SYS$OUTPUT "then run @$(SYSTARTUP)openssl_utils{- $osslver -} to define commands" ; -
482                     WRITE SYS$OUTPUT "" )
483
484 check_install :
485         spawn/nolog @ossl_installroot:[SYSTEST]openssl_ivp{- $osslver -}.com
486
487 uninstall : uninstall_docs uninstall_sw
488
489 # Because VMS wants the generation number (or *) to delete files, we can't
490 # use $(LIBS), $(PROGRAMS), $(GENERATED) and $(ENGINES)directly.
491 libclean :
492         {- join("\n\t", map { "- DELETE $_.OLB;*" } @libs) || "@ !" -}
493         {- join("\n\t", map { "- DELETE $_.EXE;*,$_.MAP;*" } @shlibs) || "@ !" -}
494
495 clean : libclean
496         {- join("\n\t", map { "- DELETE $_.EXE;*,$_.OPT;*" } @{$unified_info{programs}}) || "@ !" -}
497         {- join("\n\t", map { "- DELETE $_.EXE;*,$_.OPT;*" } @{$unified_info{engines}}) || "@ !" -}
498         {- join("\n\t", map { "- DELETE $_;*" } @{$unified_info{scripts}}) || "@ !" -}
499         {- join("\n\t", map { "- DELETE $_;*" } @{$unified_info{depends}->{""}}) || "@ !" -}
500         {- join("\n\t", map { "- DELETE $_;*" } @generated) || "@ !" -}
501         - DELETE [...]*.MAP;*
502         - DELETE [...]*.D;*
503         - DELETE [...]*.OBJ;*,*.LIS;*
504         - DELETE []CXX$DEMANGLER_DB.;*
505         - DELETE [.VMS]openssl_startup.com;*
506         - DELETE [.VMS]openssl_shutdown.com;*
507         - DELETE []vmsconfig.pm;*
508
509 distclean : clean
510         - DELETE configdata.pm;*
511         - DELETE descrip.mms;*
512
513 depend : descrip.mms
514 descrip.mms : FORCE
515         @ ! {- output_off() if $disabled{makedepend}; "" -}
516         @ $(PERL) {- sourcefile("util", "add-depends.pl") -} "VMS C"
517         @ ! {- output_on() if $disabled{makedepend}; "" -}
518
519 # Install helper targets #############################################
520
521 install_sw : all install_shared _install_dev_ns -
522              install_engines _install_runtime_ns -
523              install_startup install_ivp
524
525 uninstall_sw : uninstall_shared _uninstall_dev_ns -
526                uninstall_engines _uninstall_runtime_ns -
527                uninstall_startup uninstall_ivp
528
529 install_docs : install_html_docs
530
531 uninstall_docs : uninstall_html_docs
532
533 install_ssldirs : check_INSTALLTOP
534         - CREATE/DIR/PROT=(S:RWED,O:RWE,G:RE,W:RE) OSSL_DATAROOT:[000000]
535         IF F$SEARCH("OSSL_DATAROOT:[000000]CERTS.DIR;1") .EQS. "" THEN -
536                 CREATE/DIR/PROT=(S:RWED,O:RWE,G:RE,W:RE) OSSL_DATAROOT:[CERTS]
537         IF F$SEARCH("OSSL_DATAROOT:[000000]PRIVATE.DIR;1") .EQS. "" THEN -
538                 CREATE/DIR/PROT=(S:RWED,O:RWE,G,W) OSSL_DATAROOT:[PRIVATE]
539         IF F$SEARCH("OSSL_DATAROOT:[000000]MISC.DIR;1") .EQS. "" THEN -
540                 CREATE/DIR/PROT=(S:RWED,O:RWE,G,W) OSSL_DATAROOT:[MISC]
541         COPY/PROT=W:RE $(MISC_SCRIPTS) OSSL_DATAROOT:[MISC]
542         @ ! Install configuration file
543         COPY/PROT=W:R {- sourcefile("apps", "openssl-vms.cnf") -} -
544                 ossl_dataroot:[000000]openssl.cnf-dist
545         IF F$SEARCH("OSSL_DATAROOT:[000000]openssl.cnf") .EQS. "" THEN -
546                 COPY/PROT=W:R {- sourcefile("apps", "openssl-vms.cnf") -} -
547                         ossl_dataroot:[000000]openssl.cnf
548         @ ! Install CTLOG configuration file
549         COPY/PROT=W:R {- sourcefile("apps", "ct_log_list.cnf") -} -
550                 ossl_dataroot:[000000]ct_log_list.cnf-dist
551         IF F$SEARCH("OSSL_DATAROOT:[000000]ct_log_list.cnf") .EQS. "" THEN -
552                 COPY/PROT=W:R {- sourcefile("apps", "ct_log_list.cnf") -} -
553                         ossl_dataroot:[000000]ct_log_list.cnf
554
555 install_shared : check_INSTALLTOP
556         @ {- output_off() if $disabled{shared}; "" -} !
557         @ WRITE SYS$OUTPUT "*** Installing shareable images"
558         @ ! Install shared (runtime) libraries
559         - CREATE/DIR ossl_installroot:[LIB.'arch']
560         {- join("\n        ",
561                 map { "COPY/PROT=W:R $_.EXE ossl_installroot:[LIB.'arch']" }
562                 @install_shlibs) -}
563         @ {- output_on() if $disabled{shared}; "" -} !
564
565 _install_dev_ns : check_INSTALLTOP
566         @ WRITE SYS$OUTPUT "*** Installing development files"
567         @ ! Install header files
568         - CREATE/DIR ossl_installroot:[include.openssl]
569         COPY/PROT=W:R openssl:*.h ossl_installroot:[include.openssl]
570         @ ! Install static (development) libraries
571         - CREATE/DIR ossl_installroot:[LIB.'arch']
572         {- join("\n        ",
573                 map { "COPY/PROT=W:R $_.OLB ossl_installroot:[LIB.'arch']" }
574                 @install_libs) -}
575
576 install_dev : install_shared _install_dev_ns
577
578 _install_runtime_ns : check_INSTALLTOP
579         @ ! Install the main program
580         - CREATE/DIR ossl_installroot:[EXE.'arch']
581         COPY/PROT=W:RE [.APPS]openssl.EXE -
582                 ossl_installroot:[EXE.'arch']openssl{- $osslver -}.EXE
583         @ ! Install scripts
584         COPY/PROT=W:RE $(BIN_SCRIPTS) ossl_installroot:[EXE]
585         @ ! {- output_on() if $disabled{apps}; "" -}
586
587 install_runtime : install_shared _install_runtime_ns
588
589 install_engines : check_INSTALLTOP
590         @ {- output_off() unless scalar @{$unified_info{engines}}; "" -} !
591         @ WRITE SYS$OUTPUT "*** Installing engines"
592         - CREATE/DIR ossl_installroot:[ENGINES{- $sover_dirname.$target{pointer_size} -}.'arch']
593         {- join("\n        ",
594                 map { "COPY/PROT=W:RE $_.EXE ossl_installroot:[ENGINES$sover_dirname$target{pointer_size}.'arch']" }
595                 @{$unified_info{install}->{engines}}) -}
596         @ {- output_on() unless scalar @{$unified_info{engines}}; "" -} !
597
598 install_startup : [.VMS]openssl_startup.com [.VMS]openssl_shutdown.com -
599                  [.VMS]openssl_utils.com, check_INSTALLTOP
600         - CREATE/DIR ossl_installroot:[SYS$STARTUP]
601         COPY/PROT=W:RE [.VMS]openssl_startup.com -
602                 ossl_installroot:[SYS$STARTUP]openssl_startup{- $osslver -}.com
603         COPY/PROT=W:RE [.VMS]openssl_shutdown.com -
604                 ossl_installroot:[SYS$STARTUP]openssl_shutdown{- $osslver -}.com
605         COPY/PROT=W:RE [.VMS]openssl_utils.com -
606                 ossl_installroot:[SYS$STARTUP]openssl_utils{- $osslver -}.com
607
608 install_ivp : [.VMS]openssl_ivp.com check_INSTALLTOP
609         - CREATE/DIR ossl_installroot:[SYSTEST]
610         COPY/PROT=W:RE [.VMS]openssl_ivp.com -
611                 ossl_installroot:[SYSTEST]openssl_ivp{- $osslver -}.com
612
613 [.VMS]openssl_startup.com : vmsconfig.pm {- sourcefile("VMS", "openssl_startup.com.in") -}
614         - CREATE/DIR [.VMS]
615         $(PERL) "-I." "-Mvmsconfig" {- sourcefile("util", "dofile.pl") -} -
616                 {- sourcefile("VMS", "openssl_startup.com.in") -} -
617                 > [.VMS]openssl_startup.com
618
619 [.VMS]openssl_utils.com : vmsconfig.pm {- sourcefile("VMS", "openssl_utils.com.in") -}
620         - CREATE/DIR [.VMS]
621         $(PERL) "-I." "-Mvmsconfig" {- sourcefile("util", "dofile.pl") -} -
622                 {- sourcefile("VMS", "openssl_utils.com.in") -} -
623                 > [.VMS]openssl_utils.com
624
625 [.VMS]openssl_shutdown.com : vmsconfig.pm {- sourcefile("VMS", "openssl_shutdown.com.in") -}
626         - CREATE/DIR [.VMS]
627         $(PERL) "-I." "-Mvmsconfig" {- sourcefile("util", "dofile.pl") -} -
628                 {- sourcefile("VMS", "openssl_shutdown.com.in") -} -
629                 > [.VMS]openssl_shutdown.com
630
631 [.VMS]openssl_ivp.com : vmsconfig.pm {- sourcefile("VMS", "openssl_ivp.com.in") -}
632         - CREATE/DIR [.VMS]
633         $(PERL) "-I." "-Mvmsconfig" {- sourcefile("util", "dofile.pl") -} -
634                 {- sourcefile("VMS", "openssl_ivp.com.in") -} -
635                 > [.VMS]openssl_ivp.com
636
637 vmsconfig.pm : configdata.pm
638         OPEN/WRITE/SHARE=READ CONFIG []vmsconfig.pm
639         WRITE CONFIG "package vmsconfig;"
640         WRITE CONFIG "use strict; use warnings;"
641         WRITE CONFIG "use Exporter;"
642         WRITE CONFIG "our @ISA = qw(Exporter);"
643         WRITE CONFIG "our @EXPORT = qw(%config %target %withargs %unified_info %disabled);"
644         WRITE CONFIG "our %config = ("
645         WRITE CONFIG "  target => '","{- $config{target} -}","',"
646         WRITE CONFIG "  version => '","{- $config{version} -}","',"
647         WRITE CONFIG "  shlib_version_number => '","{- $config{shlib_version_number} -}","',"
648         WRITE CONFIG "  shlib_major => '","{- $config{shlib_major} -}","',"
649         WRITE CONFIG "  shlib_minor => '","{- $config{shlib_minor} -}","',"
650         WRITE CONFIG "  no_shared => '","{- $disabled{shared} -}","',"
651         WRITE CONFIG "  INSTALLTOP => '$(INSTALLTOP)',"
652         WRITE CONFIG "  OPENSSLDIR => '$(OPENSSLDIR)',"
653         WRITE CONFIG "  pointer_size => '","{- $target{pointer_size} -}","',"
654         WRITE CONFIG ");"
655         WRITE CONFIG "our %target = ();"
656         WRITE CONFIG "our %disabled = ();"
657         WRITE CONFIG "our %withargs = ();"
658         WRITE CONFIG "our %unified_info = ();"
659         WRITE CONFIG "1;"
660         CLOSE CONFIG
661
662 install_html_docs : check_INSTALLTOP
663         sourcedir = F$PARSE("{- $sourcedir -}A.;","[]") - "]A.;" + ".DOC]"
664         $(PERL) {- sourcefile("util", "process_docs.pl") -} -
665                 --sourcedir='sourcedir' --destdir=ossl_installroot:[HTML] -
666                 --type=html
667
668 check_INSTALLTOP :
669         @ IF "$(INSTALLTOP)" .EQS. "" THEN -
670                 WRITE SYS$ERROR "INSTALLTOP should not be empty"
671         @ IF "$(INSTALLTOP)" .EQS. "" THEN -
672                 EXIT %x10000002
673
674 # Helper targets #####################################################
675
676 # Developer targets ##################################################
677
678 debug_logicals :
679         SH LOGICAL/PROC openssl,internal,ossl_installroot,ossl_dataroot
680
681 # Building targets ###################################################
682
683 configdata.pm : $(SRCDIR)Configure $(SRCDIR)config.com {- join(" ", @{$config{build_file_templates}}, @{$config{build_infos}}, @{$config{conf_files}}) -}
684         perl configdata.pm -r
685         @ WRITE SYS$OUTPUT "*************************************************"
686         @ WRITE SYS$OUTPUT "***                                           ***"
687         @ WRITE SYS$OUTPUT "***   Please run the same mms command again   ***"
688         @ WRITE SYS$OUTPUT "***                                           ***"
689         @ WRITE SYS$OUTPUT "*************************************************"
690         @ PIPE ( EXIT %X10000000 )
691
692 reconfigure reconf :
693         perl configdata.pm -r
694
695 {-
696   use File::Basename;
697   use File::Spec::Functions qw/abs2rel rel2abs catfile catdir/;
698
699   # Helper function to figure out dependencies on libraries
700   # It takes a list of library names and outputs a list of dependencies
701   sub compute_lib_depends {
702       if ($disabled{shared}) {
703           return map { $_ =~ /\.a$/ ? $`.".OLB" : $_.".OLB" } @_;
704       }
705       return map { $_ =~ /\.a$/
706                    ? $`.".OLB"
707                    : $unified_info{sharednames}->{$_}.".EXE" } @_;
708   }
709
710   # Helper function to deal with inclusion directory specs.
711   # We have to deal with two things:
712   # 1. comma separation and no possibility of trailing comma
713   # 2. no inclusion directories given at all
714   # 3. long compiler command lines
715   # To resolve 1, we need to iterate through the sources of inclusion
716   # directories, and only add a comma when needed.
717   # To resolve 2, we need to have a variable that will hold the whole
718   # inclusion qualifier, or be the empty string if there are no inclusion
719   # directories.  That's the symbol 'qual_includes' that's used in CPPFLAGS
720   # To resolve 3, we creata a logical name TMP_INCLUDES: to hold the list
721   # of inclusion directories.
722   #
723   # This function returns a list of two lists, one being the collection of
724   # commands to execute before the compiler is called, and the other being
725   # the collection of commands to execute after.  It takes as arguments the
726   # collection of strings to include as directory specs.
727   sub includes {
728       my @stuff = ( @_ );
729       my @before = (
730           'qual_includes :=',
731       );
732       my @after = (
733           'DELETE/SYMBOL/LOCAL qual_includes',
734       );
735
736       if (scalar @stuff > 0) {
737           push @before, 'tmp_includes := '.shift(@stuff);
738           while (@stuff) {
739               push @before, 'tmp_add := '.shift(@stuff);
740               push @before, 'IF tmp_includes .NES. "" .AND. tmp_add .NES. "" THEN tmp_includes = tmp_includes + ","';
741               push @before, 'tmp_includes = tmp_includes + tmp_add';
742           }
743           push @before, "IF tmp_includes .NES. \"\" THEN DEFINE tmp_includes 'tmp_includes'";
744           push @before, 'IF tmp_includes .NES. "" THEN qual_includes := /INCLUDE=(tmp_includes:)';
745           push @before, 'DELETE/SYMBOL/LOCAL tmp_includes';
746           push @before, 'DELETE/SYMBOL/LOCAL tmp_add';
747           push @after, 'DEASSIGN tmp_includes:'
748       }
749       return ([ @before ], [ @after ]);
750   }
751
752   sub generatesrc {
753       my %args = @_;
754       my $generator = join(" ", @{$args{generator}});
755       my $generator_incs = join("", map { ' "-I'.$_.'"' } @{$args{generator_incs}});
756       my $deps = join(", -\n\t\t", @{$args{generator_deps}}, @{$args{deps}});
757
758       if ($args{src} =~ /\.ld$/) {
759           (my $target = $args{src}) =~ s/\.ld$/.OPT/;
760           my $mkdef = sourcefile('util', 'mkdef.pl');
761           return <<"EOF";
762 $target : $args{generator}->[0] $deps
763         \$(PERL) $mkdef --ordinals $args{generator}->[0] --name $args{generator}->[1] "--OS" "VMS" > $target
764 EOF
765       } elsif ($target !~ /\.[sS]$/) {
766           my $target = $args{src};
767           if ($args{generator}->[0] =~ m|^.*\.in$|) {
768               my $dofile = abs2rel(rel2abs(catfile($config{sourcedir},
769                                                    "util", "dofile.pl")),
770                                    rel2abs($config{builddir}));
771               return <<"EOF";
772 $target : $args{generator}->[0] $deps
773         \$(PERL) "-I\$(BLDDIR)" "-Mconfigdata" $dofile \\
774             "-o$target{build_file}" $generator > \$\@
775 EOF
776           } else {
777               return <<"EOF";
778 $target : $args{generator}->[0] $deps
779         \$(PERL)$generator_incs $generator > \$\@
780 EOF
781           }
782       } else {
783           (my $target = $args{src}) =~ s/\.[sS]$/.asm/;
784           if ($args{generator}->[0] =~ /\.pl$/) {
785               $generator = '$(PERL)'.$generator_incs.' '.$generator;
786           } elsif ($args{generator}->[0] =~ /\.S$/) {
787               $generator = undef;
788           } else {
789               die "Generator type for $src unknown: $generator\n";
790           }
791
792           my $cppflags = {
793               shlib => '$(LIB_CFLAGS) $(LIB_CPPFLAGS)',
794               lib => '$(LIB_CFLAGS) $(LIB_CPPFLAGS)',
795               dso => '$(DSO_CFLAGS) $(DSO_CPPFLAGS)',
796               bin => '$(BIN_CFLAGS) $(BIN_CPPFLAGS)'
797           } -> {$args{intent}};
798           my @incs_cmds = includes({ shlib => '$(LIB_INCLUDES)',
799                                      lib => '$(LIB_INCLUDES)',
800                                      dso => '$(DSO_INCLUDES)',
801                                      bin => '$(BIN_INCLUDES)' } -> {$args{intent}},
802                                    '$(CNF_INCLUDES)',
803                                    '$(INCLUDES)',
804                                    @{$args{incs}});
805           my $incs_on = join("\n\t\@ ", @{$incs_cmds[0]}) || '!';
806           my $incs_off = join("\n\t\@ ", @{$incs_cmds[1]}) || '!';
807           if (defined($generator)) {
808               # If the target is named foo.S in build.info, we want to
809               # end up generating foo.s in two steps.
810               if ($args{src} =~ /\.S$/) {
811                    return <<"EOF";
812 $target : $args{generator}->[0] $deps
813         $generator \$\@-S
814         \@ $incs_on
815         PIPE \$(CPP) $cppflags \$\@-S | -
816         \$(PERL) -ne "/^#(\\s*line)?\\s*[0-9]+\\s+""/ or print" > \$\@-i
817         \@ $incs_off
818         RENAME \$\@-i \$\@
819         DELETE \$\@-S
820 EOF
821               }
822               # Otherwise....
823               return <<"EOF";
824 $target : $args{generator}->[0] $deps
825         $generator \$\@
826 EOF
827           }
828           return <<"EOF";
829 $target : $args{generator}->[0] $deps
830         \@ $incs_on
831         SHOW SYMBOL qual_includes
832         PIPE \$(CPP) $cppflags $args{generator}->[0] | -
833         \$(PERL) "-ne" "/^#(\\s*line)?\\s*[0-9]+\\s+""/ or print" > \$\@
834         \@ $incs_off
835 EOF
836       }
837   }
838
839   sub src2obj {
840       my %args = @_;
841       my @srcs = map { (my $x = $_) =~ s/\.s$/.asm/; $x
842                      } ( @{$args{srcs}} );
843       (my $obj = $args{obj}) =~ s|\.o$||;
844       my $deps = join(", -\n\t\t", @srcs, @{$args{deps}});
845
846       # Because VMS C isn't very good at combining a /INCLUDE path with
847       # #includes having a relative directory (like '#include "../foo.h"),
848       # the best choice is to move to the first source file's intended
849       # directory before compiling, and make sure to write the object file
850       # in the correct position (important when the object tree is other
851       # than the source tree).
852       my $forward = dirname($args{srcs}->[0]);
853       my $backward = abs2rel(rel2abs("."), rel2abs($forward));
854       my $objd = abs2rel(rel2abs(dirname($obj)), rel2abs($forward));
855       my $objn = basename($obj);
856       my $srcs =
857           join(", ", map { abs2rel(rel2abs($_), rel2abs($forward)) } @srcs);
858       my $before = $unified_info{before}->{$obj.".OBJ"} || "\@ !";
859       my $after = $unified_info{after}->{$obj.".OBJ"} || "\@ !";
860
861       if ($srcs[0] =~ /\.asm$/) {
862           my $asflags = { shlib => ' $(LIB_ASFLAGS)',
863                           lib => ' $(LIB_ASFLAGS)',
864                           dso => ' $(DSO_ASFLAGS)',
865                           bin => ' $(BIN_ASFLAGS)' } -> {$args{intent}};
866           return <<"EOF";
867 $obj.OBJ : $deps
868         ${before}
869         SET DEFAULT $forward
870         \$(AS) $asflags \$(ASOUTFLAG)${objd}${objn}.OBJ $srcs
871         SET DEFAULT $backward
872 EOF
873       }
874
875       my $cflags;
876       if ($args{installed}) {
877           $cflags = { shlib => '$(LIB_CFLAGS)',
878                       lib => '$(LIB_CFLAGS)',
879                       dso => '$(DSO_CFLAGS)',
880                       bin => '$(BIN_CFLAGS)' } -> {$args{intent}};
881       } else {
882           $cflags = { shlib => '$(NO_INST_LIB_CFLAGS)',
883                       lib => '$(NO_INST_LIB_CFLAGS)',
884                       dso => '$(NO_INST_DSO_CFLAGS)',
885                       bin => '$(NO_INST_BIN_CFLAGS)' } -> {$args{intent}};
886       }
887       $cflags .= { shlib => '$(LIB_CPPFLAGS)',
888                    lib => '$(LIB_CPPFLAGS)',
889                    dso => '$(DSO_CPPFLAGS)',
890                    bin => '$(BIN_CPPFLAGS)' } -> {$args{intent}};
891
892       my @incs_cmds = includes({ shlib => '$(LIB_INCLUDES)',
893                                  lib => '$(LIB_INCLUDES)',
894                                  dso => '$(DSO_INCLUDES)',
895                                  bin => '$(BIN_INCLUDES)' } -> {$args{intent}},
896                                '$(INCLUDES)',
897                                map {
898                                    file_name_is_absolute($_)
899                                    ? $_ : catdir($backward,$_)
900                                } @{$args{incs}});
901       my $incs_on = join("\n\t\@ ", @{$incs_cmds[0]}) || '!';
902       my $incs_off = join("\n\t\@ ", @{$incs_cmds[1]}) || '!';
903       my $depbuild = $disabled{makedepend} ? ""
904           : " /MMS=(FILE=${objd}${objn}.D,TARGET=$obj.OBJ)";
905
906       return <<"EOF";
907 $obj.OBJ : $deps
908         ${before}
909         SET DEFAULT $forward
910         \@ $incs_on
911         \$(CC) ${cflags}${depbuild} /OBJECT=${objd}${objn}.OBJ /REPOSITORY=$backward $srcs
912         \@ $incs_off
913         SET DEFAULT $backward
914         ${after}
915         - PURGE $obj.OBJ
916 EOF
917   }
918   sub obj2shlib {
919       my %args = @_;
920       my $lib = $args{lib};
921       my $shlib = $args{shlib};
922       my $libd = dirname($lib);
923       my $libn = basename($lib);
924       my @objs = map { (my $x = $_) =~ s|\.o$|.OBJ|; $x }
925                  grep { $_ =~ m|\.o$| }
926                  @{$args{objs}};
927       my @defs = map { (my $x = $_) =~ s|\.ld$|.OPT|; $x }
928                  grep { $_ =~ /\.ld$/ }
929                  @{$args{objs}};
930       my @deps = compute_lib_depends(@{$args{deps}});
931       die "More than one symbol vector" if scalar @defs > 1;
932       my $deps = join(", -\n\t\t", @objs, @defs, @deps);
933       my $shlib_target = $disabled{shared} ? "" : $target{shared_target};
934       my $translatesyms_pl = abs2rel(rel2abs(catfile($config{sourcedir},
935                                                      "VMS", "translatesyms.pl")),
936                                      rel2abs($config{builddir}));
937       # The "[]" hack is because in .OPT files, each line inherits the
938       # previous line's file spec as default, so if no directory spec
939       # is present in the current line and the previous line has one that
940       # doesn't apply, you're in for a surprise.
941       my $write_opt1 =
942           join(",-\"\n\t", map { my $x = $_ =~ /\[/ ? $_ : "[]".$_;
943                                  "WRITE OPT_FILE \"$x" } @objs).
944           "\"";
945       my $write_opt2 =
946           join("\n\t", map { my $x = $_ =~ /\[/ ? $_ : "[]".$_;
947                              $x =~ s|(\.EXE)|$1/SHARE|;
948                              $x =~ s|(\.OLB)|$1/LIB|;
949                              "WRITE OPT_FILE \"$x\"" } @deps)
950           || "\@ !";
951       return <<"EOF"
952 $shlib.EXE : $deps
953         \$(PERL) $translatesyms_pl \$(BLDDIR)CXX\$DEMANGLER_DB. < $defs[0] > $defs[0]-translated
954         OPEN/WRITE/SHARE=READ OPT_FILE $lib-components.OPT
955         $write_opt1
956         $write_opt2
957         CLOSE OPT_FILE
958         LINK \$(LIB_LDFLAGS)/SHARE=\$\@ $defs[0]-translated/OPT,-
959                 $lib-components.OPT/OPT \$(LIB_EX_LIBS)
960         DELETE $defs[0]-translated;*,$lib-components.OPT;*
961         PURGE $shlib.EXE,$shlib.MAP
962 EOF
963         . ($config{target} =~ m|alpha| ? "" : <<"EOF"
964         SET IMAGE/FLAGS=(NOCALL_DEBUG) \$\@
965 EOF
966         );
967   }
968   sub obj2dso {
969       my %args = @_;
970       my $lib = $args{lib};
971       my $libd = dirname($lib);
972       my $libn = basename($lib);
973       (my $libn_nolib = $libn) =~ s/^lib//;
974       my @objs = map { (my $x = $_) =~ s|\.o$|.OBJ|; $x } @{$args{objs}};
975       my @deps = compute_lib_depends(@{$args{deps}});
976       my $deps = join(", -\n\t\t", @objs, @deps);
977       my $shlib_target = $disabled{shared} ? "" : $target{shared_target};
978       my $engine_opt = abs2rel(rel2abs(catfile($config{sourcedir},
979                                                "VMS", "engine.opt")),
980                                rel2abs($config{builddir}));
981       # The "[]" hack is because in .OPT files, each line inherits the
982       # previous line's file spec as default, so if no directory spec
983       # is present in the current line and the previous line has one that
984       # doesn't apply, you're in for a surprise.
985       my $write_opt1 =
986           join(",-\"\n\t", map { my $x = $_ =~ /\[/ ? $_ : "[]".$_;
987                                  "WRITE OPT_FILE \"$x" } @objs).
988           "\"";
989       my $write_opt2 =
990           join("\n\t", map { my $x = $_ =~ /\[/ ? $_ : "[]".$_;
991                              $x =~ s|(\.EXE)|$1/SHARE|;
992                              $x =~ s|(\.OLB)|$1/LIB|;
993                              "WRITE OPT_FILE \"$x\"" } @deps)
994           || "\@ !";
995       return <<"EOF"
996 $lib.EXE : $deps
997         OPEN/WRITE/SHARE=READ OPT_FILE $lib.OPT
998         TYPE $engine_opt /OUTPUT=OPT_FILE:
999         $write_opt1
1000         $write_opt2
1001         CLOSE OPT_FILE
1002         LINK \$(DSO_LDFLAGS)/SHARE=\$\@ $lib.OPT/OPT \$(DSO_EX_LIBS)
1003         - PURGE $lib.EXE,$lib.OPT,$lib.MAP
1004 EOF
1005         . ($config{target} =~ m|alpha| ? "" : <<"EOF"
1006         SET IMAGE/FLAGS=(NOCALL_DEBUG) \$\@
1007 EOF
1008         );
1009   }
1010   sub obj2lib {
1011       my %args = @_;
1012       (my $lib = $args{lib}) =~ s/\.a$//;
1013       my @objs = map { (my $x = $_) =~ s|\.o$|.OBJ|; $x } @{$args{objs}};
1014       my $objs = join(", -\n\t\t", @objs);
1015       my $fill_lib = join("\n\t", (map { "LIBRARY/REPLACE $lib.OLB $_" }
1016                                    @objs));
1017       return <<"EOF";
1018 $lib.OLB : $objs
1019         LIBRARY/CREATE/OBJECT $lib.OLB
1020         $fill_lib
1021         - PURGE $lib.OLB
1022 EOF
1023   }
1024   sub obj2bin {
1025       my %args = @_;
1026       my $bin = $args{bin};
1027       my $bind = dirname($bin);
1028       my $binn = basename($bin);
1029       my @objs = map { (my $x = $_) =~ s|\.o$|.OBJ|; $x } @{$args{objs}};
1030       my $objs = join(",", @objs);
1031       my @deps = compute_lib_depends(@{$args{deps}});
1032       my $deps = join(", -\n\t\t", @objs, @deps);
1033
1034       my $olb_count = scalar grep(m|\.OLB$|, @deps);
1035       my $analyse_objs = "@ !";
1036       if ($olb_count > 0) {
1037           my $analyse_quals =
1038               $config{target} =~ m|alpha| ? "/GSD" : "/SECTIONS=SYMTAB";
1039           $analyse_objs = "- pipe ANALYSE/OBJECT$analyse_quals $objs | SEARCH SYS\$INPUT \"\"\"main\"\"\" ; nomain = \$severity .NE. 1"
1040       }
1041       # The "[]" hack is because in .OPT files, each line inherits the
1042       # previous line's file spec as default, so if no directory spec
1043       # is present in the current line and the previous line has one that
1044       # doesn't apply, you're in for a surprise.
1045       my $write_opt1 =
1046           join(",-\"\n\t", map { my $x = $_ =~ /\[/ ? $_ : "[]".$_;
1047                                  "\@ WRITE OPT_FILE \"$x" } @objs).
1048           "\"";
1049       my $write_opt2 =
1050           join("\n\t", map { my @lines = (
1051                                  "\ WRITE OPT_FILE \"CASE_SENSITIVE=YES\""
1052                              );
1053                              my $x = $_ =~ /\[/ ? $_ : "[]".$_;
1054                              if ($x =~ m|\.EXE$|) {
1055                                  push @lines, "\@ WRITE OPT_FILE \"$x/SHARE\"";
1056                              } elsif ($x =~ m|\.OLB$|) {
1057                                  (my $l = $x) =~ s/\W/_/g;
1058                                  push @lines, 
1059                                      "\@ IF nomain THEN WRITE OPT_FILE \"$x/LIB\$(INCLUDE_MAIN_$l)\"",
1060                                      "\@ IF .NOT. nomain THEN WRITE OPT_FILE \"$x/LIB\""
1061                              }
1062                              @lines
1063                            } @deps)
1064           || "\@ !";
1065       # The linking commands looks a bit complex, but it's for good reason.
1066       # When you link, say, foo.obj, bar.obj and libsomething.exe/share, and
1067       # bar.obj happens to have a symbol that also exists in libsomething.exe,
1068       # the linker will warn about it, loudly, and will then choose to pick
1069       # the first copy encountered (the one in bar.obj in this example).
1070       # On Unix and on Windows, the corresponding maneuvre goes through
1071       # silently with the same effect.
1072       # With some test programs, made for checking the internals of OpenSSL,
1073       # we do this kind of linking deliberately, picking a few specific object
1074       # files from within [.crypto] or [.ssl] so we can reach symbols that are
1075       # otherwise unreachable (since the shareable images only exports the
1076       # symbols listed in [.util]*.num), and then with the shared libraries
1077       # themselves.  So we need to silence the warning about multiply defined
1078       # symbols, to mimic the way linking work on Unix and Windows, and so
1079       # the build isn't interrupted (MMS stops when warnings are signaled,
1080       # by default), and so someone building doesn't have to worry where it
1081       # isn't necessary.  If there are other warnings, however, we show them
1082       # and let it break the build.
1083       return <<"EOF"
1084 $bin.EXE : $deps
1085         $analyse_objs
1086         @ OPEN/WRITE/SHARE=READ OPT_FILE $bin.OPT
1087         $write_opt1
1088         $write_opt2
1089         @ CLOSE OPT_FILE
1090         TYPE $bin.opt ! For debugging
1091         - pipe SPAWN/WAIT/NOLOG/OUT=$bin.LINKLOG -
1092                     LINK \$(BIN_LDFLAGS)/EXEC=\$\@ $bin.OPT/OPT \$(BIN_EX_LIBS) ; -
1093                link_status = \$status ; link_severity = link_status .AND. 7
1094         @ search_severity = 1
1095         -@ IF link_severity .EQ. 0 THEN -
1096                 pipe SEARCH $bin.LINKLOG "%","-"/MATCH=AND | -
1097                      SPAWN/WAIT/NOLOG/OUT=NLA0: -
1098                           SEARCH SYS\$INPUT: "-W-MULDEF,"/MATCH=NOR ; -
1099                      search_severity = \$severity
1100         @ ! search_severity is 3 when the last search didn't find any matching
1101         @ ! string: %SEARCH-I-NOMATCHES, no strings matched
1102         @ ! If that was the result, we pretend linking got through without
1103         @ ! fault or warning.
1104         @ IF search_severity .EQ. 3 THEN link_severity = 1
1105         @ ! At this point, if link_severity shows that there was a fault
1106         @ ! or warning, make sure to restore the linking status.
1107         -@ IF .NOT. link_severity THEN TYPE $bin.LINKLOG
1108         -@ DELETE $bin.LINKLOG;*
1109         @ IF .NOT. link_severity THEN SPAWN/WAIT/NOLOG EXIT 'link_status'
1110         - PURGE $bin.EXE,$bin.OPT
1111 EOF
1112       . ($config{target} =~ m|alpha| ? "" : <<"EOF"
1113         SET IMAGE/FLAGS=(NOCALL_DEBUG) \$\@
1114 EOF
1115         );
1116   }
1117   sub in2script {
1118       my %args = @_;
1119       my $script = $args{script};
1120       return "" if grep { $_ eq $script } @{$args{sources}}; # No overwrite!
1121       my $sources = join(" ", @{$args{sources}});
1122       my $dofile = abs2rel(rel2abs(catfile($config{sourcedir},
1123                                            "util", "dofile.pl")),
1124                            rel2abs($config{builddir}));
1125       return <<"EOF";
1126 $script : $sources
1127         \$(PERL) "-I\$(BLDDIR)" "-Mconfigdata" $dofile -
1128             "-o$target{build_file}" $sources > $script
1129         SET FILE/PROT=(S:RWED,O:RWED,G:RE,W:RE) $script
1130         PURGE $script
1131 EOF
1132   }
1133   ""    # Important!  This becomes part of the template result.
1134 -}