40e04bbb1709799e1184b325129a60bbd88d1e92
[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_shared _install_dev_ns -
357              install_engines _install_runtime_ns -
358              install_startup install_ivp
359
360 uninstall_sw : uninstall_shared _uninstall_dev_ns -
361                uninstall_engines _uninstall_runtime_ns -
362                uninstall_startup uninstall_ivp
363
364 install_docs : install_html_docs
365
366 uninstall_docs : uninstall_html_docs
367
368 install_ssldirs : check_INSTALLTOP
369         - CREATE/DIR/PROT=(S:RWED,O:RWE,G:RE,W:RE) OSSL_DATAROOT:[000000]
370         IF F$SEARCH("OSSL_DATAROOT:[000000]CERTS.DIR;1") .EQS. "" THEN -
371                 CREATE/DIR/PROT=(S:RWED,O:RWE,G:RE,W:RE) OSSL_DATAROOT:[CERTS]
372         IF F$SEARCH("OSSL_DATAROOT:[000000]PRIVATE.DIR;1") .EQS. "" THEN -
373                 CREATE/DIR/PROT=(S:RWED,O:RWE,G,W) OSSL_DATAROOT:[PRIVATE]
374         IF F$SEARCH("OSSL_DATAROOT:[000000]MISC.DIR;1") .EQS. "" THEN -
375                 CREATE/DIR/PROT=(S:RWED,O:RWE,G,W) OSSL_DATAROOT:[MISC]
376         COPY/PROT=W:RE $(MISC_SCRIPTS) OSSL_DATAROOT:[MISC]
377         @ ! Install configuration file
378         COPY/PROT=W:R {- sourcefile("apps", "openssl-vms.cnf") -} -
379                 ossl_dataroot:[000000]openssl.cnf-dist
380         IF F$SEARCH("OSSL_DATAROOT:[000000]openssl.cnf") .EQS. "" THEN -
381                 COPY/PROT=W:R {- sourcefile("apps", "openssl-vms.cnf") -} -
382                         ossl_dataroot:[000000]openssl.cnf
383
384 install_shared : check_INSTALLTOP
385         @ {- output_off() if $disabled{shared}; "" -} !
386         @ WRITE SYS$OUTPUT "*** Installing shareable images"
387         @ ! Install shared (runtime) libraries
388         - CREATE/DIR ossl_installroot:[LIB.'arch']
389         {- join("\n        ",
390                 map { "COPY/PROT=W:R $_.EXE ossl_installroot:[LIB.'arch']" }
391                 @install_shlibs) -}
392         @ {- output_on() if $disabled{shared}; "" -} !
393
394 _install_dev_ns : check_INSTALLTOP
395         @ WRITE SYS$OUTPUT "*** Installing development files"
396         @ ! Install header files
397         - CREATE/DIR ossl_installroot:[include.openssl]
398         COPY/PROT=W:R openssl:*.h ossl_installroot:[include.openssl]
399         @ ! Install static (development) libraries
400         - CREATE/DIR ossl_installroot:[LIB.'arch']
401         {- join("\n        ",
402                 map { "COPY/PROT=W:R $_.OLB ossl_installroot:[LIB.'arch']" }
403                 @{$unified_info{install}->{libraries}}) -}
404
405 install_dev : install_shared _install_dev_ns
406
407 _install_runtime_ns : check_INSTALLTOP
408         @ ! Install the main program
409         - CREATE/DIR ossl_installroot:[EXE.'arch']
410         COPY/PROT=W:RE [.APPS]openssl.EXE -
411                 ossl_installroot:[EXE.'arch']openssl{- $osslver -}.EXE
412         @ ! Install scripts
413         COPY/PROT=W:RE $(BIN_SCRIPTS) ossl_installroot:[EXE]
414         @ ! {- output_on() if $disabled{apps}; "" -}
415
416 install_runtime : install_shared _install_runtime_ns
417
418 install_engines : check_INSTALLTOP
419         @ {- output_off() unless scalar @{$unified_info{engines}}; "" -} !
420         @ WRITE SYS$OUTPUT "*** Installing engines"
421         - CREATE/DIR ossl_installroot:[ENGINES{- $sover.$target{pointer_size} -}.'arch']
422         {- join("\n        ",
423                 map { "COPY/PROT=W:RE $_.EXE ossl_installroot:[ENGINES$sover$target{pointer_size}.'arch']" }
424                 @{$unified_info{install}->{engines}}) -}
425         @ {- output_on() unless scalar @{$unified_info{engines}}; "" -} !
426
427 install_startup : [.VMS]openssl_startup.com [.VMS]openssl_shutdown.com -
428                  [.VMS]openssl_utils.com, check_INSTALLTOP
429         - CREATE/DIR ossl_installroot:[SYS$STARTUP]
430         COPY/PROT=W:RE [.VMS]openssl_startup.com -
431                 ossl_installroot:[SYS$STARTUP]openssl_startup{- $osslver -}.com
432         COPY/PROT=W:RE [.VMS]openssl_shutdown.com -
433                 ossl_installroot:[SYS$STARTUP]openssl_shutdown{- $osslver -}.com
434         COPY/PROT=W:RE [.VMS]openssl_utils.com -
435                 ossl_installroot:[SYS$STARTUP]openssl_utils{- $osslver -}.com
436
437 install_ivp : [.VMS]openssl_ivp.com check_INSTALLTOP
438         - CREATE/DIR ossl_installroot:[SYSTEST]
439         COPY/PROT=W:RE [.VMS]openssl_ivp.com -
440                 ossl_installroot:[SYSTEST]openssl_ivp{- $osslver -}.com
441
442 [.VMS]openssl_startup.com : vmsconfig.pm {- sourcefile("VMS", "openssl_startup.com.in") -}
443         - CREATE/DIR [.VMS]
444         $(PERL) "-I." "-Mvmsconfig" {- sourcefile("util", "dofile.pl") -} -
445                 {- sourcefile("VMS", "openssl_startup.com.in") -} -
446                 > [.VMS]openssl_startup.com
447
448 [.VMS]openssl_utils.com : vmsconfig.pm {- sourcefile("VMS", "openssl_utils.com.in") -}
449         - CREATE/DIR [.VMS]
450         $(PERL) "-I." "-Mvmsconfig" {- sourcefile("util", "dofile.pl") -} -
451                 {- sourcefile("VMS", "openssl_utils.com.in") -} -
452                 > [.VMS]openssl_utils.com
453
454 [.VMS]openssl_shutdown.com : vmsconfig.pm {- sourcefile("VMS", "openssl_shutdown.com.in") -}
455         - CREATE/DIR [.VMS]
456         $(PERL) "-I." "-Mvmsconfig" {- sourcefile("util", "dofile.pl") -} -
457                 {- sourcefile("VMS", "openssl_shutdown.com.in") -} -
458                 > [.VMS]openssl_shutdown.com
459
460 [.VMS]openssl_ivp.com : vmsconfig.pm {- sourcefile("VMS", "openssl_ivp.com.in") -}
461         - CREATE/DIR [.VMS]
462         $(PERL) "-I." "-Mvmsconfig" {- sourcefile("util", "dofile.pl") -} -
463                 {- sourcefile("VMS", "openssl_ivp.com.in") -} -
464                 > [.VMS]openssl_ivp.com
465
466 vmsconfig.pm : configdata.pm
467         OPEN/WRITE/SHARE=READ CONFIG []vmsconfig.pm
468         WRITE CONFIG "package vmsconfig;"
469         WRITE CONFIG "use strict; use warnings;"
470         WRITE CONFIG "use Exporter;"
471         WRITE CONFIG "our @ISA = qw(Exporter);"
472         WRITE CONFIG "our @EXPORT = qw(%config %target %withargs %unified_info %disabled);"
473         WRITE CONFIG "our %config = ("
474         WRITE CONFIG "  target => '","{- $config{target} -}","',"
475         WRITE CONFIG "  version => '","{- $config{version} -}","',"
476         WRITE CONFIG "  shlib_major => '","{- $config{shlib_major} -}","',"
477         WRITE CONFIG "  shlib_minor => '","{- $config{shlib_minor} -}","',"
478         WRITE CONFIG "  no_shared => '","{- $disabled{shared} -}","',"
479         WRITE CONFIG "  INSTALLTOP => '$(INSTALLTOP)',"
480         WRITE CONFIG "  OPENSSLDIR => '$(OPENSSLDIR)',"
481         WRITE CONFIG "  pointer_size => '","{- $target{pointer_size} -}","',"
482         WRITE CONFIG ");"
483         WRITE CONFIG "our %target = ();"
484         WRITE CONFIG "our %disabled = ();"
485         WRITE CONFIG "our %withargs = ();"
486         WRITE CONFIG "our %unified_info = ();"
487         WRITE CONFIG "1;"
488         CLOSE CONFIG
489
490 install_html_docs : check_INSTALLTOP
491         @ $(PERL) {- sourcefile("util", "process_docs.pl") -} -
492                 --destdir=ossl_installroot:[HTML] --type=html
493
494 check_INSTALLTOP :
495         @ IF "$(INSTALLTOP)" .EQS. "" THEN -
496                 WRITE SYS$ERROR "INSTALLTOP should not be empty"
497         @ IF "$(INSTALLTOP)" .EQS. "" THEN -
498                 EXIT %x10000002
499
500 # Helper targets #####################################################
501
502 # Developer targets ##################################################
503
504 debug_logicals :
505         SH LOGICAL/PROC openssl,internal,ossl_installroot,ossl_dataroot
506
507 # Building targets ###################################################
508
509 configdata.pm : {- join(" ", sourcefile("Configurations", "descrip.mms.tmpl"), sourcefile("Configurations", "common.tmpl")) -} $(SRCDIR)Configure $(SRCDIR)config.com {- join(" ", @{$config{build_infos}}) -}
510         @ WRITE SYS$OUTPUT "Reconfiguring..."
511         perl $(SRCDIR)Configure reconf
512         @ WRITE SYS$OUTPUT "*************************************************"
513         @ WRITE SYS$OUTPUT "***                                           ***"
514         @ WRITE SYS$OUTPUT "***   Please run the same mms command again   ***"
515         @ WRITE SYS$OUTPUT "***                                           ***"
516         @ WRITE SYS$OUTPUT "*************************************************"
517         @ PIPE ( EXIT %X10000000 )
518
519 {-
520   use File::Basename;
521   use File::Spec::Functions qw/abs2rel rel2abs catfile catdir/;
522
523   sub generatesrc {
524       my %args = @_;
525       my $generator = join(" ", @{$args{generator}});
526       my $generator_incs = join("", map { ' "-I'.$_.'"' } @{$args{generator_incs}});
527       my $deps = join(", -\n\t\t", @{$args{generator_deps}}, @{$args{deps}});
528
529       if ($args{src} !~ /\.[sS]$/) {
530           if ($args{generator}->[0] =~ m|^.*\.in$|) {
531               my $dofile = abs2rel(rel2abs(catfile($config{sourcedir},
532                                                    "util", "dofile.pl")),
533                                    rel2abs($config{builddir}));
534               return <<"EOF";
535 $args{src} : $args{generator}->[0] $deps
536         \$(PERL) "-I\$(BLDDIR)" "-Mconfigdata" $dofile \\
537             "-o$target{build_file}" $generator > \$@
538 EOF
539           } else {
540               return <<"EOF";
541 $args{src} : $args{generator}->[0] $deps
542         \$(PERL)$generator_incs $generator > \$@
543 EOF
544           }
545       } else {
546           die "No method to generate assembler source present.\n";
547       }
548   }
549
550   sub src2obj {
551       my %args = @_;
552       my $obj = $args{obj};
553       my $deps = join(", -\n\t\t", @{$args{srcs}}, @{$args{deps}});
554
555       # Because VMS C isn't very good at combining a /INCLUDE path with
556       # #includes having a relative directory (like '#include "../foo.h"),
557       # the best choice is to move to the first source file's intended
558       # directory before compiling, and make sure to write the object file
559       # in the correct position (important when the object tree is other
560       # than the source tree).
561       my $forward = dirname($args{srcs}->[0]);
562       my $backward = abs2rel(rel2abs("."), rel2abs($forward));
563       my $objd = abs2rel(rel2abs(dirname($obj)), rel2abs($forward));
564       my $objn = basename($obj);
565       my $srcs =
566           join(", ",
567                map { abs2rel(rel2abs($_), rel2abs($forward)) } @{$args{srcs}});
568       my $ecflags = { lib => '$(LIB_CFLAGS)',
569                       dso => '$(DSO_CFLAGS)',
570                       bin => '$(BIN_CFLAGS)' } -> {$args{intent}};
571       my $incs_on = "\@ !";
572       my $incs_off = "\@ !";
573       my $incs = "";
574       my @incs = ();
575       push @incs, @{$args{incs}} if @{$args{incs}};
576       unless ($disabled{zlib}) {
577           # GNV$ZLIB_INCLUDE is the standard logical name for later zlib
578           # incarnations.
579           push @incs, ($withargs{zlib_include} || 'GNV$ZLIB_INCLUDE:');
580       }
581       if (@incs) {
582           $incs_on =
583               "DEFINE tmp_includes "
584               .join(",-\n\t\t\t", map {
585                                       file_name_is_absolute($_)
586                                       ? $_ : catdir($backward,$_)
587                                   } @incs);
588           $incs_off = "DEASSIGN tmp_includes";
589           $incs = " /INCLUDE=(tmp_includes:)";
590       }
591       my $before = $unified_info{before}->{$obj.".OBJ"} || "\@ !";
592       my $after = $unified_info{after}->{$obj.".OBJ"} || "\@ !";
593       my $depbuild = $disabled{makedepend} ? ""
594           : " /MMS=(FILE=${objd}${objn}.tmp-D,TARGET=$obj.OBJ)";
595
596       return <<"EOF";
597 $obj.OBJ : $deps
598         ${before}
599         SET DEFAULT $forward
600         $incs_on
601         \$(CC) \$(CFLAGS)${ecflags}${incs}${depbuild} /OBJECT=${objd}${objn}.OBJ /REPOSITORY=$backward $srcs
602         $incs_off
603         SET DEFAULT $backward
604         ${after}
605         \@ PIPE ( \$(PERL) -e "use File::Compare qw/compare_text/; my \$x = compare_text(""$obj.D"",""$obj.tmp-D""); exit(0x10000000 + (\$x == 0));" || -
606                  RENAME $obj.tmp-D $obj.d )
607         \@ IF F\$SEARCH("$obj.tmp-D") .NES. "" THEN DELETE $obj.tmp-D;*
608         - PURGE $obj.OBJ
609 EOF
610   }
611   sub libobj2shlib {
612       my %args = @_;
613       my $lib = $args{lib};
614       my $shlib = $args{shlib};
615       my $libd = dirname($lib);
616       my $libn = basename($lib);
617       (my $mkdef_key = $libn) =~ s/^${osslprefix_q}lib([^0-9]*)\d*/$1/i;
618       my @deps = map {
619           $disabled{shared} ? $_.".OLB"
620               : $unified_info{sharednames}->{$_}.".EXE"; } @{$args{deps}};
621       my $deps = join(", -\n\t\t", @deps);
622       my $shlib_target = $disabled{shared} ? "" : $target{shared_target};
623       my $ordinalsfile = defined($args{ordinals}) ? $args{ordinals}->[1] : "";
624       my $engine_opt = abs2rel(rel2abs(catfile($config{sourcedir},
625                                                "VMS", "engine.opt")),
626                                rel2abs($config{builddir}));
627       my $mkdef_pl = abs2rel(rel2abs(catfile($config{sourcedir},
628                                              "util", "mkdef.pl")),
629                              rel2abs($config{builddir}));
630       my $translatesyms_pl = abs2rel(rel2abs(catfile($config{sourcedir},
631                                                      "VMS", "translatesyms.pl")),
632                                      rel2abs($config{builddir}));
633       # The "[]" hack is because in .OPT files, each line inherits the
634       # previous line's file spec as default, so if no directory spec
635       # is present in the current line and the previous line has one that
636       # doesn't apply, you're in for a surprise.
637       my $write_opt =
638           join("\n\t", map { my $x = $_ =~ /\[/ ? $_ : "[]".$_;
639                              $x =~ s|(\.EXE)|$1/SHARE|;
640                              $x =~ s|(\.OLB)|$1/LIB|;
641                              "WRITE OPT_FILE \"$x\"" } @deps)
642           || "\@ !";
643       return <<"EOF";
644 $shlib.EXE : $lib.OLB $deps $ordinalsfile
645         \$(PERL) $mkdef_pl "$mkdef_key" "VMS" > $shlib.SYMVEC-tmp
646         \$(PERL) $translatesyms_pl \$(BLDDIR)CXX\$DEMANGLER_DB. < $shlib.SYMVEC-tmp > $shlib.SYMVEC
647         DELETE $shlib.SYMVEC-tmp;*
648         OPEN/WRITE/SHARE=READ OPT_FILE $shlib.OPT
649         WRITE OPT_FILE "IDENTIFICATION=""V$config{version}"""
650         TYPE $shlib.SYMVEC /OUTPUT=OPT_FILE:
651         WRITE OPT_FILE "$lib.OLB/LIBRARY"
652         $write_opt
653         CLOSE OPT_FILE
654         LINK /MAP=$shlib.MAP /FULL/SHARE=$shlib.EXE $shlib.OPT/OPT \$(EX_LIBS)
655         DELETE $shlib.SYMVEC;*
656         PURGE $shlib.EXE,$shlib.OPT,$shlib.MAP
657 EOF
658   }
659   sub obj2dso {
660       my %args = @_;
661       my $lib = $args{lib};
662       my $libd = dirname($lib);
663       my $libn = basename($lib);
664       (my $libn_nolib = $libn) =~ s/^lib//;
665       my @objs = map { "$_.OBJ" } @{$args{objs}};
666       my @deps = map {
667           $disabled{shared} ? $_.".OLB"
668               : $unified_info{sharednames}->{$_}.".EXE"; } @{$args{deps}};
669       my $deps = join(", -\n\t\t", @objs, @deps);
670       my $shlib_target = $disabled{shared} ? "" : $target{shared_target};
671       my $engine_opt = abs2rel(rel2abs(catfile($config{sourcedir},
672                                                "VMS", "engine.opt")),
673                                rel2abs($config{builddir}));
674       # The "[]" hack is because in .OPT files, each line inherits the
675       # previous line's file spec as default, so if no directory spec
676       # is present in the current line and the previous line has one that
677       # doesn't apply, you're in for a surprise.
678       my $write_opt =
679           join(",-\"\n\t", map { my $x = $_ =~ /\[/ ? $_ : "[]".$_;
680                                  "WRITE OPT_FILE \"$x" } @objs).
681           "\"\n\t".
682           join("\n\t", map { my $x = $_ =~ /\[/ ? $_ : "[]".$_;
683                              $x =~ s|(\.EXE)|$1/SHARE|;
684                              $x =~ s|(\.OLB)|$1/LIB|;
685                              "WRITE OPT_FILE \"$x\"" } @deps)
686           || "\@ !";
687       return <<"EOF";
688 $lib.EXE : $deps
689         OPEN/WRITE/SHARE=READ OPT_FILE $lib.OPT
690         TYPE $engine_opt /OUTPUT=OPT_FILE:
691         $write_opt
692         CLOSE OPT_FILE
693         LINK /MAP=$lib.MAP /FULL/SHARE=$lib.EXE $lib.OPT/OPT \$(EX_LIBS)
694         - PURGE $lib.EXE,$lib.OPT,$lib.MAP
695 EOF
696   }
697   sub obj2lib {
698       my %args = @_;
699       my $lib = $args{lib};
700       my $objs = join(", -\n\t\t", map { $_.".OBJ" } (@{$args{objs}}));
701       my $fill_lib = join("\n\t", (map { "LIBRARY/REPLACE $lib.OLB $_.OBJ" }
702                                     @{$args{objs}}));
703       return <<"EOF";
704 $lib.OLB : $objs
705         LIBRARY/CREATE/OBJECT $lib.OLB
706         $fill_lib
707         - PURGE $lib.OLB
708 EOF
709   }
710   sub obj2bin {
711       my %args = @_;
712       my $bin = $args{bin};
713       my $bind = dirname($bin);
714       my $binn = basename($bin);
715       my @objs = map { "$_.OBJ" } @{$args{objs}};
716       my @deps = map {
717           $disabled{shared} ? $_.".OLB"
718               : $unified_info{sharednames}->{$_}.".EXE"; } @{$args{deps}};
719       my $deps = join(", -\n\t\t", @objs, @deps);
720       # The "[]" hack is because in .OPT files, each line inherits the
721       # previous line's file spec as default, so if no directory spec
722       # is present in the current line and the previous line has one that
723       # doesn't apply, you're in for a surprise.
724       my $write_opt =
725           join(",-\"\n\t", map { my $x = $_ =~ /\[/ ? $_ : "[]".$_;
726                                  "WRITE OPT_FILE \"$x" } @objs).
727           "\"\n\t".
728           join("\n\t", map { my $x = $_ =~ /\[/ ? $_ : "[]".$_;
729                              $x =~ s|(\.EXE)|$1/SHARE|;
730                              $x =~ s|(\.OLB)|$1/LIB|;
731                              "WRITE OPT_FILE \"$x\"" } @deps)
732           || "\@ !";
733       return <<"EOF";
734 $bin.EXE : $deps
735         OPEN/WRITE/SHARE=READ OPT_FILE $bin.OPT
736         $write_opt
737         CLOSE OPT_FILE
738         LINK/EXEC=$bin.EXE \$(LDFLAGS) $bin.OPT/OPT \$(EX_LIBS)
739         - PURGE $bin.EXE,$bin.OPT
740 EOF
741   }
742   sub in2script {
743       my %args = @_;
744       my $script = $args{script};
745       return "" if grep { $_ eq $script } @{$args{sources}}; # No overwrite!
746       my $sources = join(" ", @{$args{sources}});
747       my $dofile = abs2rel(rel2abs(catfile($config{sourcedir},
748                                            "util", "dofile.pl")),
749                            rel2abs($config{builddir}));
750       return <<"EOF";
751 $script : $sources
752         \$(PERL) "-I\$(BLDDIR)" "-Mconfigdata" $dofile -
753             "-o$target{build_file}" $sources > $script
754         SET FILE/PROT=(S:RWED,O:RWED,G:RE,W:RE) $script
755         PURGE $script
756 EOF
757   }
758   ""    # Important!  This becomes part of the template result.
759 -}