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