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