]> git.ipfire.org Git - thirdparty/openssl.git/blob - Configurations/windows-makefile.tmpl
Build: Generate apps/progs.c and apps/progs.h in build time
[thirdparty/openssl.git] / Configurations / windows-makefile.tmpl
1 ##
2 ## Makefile for OpenSSL
3 ##
4 ## {- join("\n## ", @autowarntext) -}
5 {-
6 use File::Basename;
7
8 our $sover_dirname = platform->shlib_version_as_filename();
9
10 my $build_scheme = $target{build_scheme};
11 my $install_flavour = $build_scheme->[$#$build_scheme]; # last element
12 my $win_installenv =
13 $install_flavour eq "VC-WOW" ? "ProgramFiles(x86)"
14 : "ProgramW6432";
15 my $win_commonenv =
16 $install_flavour eq "VC-WOW" ? "CommonProgramFiles(x86)"
17 : "CommonProgramW6432";
18 our $win_installroot =
19 defined($ENV{$win_installenv}) ? $win_installenv : 'ProgramFiles';
20 our $win_commonroot =
21 defined($ENV{$win_commonenv}) ? $win_commonenv : 'CommonProgramFiles';
22
23 # expand variables early
24 $win_installroot = $ENV{$win_installroot};
25 $win_commonroot = $ENV{$win_commonroot};
26
27 # This makes sure things get built in the order they need
28 # to. You're welcome.
29 sub dependmagic {
30 my $target = shift;
31
32 return "$target: build_generated\n\t\$(MAKE) /\$(MAKEFLAGS) depend && \$(MAKE) /\$(MAKEFLAGS) _$target\n_$target";
33 }
34 '';
35 -}
36
37 PLATFORM={- $config{target} -}
38 SRCDIR={- $config{sourcedir} -}
39 BLDDIR={- $config{builddir} -}
40
41 VERSION={- "$config{full_version}" -}
42 MAJOR={- $config{major} -}
43 MINOR={- $config{minor} -}
44
45 SHLIB_VERSION_NUMBER={- $config{shlib_version} -}
46
47 LIBS={- join(" ", map { ( platform->sharedlib_import($_), platform->staticlib($_) ) } @{$unified_info{libraries}}) -}
48 SHLIBS={- join(" ", map { platform->sharedlib($_) // () } @{$unified_info{libraries}}) -}
49 SHLIBPDBS={- join(" ", map { platform->sharedlibpdb($_) // () } @{$unified_info{libraries}}) -}
50 MODULES={- join(" ", map { platform->dso($_) } @{$unified_info{modules}}) -}
51 MODULEPDBS={- join(" ", map { platform->dsopdb($_) } @{$unified_info{modules}}) -}
52 PROGRAMS={- our @PROGRAMS = map { platform->bin($_) } @{$unified_info{programs}}; join(" ", @PROGRAMS) -}
53 PROGRAMPDBS={- join(" ", map { $_.".pdb" } @{$unified_info{programs}}) -}
54 SCRIPTS={- join(" ", @{$unified_info{scripts}}) -}
55 {- output_off() if $disabled{makedepend}; "" -}
56 DEPS={- join(" ", map { platform->isobj($_) ? platform->dep($_) : () }
57 grep { $unified_info{sources}->{$_}->[0] =~ /\.c$/ }
58 keys %{$unified_info{sources}}); -}
59 {- output_on() if $disabled{makedepend}; "" -}
60 GENERATED_MANDATORY={- join(" ", @{$unified_info{depends}->{""}} ) -}
61 GENERATED={- # common0.tmpl provides @generated
62 join(" ", map { platform->convertext($_) } @generated) -}
63
64 INSTALL_LIBS={-
65 join(" ", map { quotify1(platform->sharedlib_import($_)
66 // platform->staticlib($_)) }
67 grep { !$unified_info{attributes}->{libraries}->{$_}->{noinst} }
68 @{$unified_info{libraries}})
69 -}
70 INSTALL_SHLIBS={-
71 join(" ", map { my $x = platform->sharedlib($_);
72 $x ? quotify_l($x) : () }
73 grep { !$unified_info{attributes}->{libraries}->{$_}->{noinst} }
74 @{$unified_info{libraries}})
75 -}
76 INSTALL_SHLIBPDBS={-
77 join(" ", map { my $x = platform->sharedlibpdb($_);
78 $x ? quotify_l($x) : () }
79 grep { !$unified_info{attributes}->{libraries}->{$_}->{noinst} }
80 @{$unified_info{libraries}})
81 -}
82 INSTALL_ENGINES={-
83 join(" ", map { quotify1(platform->dso($_)) }
84 grep { !$unified_info{attributes}->{modules}->{$_}->{noinst}
85 && $unified_info{attributes}->{modules}->{$_}->{engine} }
86 @{$unified_info{modules}})
87 -}
88 INSTALL_ENGINEPDBS={-
89 join(" ", map { quotify1(platform->dsopdb($_)) }
90 grep { !$unified_info{attributes}->{modules}->{$_}->{noinst}
91 && $unified_info{attributes}->{modules}->{$_}->{engine} }
92 @{$unified_info{modules}})
93 -}
94 INSTALL_PROGRAMS={-
95 join(" ", map { quotify1(platform->bin($_)) }
96 grep { !$unified_info{attributes}->{programs}->{$_}->{noinst} }
97 @{$unified_info{programs}})
98 -}
99 INSTALL_PROGRAMPDBS={-
100 join(" ", map { quotify1(platform->binpdb($_)) }
101 grep { !$unified_info{attributes}->{programs}->{$_}->{noinst} }
102 @{$unified_info{programs}})
103 -}
104 BIN_SCRIPTS={-
105 join(" ", map { quotify1($_) }
106 grep { !$unified_info{attributes}->{scripts}->{$_}->{noinst}
107 && !$unified_info{attributes}->{scripts}->{$_}->{misc} }
108 @{$unified_info{scripts}})
109 -}
110 MISC_SCRIPTS={-
111 join(" ", map { quotify1($_) }
112 grep { !$unified_info{attributes}->{scripts}->{$_}->{noinst}
113 && $unified_info{attributes}->{scripts}->{$_}->{misc} }
114 @{$unified_info{scripts}})
115 -}
116 HTMLDOCS1={- our @HTMLDOCS1 = @{$unified_info{htmldocs}->{man1}};
117 join(" ", @HTMLDOCS1) -}
118 HTMLDOCS3={- our @HTMLDOCS3 = @{$unified_info{htmldocs}->{man3}};
119 join(" ", @HTMLDOCS3) -}
120 HTMLDOCS5={- our @HTMLDOCS5 = @{$unified_info{htmldocs}->{man5}};
121 join(" ", @HTMLDOCS5) -}
122 HTMLDOCS7={- our @HTMLDOCS7 = @{$unified_info{htmldocs}->{man7}};
123 join(" ", @HTMLDOCS7) -}
124 HTMLDOCS1_BLDDIRS={- my %dirs = map { dirname($_) => 1 } @HTMLDOCS1;
125 join(' ', sort keys %dirs) -}
126 HTMLDOCS3_BLDDIRS={- my %dirs = map { dirname($_) => 1 } @HTMLDOCS3;
127 join(' ', sort keys %dirs) -}
128 HTMLDOCS5_BLDDIRS={- my %dirs = map { dirname($_) => 1 } @HTMLDOCS5;
129 join(' ', sort keys %dirs) -}
130 HTMLDOCS7_BLDDIRS={- my %dirs = map { dirname($_) => 1 } @HTMLDOCS7;
131 join(' ', sort keys %dirs) -}
132
133 APPS_OPENSSL="{- use File::Spec::Functions;
134 catfile("apps","openssl") -}"
135
136 # Do not edit these manually. Use Configure with --prefix or --openssldir
137 # to change this! Short explanation in the top comment in Configure
138 INSTALLTOP_dev={- # $prefix is used in the OPENSSLDIR perl snippet
139 #
140 use File::Spec::Functions qw(:DEFAULT splitpath);
141 our $prefix = canonpath($config{prefix}
142 || "$win_installroot\\OpenSSL");
143 our ($prefix_dev, $prefix_dir, $prefix_file) =
144 splitpath($prefix, 1);
145 $prefix_dev -}
146 INSTALLTOP_dir={- canonpath($prefix_dir) -}
147 OPENSSLDIR_dev={- #
148 # The logic here is that if no --openssldir was given,
149 # OPENSSLDIR will get the value "$win_commonroot\\SSL".
150 # If --openssldir was given and the value is an absolute
151 # path, OPENSSLDIR will get its value without change.
152 # If the value from --openssldir is a relative path,
153 # OPENSSLDIR will get $prefix with the --openssldir
154 # value appended as a subdirectory.
155 #
156 use File::Spec::Functions qw(:DEFAULT splitpath);
157 our $openssldir =
158 $config{openssldir} ?
159 (file_name_is_absolute($config{openssldir}) ?
160 canonpath($config{openssldir})
161 : catdir($prefix, $config{openssldir}))
162 : canonpath("$win_commonroot\\SSL");
163 our ($openssldir_dev, $openssldir_dir, $openssldir_file) =
164 splitpath($openssldir, 1);
165 $openssldir_dev -}
166 OPENSSLDIR_dir={- canonpath($openssldir_dir) -}
167 LIBDIR={- our $libdir = $config{libdir} || "lib";
168 file_name_is_absolute($libdir) ? "" : $libdir -}
169 MODULESDIR_dev={- use File::Spec::Functions qw(:DEFAULT splitpath catpath);
170 our $modulesprefix = catdir($prefix,$libdir);
171 our ($modulesprefix_dev, $modulesprefix_dir,
172 $modulesprefix_file) =
173 splitpath($modulesprefix, 1);
174 our $modulesdir_dev = $modulesprefix_dev;
175 our $modulesdir_dir =
176 catdir($modulesprefix_dir, "ossl-modules");
177 our $modulesdir = catpath($modulesdir_dev, $modulesdir_dir);
178 our $enginesdir_dev = $modulesprefix_dev;
179 our $enginesdir_dir =
180 catdir($modulesprefix_dir, "engines-$sover_dirname");
181 our $enginesdir = catpath($enginesdir_dev, $enginesdir_dir);
182 $modulesdir_dev -}
183 MODULESDIR_dir={- canonpath($modulesdir_dir) -}
184 ENGINESDIR_dev={- $enginesdir_dev -}
185 ENGINESDIR_dir={- canonpath($enginesdir_dir) -}
186 !IF "$(DESTDIR)" != ""
187 INSTALLTOP=$(DESTDIR)$(INSTALLTOP_dir)
188 OPENSSLDIR=$(DESTDIR)$(OPENSSLDIR_dir)
189 ENGINESDIR=$(DESTDIR)$(ENGINESDIR_dir)
190 MODULESDIR=$(DESTDIR)$(MODULESDIR_dir)
191 !ELSE
192 INSTALLTOP=$(INSTALLTOP_dev)$(INSTALLTOP_dir)
193 OPENSSLDIR=$(OPENSSLDIR_dev)$(OPENSSLDIR_dir)
194 ENGINESDIR=$(ENGINESDIR_dev)$(ENGINESDIR_dir)
195 MODULESDIR=$(MODULESDIR_dev)$(MODULESDIR_dir)
196 !ENDIF
197
198 # $(libdir) is chosen to be compatible with the GNU coding standards
199 libdir={- file_name_is_absolute($libdir)
200 ? $libdir : '$(INSTALLTOP)\$(LIBDIR)' -}
201
202 ##### User defined commands and flags ################################
203
204 CC="{- $config{CC} -}"
205 CPP="{- $config{CPP} -}"
206 CPPFLAGS={- our $cppflags1 = join(" ",
207 (map { "-D".$_} @{$config{CPPDEFINES}}),
208 (map { " -I ".$_} @{$config{CPPINCLUDES}}),
209 @{$config{CPPFLAGS}}) -}
210 CFLAGS={- join(' ', @{$config{CFLAGS}}) -}
211 LD="{- $config{LD} -}"
212 LDFLAGS={- join(' ', @{$config{LDFLAGS}}) -}
213 EX_LIBS={- join(' ', @{$config{LDLIBS}}) -}
214
215 PERL={- $config{PERL} -}
216
217 AR="{- $config{AR} -}"
218 ARFLAGS= {- join(' ', @{$config{ARFLAGS}}) -}
219
220 MT="{- $config{MT} -}"
221 MTFLAGS= {- join(' ', @{$config{MTFLAGS}}) -}
222
223 AS="{- $config{AS} -}"
224 ASFLAGS={- join(' ', @{$config{ASFLAGS}}) -}
225
226 RC="{- $config{RC} -}"
227 RCFLAGS={- join(' ', @{$config{RCFLAGS}}) -}
228
229 ECHO="$(PERL)" "$(SRCDIR)\util\echo.pl"
230
231 ##### Special command flags ##########################################
232
233 COUTFLAG={- $target{coutflag} -}$(OSSL_EMPTY)
234 LDOUTFLAG={- $target{ldoutflag} -}$(OSSL_EMPTY)
235 AROUTFLAG={- $target{aroutflag} -}$(OSSL_EMPTY)
236 MTINFLAG={- $target{mtinflag} -}$(OSSL_EMPTY)
237 MTOUTFLAG={- $target{mtoutflag} -}$(OSSL_EMPTY)
238 ASOUTFLAG={- $target{asoutflag} -}$(OSSL_EMPTY)
239 RCOUTFLAG={- $target{rcoutflag} -}$(OSSL_EMPTY)
240
241 ##### Project flags ##################################################
242
243 # Variables starting with CNF_ are common variables for all product types
244
245 CNF_ASFLAGS={- join(' ', $target{asflags} || (),
246 @{$config{asflags}}) -}
247 CNF_CPPFLAGS={- our $cppfags2 =
248 join(' ', $target{cppflags} || (),
249 (map { '-D'.quotify1($_) } @{$target{defines}},
250 @{$config{defines}}),
251 (map { '-I'.quotify1($_) } @{$target{includes}},
252 @{$config{includes}}),
253 @{$config{cppflags}}) -}
254 CNF_CFLAGS={- join(' ', $target{cflags} || (),
255 @{$config{cflags}}) -}
256 CNF_CXXFLAGS={- join(' ', $target{cxxflags} || (),
257 @{$config{cxxflags}}) -}
258 CNF_LDFLAGS={- join(' ', $target{lflags} || (),
259 @{$config{lflags}}) -}
260 CNF_EX_LIBS={- join(' ', $target{ex_libs} || (),
261 @{$config{ex_libs}}) -}
262
263 # Variables starting with LIB_ are used to build library object files
264 # and shared libraries.
265 # Variables starting with DSO_ are used to build DSOs and their object files.
266 # Variables starting with BIN_ are used to build programs and their object
267 # files.
268
269 LIB_ASFLAGS={- join(' ', $target{lib_asflags} || (),
270 @{$config{lib_asflags}},
271 '$(CNF_ASFLAGS)', '$(ASFLAGS)') -}
272 LIB_CPPFLAGS={- our $lib_cppflags =
273 join(' ', $target{lib_cppflags} || (),
274 $target{shared_cppflag} || (),
275 (map { '-D'.quotify1($_) }
276 @{$target{lib_defines}},
277 @{$target{shared_defines}},
278 @{$config{lib_defines}},
279 @{$config{shared_defines}}),
280 (map { '-I'.quotify1($_) }
281 @{$target{lib_includes}},
282 @{$target{shared_includes}},
283 @{$config{lib_includes}},
284 @{$config{shared_includes}}),
285 @{$config{lib_cppflags}},
286 @{$config{shared_cppflag}});
287 join(' ', $lib_cppflags,
288 (map { '-D'.quotify1($_) }
289 "OPENSSLDIR=\"$openssldir\"",
290 "ENGINESDIR=\"$enginesdir\"",
291 "MODULESDIR=\"$modulesdir\""),
292 '$(CNF_CPPFLAGS)', '$(CPPFLAGS)') -}
293 LIB_CFLAGS={- join(' ', $target{lib_cflags} || (),
294 $target{shared_cflag} || (),
295 @{$config{lib_cflags}},
296 @{$config{shared_cflag}},
297 '$(CNF_CFLAGS)', '$(CFLAGS)') -}
298 LIB_LDFLAGS={- join(' ', $target{shared_ldflag} || (),
299 $config{shared_ldflag} || (),
300 '$(CNF_LDFLAGS)', '$(LDFLAGS)') -}
301 LIB_EX_LIBS=$(CNF_EX_LIBS) $(EX_LIBS)
302 DSO_ASFLAGS={- join(' ', $target{dso_asflags} || (),
303 $target{module_asflags} || (),
304 @{$config{dso_asflags}},
305 @{$config{module_asflags}},
306 '$(CNF_ASFLAGS)', '$(ASFLAGS)') -}
307 DSO_CPPFLAGS={- join(' ', $target{dso_cppflags} || (),
308 $target{module_cppflag} || (),
309 (map { '-D'.quotify1($_) }
310 @{$target{dso_defines}},
311 @{$target{module_defines}},
312 @{$config{dso_defines}},
313 @{$config{module_defines}}),
314 (map { '-I'.quotify1($_) }
315 @{$target{dso_includes}},
316 @{$target{module_includes}},
317 @{$config{dso_includes}},
318 @{$config{module_includes}}),
319 @{$config{dso_cppflags}},
320 @{$config{module_cppflags}},
321 '$(CNF_CPPFLAGS)', '$(CPPFLAGS)') -}
322 DSO_CFLAGS={- join(' ', $target{dso_cflags} || (),
323 $target{module_cflags} || (),
324 @{$config{dso_cflags}},
325 @{$config{module_cflags}},
326 '$(CNF_CFLAGS)', '$(CFLAGS)') -}
327 DSO_LDFLAGS={- join(' ', $target{dso_lflags} || (),
328 $target{module_ldflags} || (),
329 @{$config{dso_lflags}},
330 @{$config{module_ldflags}},
331 '$(CNF_LDFLAGS)', '$(LDFLAGS)') -}
332 DSO_EX_LIBS=$(CNF_EX_LIBS) $(EX_LIBS)
333 BIN_ASFLAGS={- join(' ', $target{bin_asflags} || (),
334 @{$config{bin_asflags}},
335 '$(CNF_ASFLAGS)', '$(ASFLAGS)') -}
336 BIN_CPPFLAGS={- join(' ', $target{bin_cppflags} || (),
337 (map { '-D'.$_ } @{$config{bin_defines} || ()}),
338 @{$config{bin_cppflags}},
339 '$(CNF_CPPFLAGS)', '$(CPPFLAGS)') -}
340 BIN_CFLAGS={- join(' ', $target{bin_cflags} || (),
341 @{$config{bin_cflags}},
342 '$(CNF_CFLAGS)', '$(CFLAGS)') -}
343 BIN_LDFLAGS={- join(' ', $target{bin_lflags} || (),
344 @{$config{bin_lflags}},
345 '$(CNF_LDFLAGS)', '$(LDFLAGS)') -}
346 BIN_EX_LIBS=$(CNF_EX_LIBS) $(EX_LIBS)
347
348 # CPPFLAGS_Q is used for one thing only: to build up buildinf.h
349 CPPFLAGS_Q={- $cppflags1 =~ s|([\\"])|\\$1|g;
350 $cppflags2 =~ s|([\\"])|\\$1|g;
351 join(' ', $lib_cppflags || (), $cppflags2 || (),
352 $cppflags1 || ()) -}
353
354 PERLASM_SCHEME= {- $target{perlasm_scheme} -}
355
356 PROCESSOR= {- $config{processor} -}
357
358 # The main targets ###################################################
359
360 {- dependmagic('build_sw'); -}: build_libs_nodep build_modules_nodep build_programs_nodep copy-utils
361 {- dependmagic('build_libs'); -}: build_libs_nodep
362 {- dependmagic('build_modules'); -}: build_modules_nodep
363 {- dependmagic('build_programs'); -}: build_programs_nodep
364
365 build_docs: build_html_docs
366 build_html_docs: $(HTMLDOCS1) $(HTMLDOCS3) $(HTMLDOCS5) $(HTMLDOCS7)
367
368 build_generated: $(GENERATED_MANDATORY)
369 build_libs_nodep: $(LIBS) {- join(" ",map { platform->sharedlib_import($_) // () } @{$unified_info{libraries}}) -}
370 build_modules_nodep: $(MODULES)
371 build_programs_nodep: $(PROGRAMS) $(SCRIPTS)
372
373 # Kept around for backward compatibility
374 build_apps build_tests: build_programs
375
376 # Convenience target to prebuild all generated files, not just the mandatory
377 # ones
378 build_all_generated: $(GENERATED_MANDATORY) $(GENERATED) build_docs
379 @{- output_off() if $disabled{makedepend}; "" -}
380 @$(ECHO) "Warning: consider configuring with no-makedepend, because if"
381 @$(ECHO) " target system doesn't have $(PERL),"
382 @$(ECHO) " then make will fail..."
383 @{- output_on() if $disabled{makedepend}; "" -}
384
385 all: build_sw build_docs
386
387 test: tests
388 {- dependmagic('tests'); -}: build_programs_nodep build_modules_nodep copy-utils
389 @{- output_off() if $disabled{tests}; "" -}
390 set SRCTOP=$(SRCDIR)
391 set BLDTOP=$(BLDDIR)
392 set PERL=$(PERL)
393 "$(PERL)" "$(SRCDIR)\test\run_tests.pl" $(TESTS)
394 @{- if ($disabled{tests}) { output_on(); } else { output_off(); } "" -}
395 @$(ECHO) "Tests are not supported with your chosen Configure options"
396 @{- output_on() if !$disabled{tests}; "" -}
397
398 list-tests:
399 @{- output_off() if $disabled{tests}; "" -}
400 @set SRCTOP=$(SRCDIR)
401 @"$(PERL)" "$(SRCDIR)\test\run_tests.pl" list
402 @{- if ($disabled{tests}) { output_on(); } else { output_off(); } "" -}
403 @$(ECHO) "Tests are not supported with your chosen Configure options"
404 @{- output_on() if !$disabled{tests}; "" -}
405
406 install: install_sw install_ssldirs install_docs
407
408 uninstall: uninstall_docs uninstall_sw
409
410 libclean:
411 "$(PERL)" -e "map { m/(.*)\.dll$$/; unlink glob """{.,apps,test,fuzz}/$$1.*"""; } @ARGV" $(SHLIBS)
412 -del /Q /F $(LIBS) libcrypto.* libssl.* ossl_static.pdb
413
414 clean: libclean
415 -rmdir /Q /S $(HTMLDOCS1_BLDDIRS)
416 -rmdir /Q /S $(HTMLDOCS3_BLDDIRS)
417 -rmdir /Q /S $(HTMLDOCS5_BLDDIRS)
418 -rmdir /Q /S $(HTMLDOCS7_BLDDIRS)
419 {- join("\n\t", map { "-del /Q /F $_" } @PROGRAMS) -}
420 -del /Q /F $(MODULES)
421 -del /Q /F $(SCRIPTS)
422 -del /Q /F $(GENERATED_MANDATORY)
423 -del /Q /F $(GENERATED)
424 -del /Q /S /F *.d *.obj *.pdb *.ilk *.manifest
425 -del /Q /S /F engines\*.lib engines\*.exp
426 -del /Q /S /F apps\*.lib apps\*.rc apps\*.res apps\*.exp
427 -del /Q /S /F test\*.exp
428 -rmdir /Q /S test\test-runs
429
430 distclean: clean
431 -del /Q /F configdata.pm
432 -del /Q /F makefile
433
434 depend:
435 @ {- output_off() if $disabled{makedepend}; "" -}
436 @ "$(PERL)" "$(SRCDIR)\util\add-depends.pl" "VC"
437 @ {- output_on() if $disabled{makedepend}; "" -}
438
439 # Install helper targets #############################################
440
441 install_sw: install_dev install_engines install_runtime
442
443 uninstall_sw: uninstall_runtime uninstall_engines uninstall_dev
444
445 install_docs: install_html_docs
446
447 uninstall_docs: uninstall_html_docs
448
449 install_ssldirs:
450 @"$(PERL)" "$(SRCDIR)\util\mkdir-p.pl" "$(OPENSSLDIR)\certs"
451 @"$(PERL)" "$(SRCDIR)\util\mkdir-p.pl" "$(OPENSSLDIR)\private"
452 @"$(PERL)" "$(SRCDIR)\util\mkdir-p.pl" "$(OPENSSLDIR)\misc"
453 @"$(PERL)" "$(SRCDIR)\util\copy.pl" "$(SRCDIR)\apps\openssl.cnf" \
454 "$(OPENSSLDIR)\openssl.cnf.dist"
455 @IF NOT EXIST "$(OPENSSLDIR)\openssl.cnf" \
456 "$(PERL)" "$(SRCDIR)\util\copy.pl" "$(SRCDIR)\apps\openssl.cnf" \
457 "$(OPENSSLDIR)\openssl.cnf"
458 @if not "$(MISC_SCRIPTS)"=="" \
459 "$(PERL)" "$(SRCDIR)\util\copy.pl" $(MISC_SCRIPTS) \
460 "$(OPENSSLDIR)\misc"
461 @"$(PERL)" "$(SRCDIR)\util\copy.pl" "$(SRCDIR)\apps\ct_log_list.cnf" \
462 "$(OPENSSLDIR)\ct_log_list.cnf.dist"
463 @IF NOT EXIST "$(OPENSSLDIR)\ct_log_list.cnf" \
464 "$(PERL)" "$(SRCDIR)\util\copy.pl" "$(SRCDIR)\apps\ct_log_list.cnf" \
465 "$(OPENSSLDIR)\ct_log_list.cnf"
466
467 install_dev: install_runtime_libs
468 @if "$(INSTALLTOP)"=="" ( $(ECHO) "INSTALLTOP should not be empty" & exit 1 )
469 @$(ECHO) "*** Installing development files"
470 @"$(PERL)" "$(SRCDIR)\util\mkdir-p.pl" "$(INSTALLTOP)\include\openssl"
471 @{- output_off() unless grep { $_ eq "OPENSSL_USE_APPLINK" } (@{$target{defines}}, @{$config{defines}}); "" -}
472 @"$(PERL)" "$(SRCDIR)\util\copy.pl" "$(SRCDIR)\ms\applink.c" \
473 "$(INSTALLTOP)\include\openssl"
474 @{- output_on() unless grep { $_ eq "OPENSSL_USE_APPLINK" } (@{$target{defines}}, @{$config{defines}}); "" -}
475 @"$(PERL)" "$(SRCDIR)\util\copy.pl" "-exclude_re=/__DECC_" \
476 "$(SRCDIR)\include\openssl\*.h" \
477 "$(INSTALLTOP)\include\openssl"
478 @"$(PERL)" "$(SRCDIR)\util\copy.pl" "$(BLDDIR)\include\openssl\*.h" \
479 "$(INSTALLTOP)\include\openssl"
480 @"$(PERL)" "$(SRCDIR)\util\mkdir-p.pl" "$(libdir)"
481 @"$(PERL)" "$(SRCDIR)\util\copy.pl" $(INSTALL_LIBS) "$(libdir)"
482 @if "$(SHLIBS)"=="" \
483 "$(PERL)" "$(SRCDIR)\util\copy.pl" ossl_static.pdb "$(libdir)"
484
485 uninstall_dev:
486
487 install_engines: install_runtime_libs build_modules
488 @if "$(INSTALLTOP)"=="" ( $(ECHO) "INSTALLTOP should not be empty" & exit 1 )
489 @$(ECHO) "*** Installing ENGINE modules"
490 @"$(PERL)" "$(SRCDIR)\util\mkdir-p.pl" "$(ENGINESDIR)"
491 @if not "$(INSTALL_ENGINES)"=="" \
492 "$(PERL)" "$(SRCDIR)\util\copy.pl" $(INSTALL_ENGINES) "$(ENGINESDIR)"
493 @if not "$(INSTALL_ENGINES)"=="" \
494 "$(PERL)" "$(SRCDIR)\util\copy.pl" $(INSTALL_ENGINEPDBS) "$(ENGINESDIR)"
495
496 uninstall_engines:
497
498 install_runtime: install_programs
499
500 install_runtime_libs: build_libs
501 @if "$(INSTALLTOP)"=="" ( $(ECHO) "INSTALLTOP should not be empty" & exit 1 )
502 @$(ECHO) "*** Installing runtime libraries"
503 @"$(PERL)" "$(SRCDIR)\util\mkdir-p.pl" "$(INSTALLTOP)\bin"
504 @if not "$(SHLIBS)"=="" \
505 "$(PERL)" "$(SRCDIR)\util\copy.pl" $(INSTALL_SHLIBS) "$(INSTALLTOP)\bin"
506 @if not "$(SHLIBS)"=="" \
507 "$(PERL)" "$(SRCDIR)\util\copy.pl" $(INSTALL_SHLIBPDBS) \
508 "$(INSTALLTOP)\bin"
509
510 install_programs: install_runtime_libs build_programs
511 @if "$(INSTALLTOP)"=="" ( $(ECHO) "INSTALLTOP should not be empty" & exit 1 )
512 @$(ECHO) "*** Installing runtime programs"
513 @if not "$(INSTALL_PROGRAMS)"=="" \
514 "$(PERL)" "$(SRCDIR)\util\mkdir-p.pl" "$(INSTALLTOP)\bin"
515 @if not "$(INSTALL_PROGRAMS)"=="" \
516 "$(PERL)" "$(SRCDIR)\util\copy.pl" $(INSTALL_PROGRAMS) \
517 "$(INSTALLTOP)\bin"
518 @if not "$(INSTALL_PROGRAMS)"=="" \
519 "$(PERL)" "$(SRCDIR)\util\copy.pl" $(INSTALL_PROGRAMPDBS) \
520 "$(INSTALLTOP)\bin"
521 @if not "$(INSTALL_PROGRAMS)"=="" \
522 "$(PERL)" "$(SRCDIR)\util\copy.pl" $(BIN_SCRIPTS) \
523 "$(INSTALLTOP)\bin"
524
525 uninstall_runtime:
526
527 install_html_docs: build_html_docs
528 @if "$(INSTALLTOP)"=="" ( echo INSTALLTOP should not be empty & exit 1 )
529 @echo *** Installing HTML docs
530 @"$(PERL)" "$(SRCDIR)\util\mkdir-p.pl" "$(INSTALLTOP)\html\man1"
531 @"$(PERL)" "$(SRCDIR)\util\mkdir-p.pl" "$(INSTALLTOP)\html\man3"
532 @"$(PERL)" "$(SRCDIR)\util\mkdir-p.pl" "$(INSTALLTOP)\html\man5"
533 @"$(PERL)" "$(SRCDIR)\util\mkdir-p.pl" "$(INSTALLTOP)\html\man7"
534 @"$(PERL)" "$(SRCDIR)\util\copy.pl" $(BLDDIR)\doc\html\man1\*.html \
535 "$(INSTALLTOP)\html\man1"
536 @"$(PERL)" "$(SRCDIR)\util\copy.pl" $(BLDDIR)\doc\html\man3\*.html \
537 "$(INSTALLTOP)\html\man3"
538 @"$(PERL)" "$(SRCDIR)\util\copy.pl" $(BLDDIR)\doc\html\man5\*.html \
539 "$(INSTALLTOP)\html\man5"
540 @"$(PERL)" "$(SRCDIR)\util\copy.pl" $(BLDDIR)\doc\html\man7\*.html \
541 "$(INSTALLTOP)\html\man7"
542
543 uninstall_html_docs:
544
545 # Helper targets #####################################################
546
547 copy-utils: $(BLDDIR)\util\wrap.pl
548
549 $(BLDDIR)\util\wrap.pl: configdata.pm
550 @if NOT EXIST "$(BLDDIR)\util" mkdir "$(BLDDIR)\util"
551 @if NOT "$(SRCDIR)"=="$(BLDDIR)" copy "$(SRCDIR)\util\$(@F)" "$(BLDDIR)\util"
552
553 # Building targets ###################################################
554
555 configdata.pm: "$(SRCDIR)\Configure" {- join(" ", map { '"'.$_.'"' } @{$config{build_file_templates}}, @{$config{build_infos}}, @{$config{conf_files}}) -}
556 @$(ECHO) "Detected changed: $?"
557 "$(PERL)" configdata.pm -r
558 @$(ECHO) "**************************************************"
559 @$(ECHO) "*** ***"
560 @$(ECHO) "*** Please run the same make command again ***"
561 @$(ECHO) "*** ***"
562 @$(ECHO) "**************************************************"
563 @exit 1
564
565 reconfigure reconf:
566 "$(PERL)" configdata.pm -r
567
568 {-
569 use File::Basename;
570 use File::Spec::Functions qw/:DEFAULT abs2rel rel2abs/;
571
572 # Helper function to figure out dependencies on libraries
573 # It takes a list of library names and outputs a list of dependencies
574 sub compute_lib_depends {
575 if ($disabled{shared}) {
576 return map { platform->staticlib($_) } @_;
577 }
578 return map { platform->sharedlib_import($_) // platform->staticlib($_) } @_;
579 }
580
581 sub generatesrc {
582 my %args = @_;
583 my ($gen0, @gens) = @{$args{generator}};
584 my $generator = '"'.$gen0.'"'.join('', map { " $_" } @gens);
585 my $generator_incs = join("", map { " -I \"$_\"" } @{$args{generator_incs}});
586 my $incs = join("", map { " -I \"$_\"" } @{$args{incs}});
587 my $defs = join("", map { " -D".$_ } @{$args{defs}});
588 my $deps = @{$args{deps}} ?
589 '"'.join('" "', @{$args{generator_deps}}, @{$args{deps}}).'"' : '';
590
591 if ($args{src} =~ /\.html$/) {
592 my $title = basename($args{src}, ".html");
593 my $pod = $args{generator}->[0];
594 return <<"EOF";
595 $args{src}: "$pod"
596 \$(PERL) \$(SRCDIR)/util/mkpod2html.pl -i "$pod" -o \$\@ -t "$title" -r "\$(SRCDIR)/doc"
597 EOF
598 } elsif (platform->isdef($args{src})) {
599 my $target = platform->def($args{src});
600 my $mkdef = abs2rel(rel2abs(catfile($config{sourcedir},
601 "util", "mkdef.pl")),
602 rel2abs($config{builddir}));
603 my $ord_ver = $args{intent} eq 'lib' ? ' --version $(VERSION)' : '';
604 my $ord_name =
605 $args{generator}->[1] || platform->dsoname($args{product});
606 return <<"EOF";
607 $target: $args{generator}->[0] $deps $mkdef
608 "\$(PERL)" $mkdef$ord_ver --ordinals $args{generator}->[0] --name $ord_name --OS windows > $target
609 EOF
610 } elsif (!platform->isasm($args{src})) {
611 my $target = $args{src};
612 if ($args{generator}->[0] =~ m|^.*\.in$|) {
613 my $dofile = abs2rel(rel2abs(catfile($config{sourcedir},
614 "util", "dofile.pl")),
615 rel2abs($config{builddir}));
616 my @modules = ( 'configdata.pm',
617 grep { $_ =~ m|\.pm$| } @{$args{deps}} );
618 my %moduleincs = map { '"-I'.dirname($_).'"' => 1 } @modules;
619 @modules = map { "-M".basename($_, '.pm') } @modules;
620 my $modules = join(' ', '', sort keys %moduleincs, @modules);
621 return <<"EOF";
622 $target: "$args{generator}->[0]" $deps
623 "\$(PERL)"$modules "$dofile" "-o$target{build_file}" $generator > \$@
624 EOF
625 } else {
626 return <<"EOF";
627 $target: "$args{generator}->[0]" $deps
628 "\$(PERL)"$generator_incs $generator > \$@
629 EOF
630 }
631 } else {
632 my $cppflags = {
633 shlib => '$(LIB_CFLAGS) $(LIB_CPPFLAGS)',
634 lib => '$(LIB_CFLAGS) $(LIB_CPPFLAGS)',
635 dso => '$(DSO_CFLAGS) $(DSO_CPPFLAGS)',
636 bin => '$(BIN_CFLAGS) $(BIN_CPPFLAGS)'
637 } -> {$args{intent}};
638 my $target = platform->asm($args{src});
639
640 if ($args{generator}->[0] =~ /\.pl$/) {
641 $generator = '"$(PERL)"'.$generator_incs.' '.$generator
642 .' "$(PERLASM_SCHEME)"'.$incs.' '.$cppflags.$defs.' $(PROCESSSOR)';
643 } elsif ($args{generator}->[0] =~ /\.S$/) {
644 $generator = undef;
645 } else {
646 die "Generator type for $src unknown: $generator\n";
647 }
648
649 if (defined($generator)) {
650 # If the target is named foo.S in build.info, we want to
651 # end up generating foo.s in two steps.
652 if ($args{src} =~ /\.S$/) {
653 return <<"EOF";
654 $target: "$args{generator}->[0]" $deps
655 set ASM=\$(AS)
656 $generator \$@.S
657 \$(CPP) $incs $cppflags $defs \$@.S > \$@.i && move /Y \$@.i \$@
658 del /Q \$@.S
659 EOF
660 }
661 # Otherwise....
662 return <<"EOF";
663 $target: "$args{generator}->[0]" $deps
664 set ASM=\$(AS)
665 $generator \$@
666 EOF
667 }
668 return <<"EOF";
669 $target: "$args{generator}->[0]" $deps
670 \$(CPP) $incs $cppflags $defs "$args{generator}->[0]" > \$@.i && move /Y \$@.i \$@
671 EOF
672 }
673 }
674
675 sub src2obj {
676 my $asmext = platform->asmext();
677 my %args = @_;
678 my @srcs =
679 map { my $x = $_;
680 (platform->isasm($x) && grep { $x eq $_ } @generated)
681 ? platform->asm($x) : $x }
682 ( @{$args{srcs}} );
683 my $srcs = '"'.join('" "', @srcs).'"';
684 my $deps = '"'.join('" "', @srcs, @{$args{deps}}).'"';
685 my $incs = join("", map { ' -I "'.$_.'"' } @{$args{incs}});
686 my $defs = join("", map { " -D".$_ } @{$args{defs}});
687 my $cflags = { shlib => ' $(LIB_CFLAGS)',
688 lib => ' $(LIB_CFLAGS)',
689 dso => ' $(DSO_CFLAGS)',
690 bin => ' $(BIN_CFLAGS)' } -> {$args{intent}};
691 $cflags .= $incs;
692 $cflags .= { shlib => ' $(LIB_CPPFLAGS)',
693 lib => ' $(LIB_CPPFLAGS)',
694 dso => ' $(DSO_CPPFLAGS)',
695 bin => ' $(BIN_CPPFLAGS)' } -> {$args{intent}};
696 my $asflags = { shlib => ' $(LIB_ASFLAGS)',
697 lib => ' $(LIB_ASFLAGS)',
698 dso => ' $(DSO_ASFLAGS)',
699 bin => ' $(BIN_ASFLAGS)' } -> {$args{intent}};
700 my $makedepprog = $config{makedepprog};
701 if ($srcs[0] =~ /\.rc$/) {
702 my $res = platform->res($args{obj});
703 return <<"EOF";
704 $res: $deps
705 \$(RC) \$(RCFLAGS) \$(RCOUTFLAG)\$\@ $srcs
706 EOF
707 }
708 my $obj = platform->obj($args{obj});
709 my $dep = platform->dep($args{obj});
710 if ($srcs[0] =~ /\Q${asmext}\E$/) {
711 return <<"EOF";
712 $obj: $deps
713 \$(AS) $asflags \$(ASOUTFLAG)\$\@ $srcs
714 EOF
715 } elsif ($srcs[0] =~ /.S$/) {
716 return <<"EOF";
717 $obj: $deps
718 \$(CC) /EP -D__ASSEMBLER__ $cflags $defs $srcs > \$@.asm && \$(AS) $asflags \$(ASOUTFLAG)\$\@ \$@.asm
719 EOF
720 }
721 my $recipe = <<"EOF";
722 $obj: $deps
723 \$(CC) $cflags $defs -c \$(COUTFLAG)\$\@ $srcs
724 EOF
725 $recipe .= <<"EOF" unless $disabled{makedepend};
726 \$(CC) $cflags $defs /Zs /showIncludes $srcs 2>&1 > $dep
727 EOF
728 return $recipe;
729 }
730
731 # We *know* this routine is only called when we've configure 'shared'.
732 # Also, note that even though the import library built here looks like
733 # a static library, it really isn't.
734 sub obj2shlib {
735 my %args = @_;
736 my $lib = $args{lib};
737 my @objs = map { platform->convertext($_) }
738 grep { platform->isobj($_) || platform->isres($_) }
739 @{$args{objs}};
740 my @defs = map { platform->def($_) }
741 grep { platform->isdef($_) }
742 @{$args{objs}};
743 my @deps = compute_lib_depends(@{$args{deps}});
744 die "More than one exported symbols list" if scalar @defs > 1;
745 my $linklibs = join("", map { "$_\n" } @deps);
746 my $objs = join("\n", @objs);
747 my $deps = join(" ", @objs, @defs, @deps);
748 my $import = platform->sharedlib_import($lib);
749 my $dll = platform->sharedlib($lib);
750 my $shared_def = join("", map { " /def:$_" } @defs);
751 return <<"EOF"
752 # The import library may look like a static library, but it is not.
753 # We MUST make the import library depend on the DLL, in case someone
754 # mistakenly removes the latter.
755 $import: $dll
756 $dll: $deps
757 IF EXIST $full.manifest DEL /F /Q $full.manifest
758 IF EXIST \$@ DEL /F /Q \$@
759 \$(LD) \$(LDFLAGS) \$(LIB_LDFLAGS) \\
760 /implib:$import \$(LDOUTFLAG)$dll$shared_def @<< || (DEL /Q \$(\@B).* $import && EXIT 1)
761 $objs
762 $linklibs\$(LIB_EX_LIBS)
763 <<
764 IF EXIST $dll.manifest \\
765 \$(MT) \$(MTFLAGS) \$(MTINFLAG)$dll.manifest \$(MTOUTFLAG)$dll
766 IF EXIST apps\\$dll DEL /Q /F apps\\$dll
767 IF EXIST test\\$dll DEL /Q /F test\\$dll
768 IF EXIST fuzz\\$dll DEL /Q /F fuzz\\$dll
769 COPY $dll apps
770 COPY $dll test
771 COPY $dll fuzz
772 EOF
773 }
774 sub obj2dso {
775 my %args = @_;
776 my $dso = platform->dso($args{module});
777 my $dso_n = platform->dsoname($args{module});
778 my @objs = map { platform->convertext($_) }
779 grep { platform->isobj($_) || platform->isres($_) }
780 @{$args{objs}};
781 my @defs = map { platform->def($_) }
782 grep { platform->isdef($_) }
783 @{$args{objs}};
784 my @deps = compute_lib_depends(@{$args{deps}});
785 my $objs = join("\n", @objs);
786 my $linklibs = join("", map { "$_\n" } @deps);
787 my $deps = join(" ", @objs, @defs, @deps);
788 my $shared_def = join("", map { " /def:$_" } @defs);
789 return <<"EOF";
790 $dso: $deps
791 IF EXIST $dso.manifest DEL /F /Q $dso.manifest
792 \$(LD) \$(LDFLAGS) \$(DSO_LDFLAGS) \\
793 \$(LDOUTFLAG)$dso$shared_def @<< || (DEL /Q \$(\@B).* $dso_n.* && EXIT 1)
794 $objs
795 $linklibs \$(DSO_EX_LIBS)
796 <<
797 IF EXIST $dso.manifest \\
798 \$(MT) \$(MTFLAGS) \$(MTINFLAG)$dso.manifest \$(MTOUTFLAG)$dso
799 EOF
800 }
801 sub obj2lib {
802 my %args = @_;
803 my $lib = platform->staticlib($args{lib});
804 my @objs = map { platform->obj($_) } @{$args{objs}};
805 my $objs = join("\n", @objs);
806 my $deps = join(" ", @objs);
807 return <<"EOF";
808 $lib: $deps
809 \$(AR) \$(ARFLAGS) \$(AROUTFLAG)$lib @<<
810 $objs
811 <<
812 EOF
813 }
814 sub obj2bin {
815 my %args = @_;
816 my $bin = platform->bin($args{bin});
817 my @objs = map { platform->convertext($_) }
818 grep { platform->isobj($_) || platform->isres($_) }
819 @{$args{objs}};
820 my @deps = compute_lib_depends(@{$args{deps}});
821 my $objs = join("\n", @objs);
822 my $linklibs = join("", map { "$_\n" } @deps);
823 my $deps = join(" ", @objs, @deps);
824 return <<"EOF";
825 $bin: $deps
826 IF EXIST $bin.manifest DEL /F /Q $bin.manifest
827 \$(LD) \$(LDFLAGS) \$(BIN_LDFLAGS) \$(LDOUTFLAG)$bin @<<
828 $objs
829 setargv.obj
830 $linklibs\$(BIN_EX_LIBS)
831 <<
832 IF EXIST $bin.manifest \\
833 \$(MT) \$(MTFLAGS) \$(MTINFLAG)$bin.manifest \$(MTOUTFLAG)$bin
834 EOF
835 }
836 sub in2script {
837 my %args = @_;
838 my $script = $args{script};
839 my $sources = '"'.join('" "', @{$args{sources}}).'"';
840 my $dofile = abs2rel(rel2abs(catfile($config{sourcedir},
841 "util", "dofile.pl")),
842 rel2abs($config{builddir}));
843 return <<"EOF";
844 $script: $sources
845 "\$(PERL)" "-I\$(BLDDIR)" -Mconfigdata "$dofile" \\
846 "-o$target{build_file}" $sources > "$script"
847 EOF
848 }
849 sub generatedir {
850 my %args = @_;
851 my $dir = $args{dir};
852 my @deps = map { platform->convertext($_) } @{$args{deps}};
853 my @actions = ();
854 my %extinfo = ( dso => platform->dsoext(),
855 lib => platform->libext(),
856 bin => platform->binext() );
857
858 # We already have a 'test' target, and the top directory is just plain
859 # silly
860 return if $dir eq "test" || $dir eq ".";
861
862 foreach my $type (("dso", "lib", "bin", "script")) {
863 next unless defined($unified_info{dirinfo}->{$dir}->{products}->{$type});
864 # For lib object files, we could update the library. However,
865 # LIB on Windows doesn't work that way, so we won't create any
866 # actions for it, and the dependencies are already taken care of.
867 if ($type ne "lib") {
868 foreach my $prod (@{$unified_info{dirinfo}->{$dir}->{products}->{$type}}) {
869 if (dirname($prod) eq $dir) {
870 push @deps, $prod.$extinfo{$type};
871 }
872 }
873 }
874 }
875
876 my $deps = join(" ", @deps);
877 my $actions = join("\n", "", @actions);
878 return <<"EOF";
879 $dir $dir\\ : $deps$actions
880 EOF
881 }
882 "" # Important! This becomes part of the template result.
883 -}