Clean away $config{no_shared} since we have $disabled{shared}
[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
7   # Our prefix, claimed when speaking with the VSI folks Tuesday
8   # January 26th 2016
9   our $osslprefix = 'OSSL$';
10   (our $osslprefix_q = $osslprefix) =~ s/\$/\\\$/;
11
12   our $sourcedir = $config{sourcedir};
13   our $builddir = $config{builddir};
14   sub sourcefile {
15       catfile($sourcedir, @_);
16   }
17   sub buildfile {
18       catfile($builddir, @_);
19   }
20   sub sourcedir {
21       catdir($sourcedir, @_);
22   }
23   sub builddir {
24       catdir($builddir, @_);
25   }
26   sub tree {
27       (my $x = shift) =~ s|\]$|...]|;
28       $x
29   }
30   sub move {
31       my $f = catdir(@_);
32       my $b = abs2rel(rel2abs("."),rel2abs($f));
33       $sourcedir = catdir($b,$sourcedir)
34           if !file_name_is_absolute($sourcedir);
35       $builddir = catdir($b,$builddir)
36           if !file_name_is_absolute($builddir);
37       "";
38   }
39
40   # This is a horrible hack, but is needed because recursive inclusion of files
41   # in different directories does not work well with HP C.
42   my $sd = sourcedir("crypto", "async", "arch");
43   foreach (grep /\[\.crypto\.async\.arch\].*\.o$/, keys %{$unified_info{sources}}) {
44       (my $x = $_) =~ s|\.o$|.OBJ|;
45       $unified_info{before}->{$x}
46           = qq(arch = F\$PARSE("$sd","A.;",,,"SYNTAX_ONLY") - "A.;"
47         define arch 'arch');
48       $unified_info{after}->{$x}
49           = qq(deassign arch);
50   }
51   my $sd1 = sourcedir("ssl","record");
52   my $sd2 = sourcedir("ssl","statem");
53   $unified_info{before}->{"[.crypto.ct]ct_lib.OBJ"}
54       = $unified_info{before}->{"[.test]heartbeat_test.OBJ"}
55       = $unified_info{before}->{"[.test]ssltest.OBJ"}
56       = qq(record = F\$PARSE("$sd1","A.;",,,"SYNTAX_ONLY") - "A.;"
57         define record 'record'
58         statem = F\$PARSE("$sd2","A.;",,,"SYNTAX_ONLY") - "A.;"
59         define statem 'statem');
60   $unified_info{after}->{"[.crypto.ct]ct_lib.OBJ"}
61       = $unified_info{after}->{"[.test]heartbeat_test.OBJ"}
62       = $unified_info{after}->{"[.test]ssltest.OBJ"}
63       = qq(deassign statem
64         deassign record);
65   foreach (grep /^\[\.ssl\.(?:record|statem)\].*\.o$/, keys %{$unified_info{sources}}) {
66       (my $x = $_) =~ s|\.o$|.OBJ|;
67       $unified_info{before}->{$x}
68           = qq(record = F\$PARSE("$sd1","A.;",,,"SYNTAX_ONLY") - "A.;"
69         define record 'record'
70         statem = F\$PARSE("$sd2","A.;",,,"SYNTAX_ONLY") - "A.;"
71         define statem 'statem');
72       $unified_info{after}->{$x}
73           = qq(deassign statem
74         deassign record);
75   }
76   #use Data::Dumper;
77   #print STDERR "DEBUG: before:\n", Dumper($unified_info{before});
78   #print STDERR "DEBUG: after:\n", Dumper($unified_info{after});
79   "";
80 -}
81 PLATFORM={- $config{target} -}
82 OPTIONS={- $config{options} -}
83 CONFIGURE_ARGS=({- join(", ",quotify_l(@{$config{perlargv}})) -})
84 SRCDIR={- $config{sourcedir} -}
85 BUILDDIR={- $config{builddir} -}
86
87 VERSION={- $config{version} -}
88 MAJOR={- $config{major} -}
89 MINOR={- $config{minor} -}
90 SHLIB_VERSION_NUMBER={- $config{shlib_version_number} -}
91 SHLIB_VERSION_HISTORY={- $config{shlib_version_history} -}
92 SHLIB_MAJOR={- $config{shlib_major} -}
93 SHLIB_MINOR={- $config{shlib_minor} -}
94 SHLIB_TARGET={- $target{shared_target} -}
95
96 EXE_EXT=.EXE
97 LIB_EXT=.OLB
98 SHLIB_EXT=.EXE
99 OBJ_EXT=.OBJ
100 DEP_EXT=.MMS
101
102 LIBS={- join(", ", map { "-\n\t".$_.".OLB" } @{$unified_info{libraries}}) -}
103 SHLIBS={- join(" ", map { $_."\$(SHLIB_EXT)" } map { $unified_info{sharednames}->{$_} || () } @{$unified_info{libraries}}) -}
104 ENGINES={- join(", ", map { "-\n\t".$_.".EXE" } @{$unified_info{engines}}) -}
105 PROGRAMS={- join(", ", map { "-\n\t".$_.".EXE" } grep { !m|^\[\.test\]| } @{$unified_info{programs}}) -}
106 TESTPROGS={- join(", ", map { "-\n\t".$_.".EXE" } grep { m|^\[\.test\]| } @{$unified_info{programs}}) -}
107 SCRIPTS={- join(", ", map { "-\n\t".$_ } @{$unified_info{scripts}}) -}
108 DEPS={- our @deps = map { (my $x = $_) =~ s|\.o$|\$(DEP_EXT)|; $x; }
109                     grep { $unified_info{sources}->{$_}->[0] =~ /\.c$/ }
110                     keys %{$unified_info{sources}};
111         join(", ", map { "-\n\t".$_ } @deps); -}
112
113 # DESTDIR is for package builders so that they can configure for, say,
114 # SYS$COMMON:[OPENSSL] and yet have everything installed in STAGING:[USER].
115 # In that case, configure with --prefix=SYS$COMMON:[OPENSSL] and then run
116 # MMS with /MACROS=(DESTDIR=STAGING:[USER]).  The result will end up in
117 # STAGING:[USER.OPENSSL].
118 # Normally it is left empty.
119 DESTDIR=
120
121 # Do not edit this manually. Use Configure --prefix=DIR to change this!
122 INSTALLTOP={- catdir($config{prefix}) || "SYS\$COMMON:[OPENSSL-\$(MAJOR).\$(MINOR)]" -}
123 # This is the standard central area to store certificates, private keys...
124 OPENSSLDIR={- catdir($config{openssldir}) ||
125               $config{prefix} ? catdir($config{prefix},"SSL")
126                               : "SYS\$COMMON:[SSL]" -}
127 # Where installed engines reside
128 ENGINESDIR={- $osslprefix -}ENGINES:
129
130 CC= {- $target{cc} -}
131 CFLAGS= /DEFINE=({- join(",", @{$config{defines}},"OPENSSLDIR=\"\"\"\$(OPENSSLDIR)\"\"\"","ENGINESDIR=\"\"\"\$(ENGINESDIR)\"\"\"") -}) {- $config{cflags} -}
132 DEPFLAG= /DEFINE=({- join(",", @{$config{depdefines}}) -})
133 LDFLAGS= {- $config{lflags} -}
134 EX_LIBS= {- $config{ex_libs} ? ",".$config{ex_libs} : "" -}
135
136 PERL={- $config{perl} -}
137
138 # We let the C compiler driver to take care of .s files. This is done in
139 # order to be excused from maintaining a separate set of architecture
140 # dependent assembler flags. E.g. if you throw -mcpu=ultrasparc at SPARC
141 # gcc, then the driver will automatically translate it to -xarch=v8plus
142 # and pass it down to assembler.
143 AS={- $target{as} -}
144 ASFLAG={- $target{asflags} -}
145
146 # .FIRST and .LAST are special targets with MMS and MMK.
147 # The defines in there are for C.  includes that look like
148 # this:
149 #
150 #    #include <openssl/foo.h>
151 #    #include "internal/bar.h"
152 #
153 # will use the logical names to find the files.  Expecting
154 # DECompHP C to find files in subdirectories of whatever was
155 # given with /INCLUDE is a fantasy, unfortunately.
156 NODEBUG=@
157 .FIRST :
158         $(NODEBUG) openssl_inc1 = F$PARSE("[.include.openssl]","A.;",,,"syntax_only") - "A.;"
159         $(NODEBUG) openssl_inc2 = F$PARSE("{- catdir($config{sourcedir},"[.include.openssl]") -}","A.;",,,"SYNTAX_ONLY") - "A.;"
160         $(NODEBUG) internal_inc1 = F$PARSE("[.crypto.include.internal]","A.;",,,"SYNTAX_ONLY") - "A.;"
161         $(NODEBUG) internal_inc2 = F$PARSE("{- catdir($config{sourcedir},"[.include.internal]") -}","A.;",,,"SYNTAX_ONLY") - "A.;"
162         $(NODEBUG) internal_inc3 = F$PARSE("{- catdir($config{sourcedir},"[.crypto.include.internal]") -}","A.;",,,"SYNTAX_ONLY") - "A.;"
163         $(NODEBUG) DEFINE openssl 'openssl_inc1','openssl_inc2'
164         $(NODEBUG) DEFINE internal 'internal_inc1','internal_inc2','internal_inc3'
165         $(NODEBUG) staging_dir = "$(DESTDIR)"
166         $(NODEBUG) IF staging_dir .NES. "" THEN -
167                 staging_dir = F$PARSE("A.;",staging_dir,"[]",,"SYNTAX_ONLY") - "A.;"
168         $(NODEBUG) !
169         $(NODEBUG) ! Installation logical names
170         $(NODEBUG) !
171         $(NODEBUG) installtop_dev = F$PARSE(staging_dir,"$(INSTALLTOP)",,"DEVICE","SYNTAX_ONLY")
172         $(NODEBUG) ! Because there are no routines to merge directories, we have to
173         $(NODEBUG) ! do it ourselves
174         $(NODEBUG) IF staging_dir .NES. "" THEN -
175                 staging_dir = F$PARSE(staging_dir,"[000000]",,"DIRECTORY","SYNTAX_ONLY")
176         $(NODEBUG) installtop_dir = F$PARSE("$(INSTALLTOP)","[000000]",,"DIRECTORY","SYNTAX_ONLY")
177         $(NODEBUG) IF staging_dir .NES. "" .AND. staging_dir .NES. "[000000]" THEN -
178                 installtop_dir = staging_dir - "]" + "." + (installtop_dir - "[")
179         $(NODEBUG) installtop_dir = installtop_dir - "]" + ".]"
180         $(NODEBUG) DEFINE ossl_installroot 'installtop_dev''installtop_dir'
181         $(NODEBUG) !
182         $(NODEBUG) datatop = F$PARSE("$(OPENSSLDIR)","[000000]A.;",,,"SYNTAX_ONLY") -
183                 - "]A.;" + ".]"
184         $(NODEBUG) IF "$(DESTDIR)" .EQS. "" THEN -
185                 DEFINE ossl_dataroot 'datatop'
186         $(NODEBUG) !
187         $(NODEBUG) ! Figure out the architecture
188         $(NODEBUG) !
189         $(NODEBUG) arch == f$edit( f$getsyi( "arch_name"), "upcase")
190         $(NODEBUG) !
191         $(NODEBUG) ! Set up logical names for the libraries, so LINK and
192         $(NODEBUG) ! running programs can use them.
193         $(NODEBUG) !
194         $(NODEBUG) {- join("\n\t\$(NODEBUG) ", map { "DEFINE ".uc($_)." 'F\$ENV(\"DEFAULT\")'".uc($_)."\$(SHLIB_EXT)" } map { $unified_info{sharednames}->{$_} || () } @{$unified_info{libraries}}) || "!" -}
195
196 .LAST :
197         $(NODEBUG) {- join("\n\t\$(NODEBUG) ", map { "DEASSIGN ".uc($_) } map { $unified_info{sharednames}->{$_} || () } @{$unified_info{libraries}}) || "!" -}
198         $(NODEBUG) IF "$(DESTDIR)" .EQS. "" THEN DEASSIGN ossl_dataroot
199         $(NODEBUG) DEASSIGN ossl_installroot
200         $(NODEBUG) DEASSIGN internal
201         $(NODEBUG) DEASSIGN openssl
202 .DEFAULT :
203         @ ! MMS cannot handle no actions...
204
205 # The main targets ###################################################
206
207 all : configdata.pm, -
208       build_libs_nodep, build_engines_nodep, build_apps_nodep, -
209       depend
210
211 build_libs : configdata.pm, build_libs_nodep, depend
212 build_libs_nodep : $(LIBS)
213 build_engines : configdata.pm, build_engines_nodep, depend
214 build_engines_nodep : $(ENGINES)
215 build_apps : configdata.pm, build_apps_nodep, depend
216 build_apps_nodep : $(PROGRAMS), $(SCRIPTS)
217 build_tests : configdata.pm, build_tests_nodep, depend
218 build_tests_nodep : $(TESTPROGS)
219
220 test tests : configdata.pm, -
221              build_apps_nodep, build_engines_nodep, build_tests_nodep, -
222              depend, rehash
223         SET DEFAULT [.test]{- move("test") -}
224         DEFINE SRCTOP {- sourcedir() -}
225         DEFINE BLDTOP {- builddir() -}
226         $(PERL) {- sourcefile("test", "run_tests.pl") -} $(TESTS)
227         DEASSIGN BLDTOP
228         DEASSIGN SRCTOP
229         SET DEFAULT [-]{- move("..") -}
230
231 list-tests :
232         @ TOP=$(SRCDIR) PERL=$(PERL) $(PERL) {- catfile($config{sourcedir},"test", "run_tests.pl") -} list
233
234 # Because VMS wants the generation number (or *) to delete files, we can't
235 # use $(LIBS), $(PROGRAMS) and $(TESTPROGS) directly.
236 libclean :
237         - DELETE []OSSL$LIB*.OLB;*,OSSL$LIB*.LIS;*
238         - DELETE [.crypto...]*.OBJ;*,*.LIS;*
239         - DELETE [.ssl...]*.OBJ;*,*.LIS;*
240         - DELETE [.engines...]*.OBJ;*,*.LIS;*
241         - DELETE []CXX$DEMANGLER_DB.;*
242
243 install : install_sw install_docs
244         @ WRITE SYS$OUTPUT ""
245         @ WRITE SYS$OUTPUT "######################################################################"
246         @ WRITE SYS$OUTPUT ""
247         @ WRITE SYS$OUTPUT "Installation complete"
248         @ WRITE SYS$OUTPUT ""
249         @ IF "$(DESTDIR)" .NES. "" THEN EXIT 1
250         @ WRITE SYS$OUTPUT "Run @$(INSTALLTOP)openssl_startup to set up logical names"
251         @ WRITE SYS$OUTPUT "then run @$(INSTALLTOP)openssl_setup to define commands"
252         @ WRITE SYS$OUTPUT ""
253
254 uninstall : uninstall_docs uninstall_sw
255
256 clean : libclean
257         - DELETE []OSSL$LIB*.EXE;*,OSSL$LIB*.MAP;*,OSSL$LIB*.OPT;*
258         - DELETE [.engines...]LIB*.EXE;*,LIB*.MAP;*,LIB*.OPT;*
259         - DELETE [.apps]*.EXE;*,*.MAP;*,*.OPT;*
260         - DELETE [.apps]*.OBJ;*,*.LIS;*
261         - DELETE [.test]*.EXE;*,*.MAP;*,*.OPT;*
262         - DELETE [.test]*.OBJ;*,*.LIS;*
263         - DELETE [.test]*.LOG;*
264         - DELETE []*.MAP;*
265
266 depend : descrip.mms
267 descrip.mms : FORCE
268         @ $(PERL) -pe "if (/^# DO NOT DELETE.*/) { exit(0); }" -
269                 < descrip.mms > descrip.mms-new
270         @ OPEN/APPEND DESCRIP descrip.mms-new
271         @ WRITE DESCRIP "# DO NOT DELETE THIS LINE -- make depend depends on it."
272         {- join("\n\t", map { "\@ IF F\$SEARCH(\"$_\") .NES. \"\" THEN TYPE $_ /OUTPUT=DESCRIP:" } @deps); -}
273         @ CLOSE DESCRIP
274         @ PIPE ( $(PERL) -e "use File::Compare qw/compare_text/; my $x = compare_text(""descrip.mms"",""descrip.mms-new""); exit(0x10000000 + ($x == 0));" || -
275                  RENAME descrip.mms-new descrip.mms )
276         @ IF F$SEARCH("descrip.mms-new") .NES. "" THEN DELETE descrip.mms-new;*
277         -@ SPAWN/OUTPUT=NLA0: PURGE/NOLOG descrip.mms
278
279 # Install helper targets #############################################
280
281 install_sw : all install_dev install_engines install_runtime install_config
282
283 uninstall_sw : uninstall_dev uninstall_engines uninstall_runtime uninstall_config
284
285 install_docs : install_man_docs install_html_docs
286
287 uninstall_docs : uninstall_man_docs uninstall_html_docs
288
289 install_dev : check_INSTALLTOP
290         @ WRITE SYS$OUTPUT "*** Installing development files"
291         @ ! Install header files
292         CREATE/DIR ossl_installroot:[include.openssl]
293         COPY/PROT=W:R openssl:*.h ossl_installroot:[include.openssl]
294         @ ! Install libraries
295         CREATE/DIR ossl_installroot:[LIB.'arch']
296         {- join("\n        ",
297                 map { "COPY/PROT=W:R $_.OLB ossl_installroot:[LIB.'arch']" }
298                 @{$unified_info{libraries}}) -}
299         @ {- output_off() if $disabled{shared}; "" -} !
300         {- join("\n        ",
301                 map { "COPY/PROT=W:RE $_.EXE ossl_installroot:[LIB.'arch']" }
302                 map { $unified_info{sharednames}->{$_} || () }
303                 @{$unified_info{libraries}}) -}
304         @ {- output_on() if $disabled{shared}; "" -} !
305
306 install_runtime : check_INSTALLTOP
307         @ WRITE SYS$OUTPUT "*** Installing runtime files"
308         @ ! Install the main program
309         CREATE/DIR ossl_installroot:[EXE.'arch']
310         COPY/PROT=W:RE [.APPS]openssl.EXE ossl_installroot:[EXE.'arch']
311         @ ! Install scripts
312         CREATE/DIR ossl_installroot:[EXE]
313         COPY/PROT=W:RE [.APPS]CA.pl ossl_installroot:[EXE]
314         COPY/PROT=W:RE [.TOOLS]c_rehash. ossl_installroot:[EXE]c_rehash.pl
315         @ ! Install configuration file
316         COPY/PROT=W:RE {- sourcefile("apps", "openssl-vms.cnf") -} -
317                 ossl_installroot:[000000]openssl.cnf
318
319 install_engines : check_INSTALLTOP
320         @ {- output_off() unless scalar @{$unified_info{engines}}; "" -} !
321         @ WRITE SYS$OUTPUT "*** Installing engines"
322         CREATE/DIR ossl_installroot:[ENGINES.'arch']
323         {- join("\n        ",
324                 map { "COPY/PROT=W:RE $_.EXE ossl_installroot:[ENGINES.'arch']" }
325                 grep(!m|ossltest$|i, @{$unified_info{engines}})) -}
326         @ {- output_on() unless scalar @{$unified_info{engines}}; "" -} !
327
328 install_config : [.VMS]openssl_startup.com [.VMS]openssl_shutdown.com -
329                  check_INSTALLTOP
330         IF "$(DESTDIR)" .EQS. "" THEN -
331                 IF F$SEARCH("OSSL_DATAROOT:[000000]CERTS.DIR;1") .EQS. "" THEN -
332                 CREATE/DIR/PROT=(S:RWED,O:RWE,G:RE,W:RE) OSSL_DATAROOT:[CERTS]
333         IF "$(DESTDIR)" .EQS. "" THEN -
334                 IF F$SEARCH("OSSL_DATAROOT:[000000]PRIVATE.DIR;1") .EQS. "" THEN -
335                 CREATE/DIR/PROT=(S:RWED,O:RWE,G:,W:) OSSL_DATAROOT:[PRIVATE]
336         CREATE/DIR ossl_installroot:[SYS$STARTUP]
337         COPY/PROT=W:RE -
338                 [.VMS]openssl_startup.com,openssl_shutdown.com -
339                 ossl_installroot:[SYS$STARTUP]
340         COPY/PROT=W:RE -
341                 {- sourcefile("VMS", "openssl_utils.com") -} -
342                 ossl_installroot:[SYS$STARTUP]
343
344 [.VMS]openssl_startup.com : vmsconfig.pm
345         CREATE/DIR [.VMS]
346         $(PERL) "-I." "-Mvmsconfig" {- sourcefile("util", "dofile.pl") -} -
347                 {- sourcefile("VMS", "openssl_startup.com.in") -} -
348                 > [.VMS]openssl_startup.com
349
350 [.VMS]openssl_shutdown.com : vmsconfig.pm
351         CREATE/DIR [.VMS]
352         $(PERL) "-I." "-Mvmsconfig" {- sourcefile("util", "dofile.pl") -} -
353                 {- sourcefile("VMS", "openssl_shutdown.com.in") -} -
354                 > [.VMS]openssl_shutdown.com
355
356 vmsconfig.pm : configdata.pm
357         OPEN/WRITE/SHARE=READ CONFIG []vmsconfig.pm
358         WRITE CONFIG "package vmsconfig;"
359         WRITE CONFIG "use strict; use warnings;"
360         WRITE CONFIG "use Exporter;"
361         WRITE CONFIG "our @ISA = qw(Exporter);"
362         WRITE CONFIG "our @EXPORT = qw(%config %target %withargs %unified_info);"
363         WRITE CONFIG "our %config = ("
364         WRITE CONFIG "  target => '{- $config{target} -}',"
365         WRITE CONFIG "  version => '$(MAJOR).$(MINOR)',"
366         WRITE CONFIG "  no_shared => '","{- $disabled{shared} -}","',"
367         WRITE CONFIG "  INSTALLTOP => '$(INSTALLTOP)',"
368         WRITE CONFIG "  OPENSSLDIR => '$(OPENSSLDIR)',"
369         WRITE CONFIG "  pointersize => '","{- $target{pointersize} -}","',"
370         WRITE CONFIG "  shared_libs => ["
371         {- join("\n        ", map { "WRITE CONFIG \"    '$_'," } map { $unified_info{sharednames}->{$_} || () } @{$unified_info{libraries}}) || "\@ !" -}
372         WRITE CONFIG "  ],"
373         WRITE CONFIG ");"
374         WRITE CONFIG "our %target = ();"
375         WRITE CONFIG "our %withargs = ();"
376         WRITE CONFIG "our %unified_info = ();"
377         WRITE CONFIG "1;"
378         CLOSE CONFIG
379
380 check_INSTALLTOP :
381         @ IF "$(INSTALLTOP)" .EQS. "" THEN -
382                 WRITE SYS$ERROR "INSTALLTOP should not be empty"
383         @ IF "$(INSTALLTOP)" .EQS. "" THEN -
384                 EXIT %x10000002
385
386 # Helper targets #####################################################
387
388 rehash : copy-certs, build_apps_nodep
389         !MCR [.apps]openssl.exe rehash {- builddir("certs", "demo") -}
390         $(PERL) [.tools]c_rehash. [.certs.demo]
391
392 copy-certs :
393         @ IF F$SEARCH("{- buildfile("certs.dir") -}") .EQS. "" THEN -
394              CREATE/DIR {- builddir("certs") -}
395         -@ IF "{- sourcedir("certs") -}" .NES. "{- builddir("certs") -}" THEN -
396              COPY {- tree(sourcedir("certs")) -}*.* {- tree(builddir("certs")) -}
397
398 # Developer targets ##################################################
399
400 debug_logicals :
401         SH LOGICAL/PROC openssl,internal,ossl_installroot
402         IF "$(DESTDIR)" .EQS. "" THEN -
403                 SH LOGICAL/PROC ossl_dataroot
404
405 # Building targets ###################################################
406
407 configdata.pm : {- sourcefile("Configurations", "descrip.mms.tmpl") -} $(SRCDIR)Configure ! $(SRCDIR)config.com
408         @ WRITE SYS$OUTPUT "Detected changed: $?"
409         @ WRITE SYS$OUTPUT "Reconfiguring..."
410         perl $(SRCDIR)Configure reconf
411         @ WRITE SYS$OUTPUT "*************************************************"
412         @ WRITE SYS$OUTPUT "***                                           ***"
413         @ WRITE SYS$OUTPUT "***   Please run the same mms command again   ***"
414         @ WRITE SYS$OUTPUT "***                                           ***"
415         @ WRITE SYS$OUTPUT "*************************************************"
416         @ PIPE ( EXIT %X10000000 )
417
418 {-
419   use File::Basename;
420   use File::Spec::Functions qw/abs2rel rel2abs catfile catdir/;
421   sub src2obj {
422       my %args = @_;
423       my $obj = $args{obj};
424       my $deps = join(", -\n\t\t", @{$args{srcs}}, @{$args{deps}});
425
426       # Because VMS C isn't very good at combining a /INCLUDE path with
427       # #includes having a relative directory (like '#include "../foo.h"),
428       # the best choice is to move to the first source file's intended
429       # directory before compiling, and make sure to write the object file
430       # in the correct position (important when the object tree is other
431       # than the source tree).
432       my $forward = dirname($args{srcs}->[0]);
433       my $backward = abs2rel(rel2abs("."), rel2abs($forward));
434       my $objd = abs2rel(rel2abs(dirname($obj)), rel2abs($forward));
435       my $objn = basename($obj);
436       my $srcs =
437           join(", ",
438                map { abs2rel(rel2abs($_), rel2abs($forward)) } @{$args{srcs}});
439       my $incs =
440           "/INCLUDE=(".join(",",
441                             map {
442                                file_name_is_absolute($_)
443                                ? $_ : catdir($backward,$_)
444                             } @{$args{incs}}).")";
445       my $before = $unified_info{before}->{$obj.".OBJ"} || "\@ !";
446       my $after = $unified_info{after}->{$obj.".OBJ"} || "\@ !";
447
448       return <<"EOF";
449 $obj.MMS : $deps
450         ${before}
451         SET DEFAULT $forward
452         \$(CC) \$(CFLAGS)${incs} /MMS=(FILE=${objd}${objn}.MMS,TARGET=$obj.OBJ) /NOOBJECT $srcs
453         SET DEFAULT $backward
454         ${after}
455         - PURGE $obj.MMS
456 $obj.OBJ : $obj.MMS
457         ${before}
458         SET DEFAULT $forward
459         \$(CC) \$(CFLAGS)${incs} /OBJECT=${objd}${objn}.OBJ /REPOSITORY=$backward $srcs
460         SET DEFAULT $backward
461         ${after}
462         - PURGE $obj.OBJ
463 EOF
464   }
465   sub libobj2shlib {
466       my %args = @_;
467       my $lib = $args{lib};
468       my $shlib = $args{shlib};
469       my $libd = dirname($lib);
470       my $libn = basename($lib);
471       (my $mkdef_key = $libn) =~ s/^${osslprefix_q}lib//i;
472       my @deps = map {
473           $disabled{shared} ? $_.".OLB"
474               : $unified_info{sharednames}->{$_}.".EXE"; } @{$args{deps}};
475       my $deps = join(", -\n\t\t", @deps);
476       my $shlib_target = $disabled{shared} ? "" : $target{shared_target};
477       my $ordinalsfile = defined($args{ordinals}) ? $args{ordinals}->[1] : "";
478       my $engine_opt = abs2rel(rel2abs(catfile($config{sourcedir},
479                                                "VMS", "engine.opt")),
480                                rel2abs($config{builddir}));
481       my $mkdef_pl = abs2rel(rel2abs(catfile($config{sourcedir},
482                                              "util", "mkdef.pl")),
483                              rel2abs($config{builddir}));
484       my $translatesyms_pl = abs2rel(rel2abs(catfile($config{sourcedir},
485                                                      "VMS", "translatesyms.pl")),
486                                      rel2abs($config{builddir}));
487       # The "[]" hack is because in .OPT files, each line inherits the
488       # previous line's file spec as default, so if no directory spec
489       # is present in the current line and the previous line has one that
490       # doesn't apply, you're in for a surprise.
491       my $write_opt =
492           join("\n\t", map { my $x = $_ =~ /\[/ ? $_ : "[]".$_;
493                              $x =~ s|(\.EXE)|$1/SHARE|;
494                              $x =~ s|(\.OLB)|$1/LIB|;
495                              "WRITE OPT_FILE \"$x\"" } @deps)
496           || "\@ !";
497       return <<"EOF";
498 $shlib.EXE : $lib.OLB $deps $ordinalsfile
499         IF "$mkdef_key" .EQS. "ssl" .OR. "$mkdef_key" .EQS. "crypto" THEN -
500            \$(PERL) $mkdef_pl "$mkdef_key" "VMS" > $shlib.SYMVEC-tmp
501         IF "$mkdef_key" .EQS. "ssl" .OR. "$mkdef_key" .EQS. "crypto" THEN -
502            \$(PERL) $translatesyms_pl \$(BUILDDIR)CXX\$DEMANGLER_DB. < $shlib.SYMVEC-tmp > $shlib.SYMVEC
503         OPEN/WRITE/SHARE=READ OPT_FILE $shlib.OPT
504         WRITE OPT_FILE "IDENTIFICATION=""V$config{version}"""
505         IF "$mkdef_key" .NES. "ssl" .AND. "$mkdef_key" .NES. "crypto" THEN -
506            TYPE $engine_opt /OUTPUT=OPT_FILE:
507         IF "$mkdef_key" .EQS. "ssl" .OR. "$mkdef_key" .EQS. "crypto" THEN -
508            TYPE $shlib.SYMVEC /OUTPUT=OPT_FILE:
509         WRITE OPT_FILE "$lib.OLB/LIBRARY"
510         $write_opt ! Comment to protect from empty line
511         CLOSE OPT_FILE
512         LINK /MAP=$shlib.MAP /FULL/SHARE=$shlib.EXE $shlib.OPT/OPT \$(EX_LIBS)
513         - DELETE $shlib.SYMVEC;*
514         - PURGE $shlib.EXE,$shlib.OPT,$shlib.MAP
515 EOF
516   }
517   sub obj2dso {
518       my %args = @_;
519       my $lib = $args{lib};
520       my $libd = dirname($lib);
521       my $libn = basename($lib);
522       (my $libn_nolib = $libn) =~ s/^lib//;
523       my @objs = map { "$_.OBJ" } @{$args{objs}};
524       my @deps = map {
525           $disabled{shared} ? $_.".OLB"
526               : $unified_info{sharednames}->{$_}.".EXE"; } @{$args{deps}};
527       my $deps = join(", -\n\t\t", @objs, @deps);
528       my $shlib_target = $disabled{shared} ? "" : $target{shared_target};
529       my $engine_opt = abs2rel(rel2abs(catfile($config{sourcedir},
530                                                "VMS", "engine.opt")),
531                                rel2abs($config{builddir}));
532       # The "[]" hack is because in .OPT files, each line inherits the
533       # previous line's file spec as default, so if no directory spec
534       # is present in the current line and the previous line has one that
535       # doesn't apply, you're in for a surprise.
536       my $write_opt =
537           join(",-\"\n\t", map { my $x = $_ =~ /\[/ ? $_ : "[]".$_;
538                                  "WRITE OPT_FILE \"$x" } @objs).
539           "\"\n\t".
540           join("\n\t", map { my $x = $_ =~ /\[/ ? $_ : "[]".$_;
541                              $x =~ s|(\.EXE)|$1/SHARE|;
542                              $x =~ s|(\.OLB)|$1/LIB|;
543                              "WRITE OPT_FILE \"$x\"" } @deps)
544           || "\@ !";
545       return <<"EOF";
546 $lib.EXE : $deps
547         OPEN/WRITE/SHARE=READ OPT_FILE $lib.OPT
548         TYPE $engine_opt /OUTPUT=OPT_FILE:
549         $write_opt
550         CLOSE OPT_FILE
551         LINK /MAP=$lib.MAP /FULL/SHARE=$lib.EXE $lib.OPT/OPT \$(EX_LIBS)
552         - PURGE $lib.EXE,$lib.OPT,$lib.MAP
553 EOF
554   }
555   sub obj2lib {
556       my %args = @_;
557       my $lib = $args{lib};
558       my $objs = join(", -\n\t\t", map { $_.".OBJ" } (@{$args{objs}}));
559       my $fill_lib = join("\n\t", (map { "LIBRARY/REPLACE $lib.OLB $_.OBJ" }
560                                     @{$args{objs}}));
561       return <<"EOF";
562 $lib.OLB : $objs
563         LIBRARY/CREATE/OBJECT $lib
564         $fill_lib
565         - PURGE $lib.OLB
566 EOF
567   }
568   sub obj2bin {
569       my %args = @_;
570       my $bin = $args{bin};
571       my $bind = dirname($bin);
572       my $binn = basename($bin);
573       my @objs = map { "$_.OBJ" } @{$args{objs}};
574       my @deps = map {
575           $disabled{shared} ? $_.".OLB"
576               : $unified_info{sharednames}->{$_}.".EXE"; } @{$args{deps}};
577       my $deps = join(", -\n\t\t", @objs, @deps);
578       # The "[]" hack is because in .OPT files, each line inherits the
579       # previous line's file spec as default, so if no directory spec
580       # is present in the current line and the previous line has one that
581       # doesn't apply, you're in for a surprise.
582       my $write_opt =
583           join(",-\"\n\t", map { my $x = $_ =~ /\[/ ? $_ : "[]".$_;
584                                  "WRITE OPT_FILE \"$x" } @objs).
585           "\"\n\t".
586           join("\n\t", map { my $x = $_ =~ /\[/ ? $_ : "[]".$_;
587                              $x =~ s|(\.EXE)|$1/SHARE|;
588                              $x =~ s|(\.OLB)|$1/LIB|;
589                              "WRITE OPT_FILE \"$x\"" } @deps)
590           || "\@ !";
591       return <<"EOF";
592 $bin.EXE : $deps
593         OPEN/WRITE/SHARE=READ OPT_FILE $bin.OPT
594         $write_opt
595         CLOSE OPT_FILE
596         LINK/EXEC=$bin.EXE \$(LDFLAGS) $bin.OPT/OPT \$(EX_LIBS)
597         - PURGE $bin.EXE,$bin.OPT
598 EOF
599   }
600   sub in2script {
601       my %args = @_;
602       my $script = $args{script};
603       return "" if grep { $_ eq $script } @{$args{sources}}; # No overwrite!
604       my $sources = join(" ", @{$args{sources}});
605       my $dofile = abs2rel(rel2abs(catfile($config{sourcedir},
606                                            "util", "dofile.pl")),
607                            rel2abs($config{builddir}));
608       return <<"EOF";
609 $script : $sources
610         \$(PERL) "-I\$(BUILDDIR)" "-Mconfigdata" $dofile -
611             "-o$target{build_file}" $sources > $script
612         SET FILE/PROT=(S:RWED,O:RWED,G:RE,W:RE) $script
613         PURGE $script
614 EOF
615   }
616   ""    # Important!  This becomes part of the template result.
617 -}