]> git.ipfire.org Git - thirdparty/openssl.git/blame - Configurations/windows-makefile.tmpl
bndiv fuzzer: limit the size of the input to avoid timeout
[thirdparty/openssl.git] / Configurations / windows-makefile.tmpl
CommitLineData
7c0e1aa6
RL
1##
2## Makefile for OpenSSL
3##
4## {- join("\n## ", @autowarntext) -}
5{-
6 our $objext = $target{obj_extension} || ".obj";
7 our $depext = $target{dep_extension} || ".d";
8 our $exeext = $target{exe_extension} || ".exe";
9 our $libext = $target{lib_extension} || ".lib";
10 our $shlibext = $target{shared_extension} || ".dll";
11 our $shlibextimport = $target{shared_import_extension} || ".lib";
12 our $dsoext = $target{dso_extension} || ".dll";
13
d4453024 14 (our $sover_dirname = $config{shlib_version_number}) =~ s|\.|_|g;
ee0a61cf 15
8c16829e
RL
16 my $win_installenv =
17 $target{build_scheme}->[2] eq "VC-W32" ?
18 "ProgramFiles(x86)" : "ProgramW6432";
19 my $win_commonenv =
20 $target{build_scheme}->[2] eq "VC-W32"
21 ? "CommonProgramFiles(x86)" : "CommonProgramW6432";
22 our $win_installroot =
23 defined($ENV{$win_installenv})
9921b7b6 24 ? $win_installenv : 'ProgramFiles';
8c16829e
RL
25 our $win_commonroot =
26 defined($ENV{$win_commonenv})
9921b7b6
AP
27 ? $win_commonenv : 'CommonProgramFiles';
28
29 # expand variables early
30 $win_installroot = $ENV{$win_installroot};
31 $win_commonroot = $ENV{$win_commonroot};
8c16829e 32
7c0e1aa6 33 sub shlib {
7c0e1aa6 34 my $lib = shift;
33105818
RL
35 return () if $disabled{shared} || $lib =~ /\.a$/;
36 return () unless defined $unified_info{sharednames}->{$lib};
7c0e1aa6
RL
37 return $unified_info{sharednames}->{$lib} . $shlibext;
38 }
39
33105818
RL
40 sub lib {
41 (my $lib = shift) =~ s/\.a$//;
42 return $lib . $libext;
43 }
44
7c0e1aa6 45 sub shlib_import {
7c0e1aa6 46 my $lib = shift;
33105818 47 return () if $disabled{shared} || $lib =~ /\.a$/;
7c0e1aa6
RL
48 return $lib . $shlibextimport;
49 }
50
51 sub dso {
52 my $dso = shift;
53
54 return $dso . $dsoext;
55 }
f919c12f
RL
56 # This makes sure things get built in the order they need
57 # to. You're welcome.
58 sub dependmagic {
59 my $target = shift;
60
61 return "$target: build_generated\n\t\$(MAKE) depend && \$(MAKE) _$target\n_$target";
62 }
7c0e1aa6
RL
63 '';
64-}
65
66PLATFORM={- $config{target} -}
67SRCDIR={- $config{sourcedir} -}
68BLDDIR={- $config{builddir} -}
69
70VERSION={- $config{version} -}
71MAJOR={- $config{major} -}
72MINOR={- $config{minor} -}
73
74SHLIB_VERSION_NUMBER={- $config{shlib_version_number} -}
75
33105818 76LIBS={- join(" ", map { lib($_) } @{$unified_info{libraries}}) -}
7c0e1aa6 77SHLIBS={- join(" ", map { shlib($_) } @{$unified_info{libraries}}) -}
3ec8a1cf 78SHLIBPDBS={- join(" ", map { local $shlibext = ".pdb"; shlib($_) } @{$unified_info{libraries}}) -}
7c0e1aa6 79ENGINES={- join(" ", map { dso($_) } @{$unified_info{engines}}) -}
3ec8a1cf 80ENGINEPDBS={- join(" ", map { local $dsoext = ".pdb"; dso($_) } @{$unified_info{engines}}) -}
edef840f 81PROGRAMS={- our @PROGRAMS = map { $_.$exeext } @{$unified_info{programs}}; join(" ", @PROGRAMS) -}
1e3d16b0 82PROGRAMPDBS={- join(" ", map { $_.".pdb" } @{$unified_info{programs}}) -}
7c0e1aa6 83SCRIPTS={- join(" ", @{$unified_info{scripts}}) -}
bb6b950e 84{- output_off() if $disabled{makedepend}; "" -}
7c0e1aa6
RL
85DEPS={- join(" ", map { (my $x = $_) =~ s|\.o$|$depext|; $x; }
86 grep { $unified_info{sources}->{$_}->[0] =~ /\.c$/ }
87 keys %{$unified_info{sources}}); -}
bb6b950e 88{- output_on() if $disabled{makedepend}; "" -}
7cae3864 89GENERATED_MANDATORY={- join(" ", @{$unified_info{depends}->{""}} ) -}
05a7aee0
RL
90GENERATED={- join(" ",
91 ( map { (my $x = $_) =~ s|\.[sS]$|\.asm|; $x }
92 grep { defined $unified_info{generate}->{$_} }
93 map { @{$unified_info{sources}->{$_}} }
94 grep { /\.o$/ } keys %{$unified_info{sources}} ),
95 ( grep { /\.h$/ } keys %{$unified_info{generate}} )) -}
7c0e1aa6 96
33105818 97INSTALL_LIBS={- join(" ", map { lib($_) } @{$unified_info{install}->{libraries}}) -}
0f01b7bc
RL
98INSTALL_SHLIBS={- join(" ", map { shlib($_) } @{$unified_info{install}->{libraries}}) -}
99INSTALL_SHLIBPDBS={- join(" ", map { local $shlibext = ".pdb"; shlib($_) } @{$unified_info{install}->{libraries}}) -}
100INSTALL_ENGINES={- join(" ", map { dso($_) } @{$unified_info{install}->{engines}}) -}
101INSTALL_ENGINEPDBS={- join(" ", map { local $dsoext = ".pdb"; dso($_) } @{$unified_info{install}->{engines}}) -}
102INSTALL_PROGRAMS={- join(" ", map { $_.$exeext } grep { !m|^test\\| } @{$unified_info{install}->{programs}}) -}
103INSTALL_PROGRAMPDBS={- join(" ", map { $_.".pdb" } grep { !m|^test\\| } @{$unified_info{install}->{programs}}) -}
104{- output_off() if $disabled{apps}; "" -}
105BIN_SCRIPTS=$(BLDDIR)\tools\c_rehash.pl
106MISC_SCRIPTS=$(BLDDIR)\apps\CA.pl $(BLDDIR)\apps\tsget.pl
107{- output_on() if $disabled{apps}; "" -}
108
6a74806e
RL
109APPS_OPENSSL={- use File::Spec::Functions;
110 catfile("apps","openssl") -}
111
7c0e1aa6
RL
112# Do not edit these manually. Use Configure with --prefix or --openssldir
113# to change this! Short explanation in the top comment in Configure
b8bbd8b1
RL
114INSTALLTOP_dev={- # $prefix is used in the OPENSSLDIR perl snippet
115 #
116 use File::Spec::Functions qw(:DEFAULT splitpath);
0685b15a 117 our $prefix = $config{prefix} || "$win_installroot\\OpenSSL";
b8bbd8b1 118 our ($prefix_dev, $prefix_dir, $prefix_file) =
0685b15a 119 splitpath($prefix, 1);
b8bbd8b1
RL
120 $prefix_dev -}
121INSTALLTOP_dir={- $prefix_dir -}
122OPENSSLDIR_dev={- #
123 # The logic here is that if no --openssldir was given,
f8baec39 124 # OPENSSLDIR will get the value "$win_commonroot\\SSL".
b8bbd8b1
RL
125 # If --openssldir was given and the value is an absolute
126 # path, OPENSSLDIR will get its value without change.
127 # If the value from --openssldir is a relative path,
128 # OPENSSLDIR will get $prefix with the --openssldir
129 # value appended as a subdirectory.
130 #
131 use File::Spec::Functions qw(:DEFAULT splitpath);
3ffb060e 132 our $openssldir =
b8bbd8b1
RL
133 $config{openssldir} ?
134 (file_name_is_absolute($config{openssldir}) ?
135 $config{openssldir}
136 : catdir($prefix, $config{openssldir}))
137 : "$win_commonroot\\SSL";
138 our ($openssldir_dev, $openssldir_dir, $openssldir_file) =
139 splitpath($openssldir, 1);
140 $openssldir_dev -}
141OPENSSLDIR_dir={- $openssldir_dir -}
8c16829e 142LIBDIR={- our $libdir = $config{libdir} || "lib";
7c0e1aa6 143 $libdir -}
b8bbd8b1 144ENGINESDIR_dev={- use File::Spec::Functions qw(:DEFAULT splitpath);
d4453024 145 our $enginesdir = catdir($prefix,$libdir,"engines-$sover_dirname");
b8bbd8b1
RL
146 our ($enginesdir_dev, $enginesdir_dir, $enginesdir_file) =
147 splitpath($enginesdir, 1);
148 $enginesdir_dev -}
149ENGINESDIR_dir={- $enginesdir_dir -}
150!IF "$(DESTDIR)" != ""
151INSTALLTOP=$(DESTDIR)$(INSTALLTOP_dir)
152OPENSSLDIR=$(DESTDIR)$(OPENSSLDIR_dir)
153ENGINESDIR=$(DESTDIR)$(ENGINESDIR_dir)
154!ELSE
155INSTALLTOP=$(INSTALLTOP_dev)$(INSTALLTOP_dir)
156OPENSSLDIR=$(OPENSSLDIR_dev)$(OPENSSLDIR_dir)
157ENGINESDIR=$(ENGINESDIR_dev)$(ENGINESDIR_dir)
158!ENDIF
7c0e1aa6
RL
159
160CC={- $target{cc} -}
161CFLAGS={- join(" ",(map { "-D".$_} @{$target{defines}}, @{$config{defines}})) -} {- join(" ", quotify_l("-DENGINESDIR=\"$enginesdir\"", "-DOPENSSLDIR=\"$openssldir\"")) -} {- $target{cflags} -} {- $config{cflags} -}
1fc431ba 162COUTFLAG={- $target{coutflag} || "/Fo" -}$(OSSL_EMPTY)
0ef1ce49 163RC={- $target{rc} || "rc" -}
1fc431ba 164RCOUTFLAG={- $target{rcoutflag} || "/fo" -}$(OSSL_EMPTY)
7c0e1aa6
RL
165LD={- $target{ld} || "link" -}
166LDFLAGS={- $target{lflags} -}
1fc431ba 167LDOUTFLAG={- $target{loutflag} || "/out:" -}$(OSSL_EMPTY)
2fe73036
RL
168EX_LIBS={- $target{ex_libs} -}
169LIB_CFLAGS={- join(" ", $target{lib_cflags}, $target{shared_cflag}) || "" -}
bbd9a50f 170LIB_LDFLAGS={- $target{shared_ldflag} || "" -}
2fe73036
RL
171DSO_CFLAGS={- join(" ", $target{dso_cflags}, $target{shared_cflag}) || "" -}
172DSO_LDFLAGS={- join(" ", $target{dso_lflags}, $target{shared_ldflag}) || "" -}
7c0e1aa6 173BIN_CFLAGS={- $target{bin_cflags} -}
2fe73036 174BIN_LDFLAGS={- $target{bin_lflags} -}
7c0e1aa6
RL
175
176PERL={- $config{perl} -}
177
178AR={- $target{ar} -}
179ARFLAGS= {- $target{arflags} -}
1fc431ba 180AROUTFLAG={- $target{aroutflag} || "/out:" -}$(OSSL_EMPTY)
7c0e1aa6 181
755542cb
RL
182MT={- $target{mt} -}
183MTFLAGS= {- $target{mtflags} -}
1fc431ba
RL
184MTINFLAG={- $target{mtinflag} || "-manifest " -}$(OSSL_EMPTY)
185MTOUTFLAG={- $target{mtoutflag} || "-outputresource:" -}$(OSSL_EMPTY)
755542cb 186
7c0e1aa6
RL
187AS={- $target{as} -}
188ASFLAGS={- $target{asflags} -}
1fc431ba 189ASOUTFLAG={- $target{asoutflag} -}$(OSSL_EMPTY)
7c0e1aa6
RL
190PERLASM_SCHEME= {- $target{perlasm_scheme} -}
191
192PROCESSOR= {- $config{processor} -}
193
194# The main targets ###################################################
195
f919c12f
RL
196{- dependmagic('all'); -}: build_libs_nodep build_engines_nodep build_programs_nodep
197{- dependmagic('build_libs'); -}: build_libs_nodep
198{- dependmagic('build_engines'); -}: build_engines_nodep
199{- dependmagic('build_programs'); -}: build_programs_nodep
7c0e1aa6 200
f919c12f 201build_generated: $(GENERATED_MANDATORY)
8478a703 202build_libs_nodep: $(LIBS) {- join(" ",map { shlib_import($_) } @{$unified_info{libraries}}) -}
7c0e1aa6 203build_engines_nodep: $(ENGINES)
1e3d16b0 204build_programs_nodep: $(PROGRAMS) $(SCRIPTS)
7c0e1aa6 205
1e3d16b0
RL
206# Kept around for backward compatibility
207build_apps build_tests: build_programs
208
9b03b91b
RL
209# Convenience target to prebuild all generated files, not just the mandatory
210# ones
211build_all_generated: $(GENERATED_MANDATORY) $(GENERATED)
212
1b741653 213test: tests
f919c12f 214{- dependmagic('tests'); -}: build_programs_nodep build_engines_nodep
d90a6beb 215 @rem {- output_off() if $disabled{tests}; "" -}
7c0e1aa6
RL
216 set SRCTOP=$(SRCDIR)
217 set BLDTOP=$(BLDDIR)
218 set PERL=$(PERL)
6d4bc8a3 219 set OPENSSL_DEBUG_MEMORY=on
cb663908 220 "$(PERL)" "$(SRCDIR)\test\run_tests.pl" $(TESTS)
d90a6beb
MC
221 @rem {- if ($disabled{tests}) { output_on(); } else { output_off(); } "" -}
222 @echo "Tests are not supported with your chosen Configure options"
223 @rem {- output_on() if !$disabled{tests}; "" -}
7c0e1aa6
RL
224
225list-tests:
4813ad2d
RL
226 @rem {- output_off() if $disabled{tests}; "" -}
227 @set SRCTOP=$(SRCDIR)
cb663908 228 @"$(PERL)" "$(SRCDIR)\test\run_tests.pl" list
4813ad2d
RL
229 @rem {- if ($disabled{tests}) { output_on(); } else { output_off(); } "" -}
230 @echo "Tests are not supported with your chosen Configure options"
231 @rem {- output_on() if !$disabled{tests}; "" -}
7c0e1aa6 232
8c16829e
RL
233install: install_sw install_ssldirs install_docs
234
235uninstall: uninstall_docs uninstall_sw
236
3415c711 237libclean:
cb663908
RL
238 "$(PERL)" -e "map { m/(.*)\.dll$$/; unlink glob """$$1.*"""; } @ARGV" $(SHLIBS)
239 "$(PERL)" -e "map { m/(.*)\.dll$$/; unlink glob """apps/$$1.*"""; } @ARGV" $(SHLIBS)
240 "$(PERL)" -e "map { m/(.*)\.dll$$/; unlink glob """test/$$1.*"""; } @ARGV" $(SHLIBS)
c3ad47f5 241 -del /Q /F $(LIBS)
592b6fb4 242 -del /Q ossl_static.pdb
3415c711
RL
243
244clean: libclean
edef840f
RL
245 {- join("\n\t", map { "-del /Q /F $_" } @PROGRAMS) -}
246 -del /Q /F $(ENGINES)
247 -del /Q /F $(SCRIPTS)
4813ad2d 248 -del /Q /F $(GENERATED)
c3ad47f5
AP
249 -del /Q /S /F *.d
250 -del /Q /S /F *.obj
251 -del /Q /S /F *.pdb
645c8790
F
252 -del /Q /F *.exp
253 -del /Q /F apps\*.exp
254 -del /Q /F engines\*.exp
c3ad47f5
AP
255 -del /Q /S /F engines\*.ilk
256 -del /Q /S /F engines\*.lib
b202bf67
RL
257 -del /Q /S /F apps\*.lib
258 -del /Q /S /F engines\*.manifest
259 -del /Q /S /F apps\*.manifest
67152812 260 -del /Q /S /F test\*.manifest
3415c711 261
7cae3864
RL
262distclean: clean
263 -del /Q /F configdata.pm
264 -del /Q /F makefile
265
7c0e1aa6
RL
266depend:
267
8c16829e
RL
268# Install helper targets #############################################
269
270install_sw: all install_dev install_engines install_runtime
271
272uninstall_sw: uninstall_runtime uninstall_engines uninstall_dev
273
4813ad2d 274install_docs: install_html_docs
8c16829e 275
4813ad2d 276uninstall_docs: uninstall_html_docs
8c16829e
RL
277
278install_ssldirs:
b8bbd8b1
RL
279 @"$(PERL)" "$(SRCDIR)\util\mkdir-p.pl" "$(OPENSSLDIR)\certs"
280 @"$(PERL)" "$(SRCDIR)\util\mkdir-p.pl" "$(OPENSSLDIR)\private"
281 @"$(PERL)" "$(SRCDIR)\util\mkdir-p.pl" "$(OPENSSLDIR)\misc"
cb663908 282 @"$(PERL)" "$(SRCDIR)\util\copy.pl" "$(SRCDIR)\apps\openssl.cnf" \
cb926df2
RL
283 "$(OPENSSLDIR)\openssl.cnf.dist"
284 @IF NOT EXIST "$(OPENSSLDIR)\openssl.cnf" \
285 "$(PERL)" "$(SRCDIR)\util\copy.pl" "$(SRCDIR)\apps\openssl.cnf" \
286 "$(OPENSSLDIR)\openssl.cnf"
cb663908 287 @"$(PERL)" "$(SRCDIR)\util\copy.pl" $(MISC_SCRIPTS) \
b8bbd8b1 288 "$(OPENSSLDIR)\misc"
c7af65c7
RS
289 @"$(PERL)" "$(SRCDIR)\util\copy.pl" "$(SRCDIR)\apps\ct_log_list.cnf" \
290 "$(OPENSSLDIR)\ct_log_list.cnf.dist"
291 @IF NOT EXIST "$(OPENSSLDIR)\ct_log_list.cnf" \
292 "$(PERL)" "$(SRCDIR)\util\copy.pl" "$(SRCDIR)\apps\ct_log_list.cnf" \
293 "$(OPENSSLDIR)\ct_log_list.cnf"
8c16829e
RL
294
295install_dev:
296 @if "$(INSTALLTOP)"=="" ( echo INSTALLTOP should not be empty & exit 1 )
297 @echo *** Installing development files
b8bbd8b1 298 @"$(PERL)" "$(SRCDIR)\util\mkdir-p.pl" "$(INSTALLTOP)\include\openssl"
24c4f736
RL
299 @rem {- output_off() unless grep { $_ eq "OPENSSL_USE_APPLINK" } @{$target{defines}}; "" -}
300 @"$(PERL)" "$(SRCDIR)\util\copy.pl" "$(SRCDIR)\ms\applink.c" \
301 "$(INSTALLTOP)\include\openssl"
302 @rem {- output_on() unless grep { $_ eq "OPENSSL_USE_APPLINK" } @{$target{defines}}; "" -}
cb663908 303 @"$(PERL)" "$(SRCDIR)\util\copy.pl" "$(SRCDIR)\include\openssl\*.h" \
b8bbd8b1 304 "$(INSTALLTOP)\include\openssl"
cb663908 305 @"$(PERL)" "$(SRCDIR)\util\copy.pl" $(BLDDIR)\include\openssl\*.h \
b8bbd8b1
RL
306 "$(INSTALLTOP)\include\openssl"
307 @"$(PERL)" "$(SRCDIR)\util\mkdir-p.pl" "$(INSTALLTOP)\$(LIBDIR)"
0f01b7bc 308 @"$(PERL)" "$(SRCDIR)\util\copy.pl" $(INSTALL_LIBS) \
b8bbd8b1 309 "$(INSTALLTOP)\$(LIBDIR)"
3ec8a1cf 310 @if "$(SHLIBS)"=="" \
cb663908 311 "$(PERL)" "$(SRCDIR)\util\copy.pl" ossl_static.pdb \
b8bbd8b1 312 "$(INSTALLTOP)\$(LIBDIR)"
8c16829e
RL
313
314uninstall_dev:
315
316install_engines:
317 @if "$(INSTALLTOP)"=="" ( echo INSTALLTOP should not be empty & exit 1 )
318 @echo *** Installing engines
b8bbd8b1 319 @"$(PERL)" "$(SRCDIR)\util\mkdir-p.pl" "$(ENGINESDIR)"
8c16829e 320 @if not "$(ENGINES)"=="" \
0f01b7bc 321 "$(PERL)" "$(SRCDIR)\util\copy.pl" $(INSTALL_ENGINES) "$(ENGINESDIR)"
3ec8a1cf 322 @if not "$(ENGINES)"=="" \
0f01b7bc 323 "$(PERL)" "$(SRCDIR)\util\copy.pl" $(INSTALL_ENGINEPDBS) "$(ENGINESDIR)"
8c16829e
RL
324
325uninstall_engines:
326
327install_runtime:
328 @if "$(INSTALLTOP)"=="" ( echo INSTALLTOP should not be empty & exit 1 )
329 @echo *** Installing runtime files
b8bbd8b1 330 @"$(PERL)" "$(SRCDIR)\util\mkdir-p.pl" "$(INSTALLTOP)\bin"
8c16829e 331 @if not "$(SHLIBS)"=="" \
0f01b7bc 332 "$(PERL)" "$(SRCDIR)\util\copy.pl" $(INSTALL_SHLIBS) "$(INSTALLTOP)\bin"
3ec8a1cf 333 @if not "$(SHLIBS)"=="" \
0f01b7bc 334 "$(PERL)" "$(SRCDIR)\util\copy.pl" $(INSTALL_SHLIBPDBS) \
b8bbd8b1 335 "$(INSTALLTOP)\bin"
0f01b7bc 336 @"$(PERL)" "$(SRCDIR)\util\copy.pl" $(INSTALL_PROGRAMS) \
b8bbd8b1 337 "$(INSTALLTOP)\bin"
0f01b7bc 338 @"$(PERL)" "$(SRCDIR)\util\copy.pl" $(INSTALL_PROGRAMPDBS) \
b8bbd8b1 339 "$(INSTALLTOP)\bin"
cb663908 340 @"$(PERL)" "$(SRCDIR)\util\copy.pl" $(BIN_SCRIPTS) \
b8bbd8b1 341 "$(INSTALLTOP)\bin"
8c16829e
RL
342
343uninstall_runtime:
344
4813ad2d
RL
345install_html_docs:
346 "$(PERL)" "$(SRCDIR)\util\process_docs.pl" \
b8bbd8b1 347 "--destdir=$(INSTALLTOP)\html" --type=html
4813ad2d
RL
348
349uninstall_html_docs:
350
7c0e1aa6
RL
351# Building targets ###################################################
352
41240e68 353configdata.pm: "$(SRCDIR)\Configure" {- join(" ", map { '"'.$_.'"' } @{$config{build_file_templates}}, @{$config{build_infos}}, @{$config{conf_files}}) -}
7c0e1aa6
RL
354 @echo "Detected changed: $?"
355 @echo "Reconfiguring..."
cb663908 356 "$(PERL)" "$(SRCDIR)\Configure" reconf
7c0e1aa6
RL
357 @echo "**************************************************"
358 @echo "*** ***"
359 @echo "*** Please run the same make command again ***"
360 @echo "*** ***"
361 @echo "**************************************************"
6ddb62a5 362 @exit 1
7c0e1aa6
RL
363
364{-
365 use File::Basename;
366 use File::Spec::Functions qw/:DEFAULT abs2rel rel2abs/;
367
368 # Helper function to figure out dependencies on libraries
369 # It takes a list of library names and outputs a list of dependencies
370 sub compute_lib_depends {
371 if ($disabled{shared}) {
33105818 372 return map { lib($_) } @_;
7c0e1aa6 373 }
33105818
RL
374 foreach (@_) {
375 (my $l = $_) =~ s/\.a$//;
376 die "Linking with static variants of shared libraries is not supported in this configuration\n"
377 if $l ne $_ && shlib($l);
378 }
379 return map { shlib_import($_) or lib($_) } @_;
7c0e1aa6
RL
380 }
381
9a1394c5
RL
382 sub generatesrc {
383 my %args = @_;
384 (my $target = $args{src}) =~ s/\.[sS]$/.asm/;
cb663908
RL
385 my $generator = '"'.join('" "', @{$args{generator}}).'"';
386 my $generator_incs = join("", map { " -I \"$_\"" } @{$args{generator_incs}});
387 my $incs = join("", map { " /I \"$_\"" } @{$args{incs}});
388 my $deps = @{$args{deps}} ?
389 '"'.join('" "', @{$args{generator_deps}}, @{$args{deps}}).'"' : '';
9a1394c5
RL
390
391 if ($target !~ /\.asm$/) {
7cae3864
RL
392 if ($args{generator}->[0] =~ m|^.*\.in$|) {
393 my $dofile = abs2rel(rel2abs(catfile($config{sourcedir},
394 "util", "dofile.pl")),
395 rel2abs($config{builddir}));
396 return <<"EOF";
397$target: "$args{generator}->[0]" $deps
398 "\$(PERL)" "-I\$(BLDDIR)" -Mconfigdata "$dofile" \\
399 "-o$target{build_file}" $generator > \$@
400EOF
401 } else {
402 return <<"EOF";
cb663908
RL
403$target: "$args{generator}->[0]" $deps
404 "\$(PERL)"$generator_incs $generator > \$@
9a1394c5 405EOF
7cae3864 406 }
9a1394c5
RL
407 } else {
408 if ($args{generator}->[0] =~ /\.pl$/) {
cb663908 409 $generator = '"$(PERL)"'.$generator_incs.' '.$generator;
9a1394c5
RL
410 } elsif ($args{generator}->[0] =~ /\.S$/) {
411 $generator = undef;
412 } else {
413 die "Generator type for $src unknown: $generator\n";
414 }
415
416 if (defined($generator)) {
417 # If the target is named foo.S in build.info, we want to
418 # end up generating foo.s in two steps.
419 if ($args{src} =~ /\.S$/) {
420 return <<"EOF";
cb663908 421$target: "$args{generator}->[0]" $deps
9a1394c5 422 set ASM=\$(AS)
9a1394c5 423 $generator \$@.S
57ade571 424 \$(CC) $incs \$(CFLAGS) /EP /C \$@.S > \$@.i && move /Y \$@.i \$@
9a1394c5
RL
425 del /Q \$@.S
426EOF
427 }
428 # Otherwise....
429 return <<"EOF";
cb663908 430$target: "$args{generator}->[0]" $deps
9a1394c5 431 set ASM=\$(AS)
9a1394c5
RL
432 $generator \$@
433EOF
434 }
435 return <<"EOF";
cb663908 436$target: "$args{generator}->[0]" $deps
57ade571 437 \$(CC) $incs \$(CFLAGS) /EP /C "$args{generator}->[0]" > \$@.i && move /Y \$@.i \$@
9a1394c5
RL
438EOF
439 }
440 }
441
7c0e1aa6
RL
442 sub src2obj {
443 my %args = @_;
444 my $obj = $args{obj};
6ddb62a5
AP
445 my @srcs = map { (my $x = $_) =~ s/\.s$/.asm/; $x
446 } ( @{$args{srcs}} );
cb663908
RL
447 my $srcs = '"'.join('" "', @srcs).'"';
448 my $deps = '"'.join('" "', @srcs, @{$args{deps}}).'"';
449 my $incs = join("", map { ' /I "'.$_.'"' } @{$args{incs}});
da430a55
RL
450 unless ($disabled{zlib}) {
451 if ($withargs{zlib_include}) {
cb663908 452 $incs .= ' /I "'.$withargs{zlib_include}.'"';
da430a55
RL
453 }
454 }
2fe73036 455 my $ecflags = { lib => '$(LIB_CFLAGS)',
7c0e1aa6
RL
456 dso => '$(DSO_CFLAGS)',
457 bin => '$(BIN_CFLAGS)' } -> {$args{intent}};
458 my $makedepprog = $config{makedepprog};
459 if ($srcs[0] =~ /\.asm$/) {
460 return <<"EOF";
461$obj$objext: $deps
462 \$(AS) \$(ASFLAGS) \$(ASOUTFLAG)\$\@ $srcs
463EOF
464 }
bb6b950e 465 return <<"EOF" if (!$disabled{makedepend});
7c0e1aa6
RL
466$obj$depext: $deps
467 \$(CC) \$(CFLAGS) $ecflags$inc /Zs /showIncludes $srcs 2>&1 | \\
cb663908 468 "\$(PERL)" -n << > $obj$depext
7c0e1aa6
RL
469chomp;
470s/^Note: including file: *//;
471\$\$collect{\$\$_} = 1;
472END { print '$obj$objext: ',join(" ", sort keys \%collect),"\\n" }
dc8941f0 473<<
7c0e1aa6 474$obj$objext: $obj$depext
57ade571 475 \$(CC) $incs \$(CFLAGS) $ecflags -c \$(COUTFLAG)\$\@ @<<
7c0e1aa6 476$srcs
dc8941f0 477<<
bb6b950e
AP
478EOF
479 return <<"EOF" if ($disabled{makedepend});
480$obj$objext: $deps
57ade571 481 \$(CC) $incs \$(CFLAGS) $ecflags -c \$(COUTFLAG)\$\@ $srcs
7c0e1aa6
RL
482EOF
483 }
484
485 # On Unix, we build shlibs from static libs, so we're ignoring the
486 # object file array. We *know* this routine is only called when we've
487 # configure 'shared'.
488 sub libobj2shlib {
489 my %args = @_;
490 my $lib = $args{lib};
491 my $shlib = $args{shlib};
492 (my $mkdef_key = $lib) =~ s/^lib//i;
493 my $objs = join("\n", map { $_.$objext } @{$args{objs}});
494 my $linklibs = join("",
495 map { "\n$_" } compute_lib_depends(@{$args{deps}}));
496 my $deps = join(" ",
497 (map { $_.$objext } @{$args{objs}}),
498 compute_lib_depends(@{$args{deps}}));
499 my $ordinalsfile = defined($args{ordinals}) ? $args{ordinals}->[1] : "";
500 my $mkdef_pl = abs2rel(rel2abs(catfile($config{sourcedir},
501 "util", "mkdef.pl")),
502 rel2abs($config{builddir}));
0ef1ce49
RL
503 my $mkrc_pl = abs2rel(rel2abs(catfile($config{sourcedir},
504 "util", "mkrc.pl")),
505 rel2abs($config{builddir}));
7c0e1aa6
RL
506 my $target = shlib_import($lib);
507 return <<"EOF"
cb663908
RL
508$target: $deps "$ordinalsfile" "$mkdef_pl"
509 "\$(PERL)" "$mkdef_pl" "$mkdef_key" 32 > $shlib.def
510 "\$(PERL)" -i.tmp -pe "s|^LIBRARY\\s+${mkdef_key}32|LIBRARY $shlib|;" $shlib.def
685b6f29 511 DEL $shlib.def.tmp
cb663908 512 "\$(PERL)" "$mkrc_pl" $shlib$shlibext > $shlib.rc
0ef1ce49 513 \$(RC) \$(RCOUTFLAG)$shlib.res $shlib.rc
755542cb 514 IF EXIST $shlib$shlibext.manifest DEL /F /Q $shlib$shlibext.manifest
bbd9a50f 515 \$(LD) \$(LDFLAGS) \$(LIB_LDFLAGS) \\
d237d699 516 /implib:\$@ \$(LDOUTFLAG)$shlib$shlibext /def:$shlib.def @<< || (DEL /Q \$(\@B).* $shlib.* && EXIT 1)
0ef1ce49 517$objs $shlib.res$linklibs \$(EX_LIBS)
7c0e1aa6 518<<
755542cb 519 IF EXIST $shlib$shlibext.manifest \\
1fc431ba 520 \$(MT) \$(MTFLAGS) \$(MTINFLAG)$shlib$shlibext.manifest \$(MTOUTFLAG)$shlib$shlibext
7d52e554
RL
521 IF EXIST apps\\$shlib$shlibext DEL /Q /F apps\\$shlib$shlibext
522 IF EXIST test\\$shlib$shlibext DEL /Q /F test\\$shlib$shlibext
685b6f29
RL
523 COPY $shlib$shlibext apps
524 COPY $shlib$shlibext test
7c0e1aa6
RL
525EOF
526 }
527 sub obj2dso {
528 my %args = @_;
529 my $dso = $args{lib};
2fe73036 530 my $dso_n = basename($dso);
7c0e1aa6
RL
531 my $objs = join("\n", map { $_.$objext } @{$args{objs}});
532 my $linklibs = join("",
533 map { "\n$_" } compute_lib_depends(@{$args{deps}}));
534 my $deps = join(" ",
535 (map { $_.$objext } @{$args{objs}}),
536 compute_lib_depends(@{$args{deps}}));
537 return <<"EOF";
538$dso$dsoext: $deps
755542cb 539 IF EXIST $dso$dsoext.manifest DEL /F /Q $dso$dsoext.manifest
2fe73036
RL
540 \$(LD) \$(LDFLAGS) \$(DSO_LDFLAGS) \$(LDOUTFLAG)$dso$dsoext /def:<< @<<
541LIBRARY $dso_n
7c0e1aa6
RL
542EXPORTS
543 bind_engine @1
544 v_check @2
545<<
546$objs$linklibs \$(EX_LIBS)
547<<
755542cb 548 IF EXIST $dso$dsoext.manifest \\
1fc431ba 549 \$(MT) \$(MTFLAGS) \$(MTINFLAG)$dso$dsoext.manifest \$(MTOUTFLAG)$dso$dsoext
7c0e1aa6
RL
550EOF
551 }
552 sub obj2lib {
33105818
RL
553 my %args = @_;
554 my $lib = $args{lib};
555
b805b444
RL
556 # Because static libs and import libs are both named the same in native
557 # Windows, we can't have both. We skip the static lib in that case,
558 # as the shared libs are what we use anyway.
33105818 559 return "" unless $disabled{"shared"} || $lib =~ /\.a$/;
b805b444 560
33105818 561 $lib =~ s/\.a$//;
7c0e1aa6
RL
562 my $objs = join("\n", map { $_.$objext } @{$args{objs}});
563 my $deps = join(" ", map { $_.$objext } @{$args{objs}});
564 return <<"EOF";
565$lib$libext: $deps
566 \$(AR) \$(ARFLAGS) \$(AROUTFLAG)$lib$libext @<<
cfef7e9e 567\$**
7c0e1aa6
RL
568<<
569EOF
570 }
571 sub obj2bin {
572 my %args = @_;
573 my $bin = $args{bin};
574 my $objs = join("\n", map { $_.$objext } @{$args{objs}});
575 my $linklibs = join("",
576 map { "\n$_" } compute_lib_depends(@{$args{deps}}));
577 my $deps = join(" ",
578 (map { $_.$objext } @{$args{objs}}),
579 compute_lib_depends(@{$args{deps}}));
580 return <<"EOF";
581$bin$exeext: $deps
755542cb 582 IF EXIST $bin$exeext.manifest DEL /F /Q $bin$exeext.manifest
2fe73036 583 \$(LD) \$(LDFLAGS) \$(BIN_LDFLAGS) \$(LDOUTFLAG)$bin$exeext @<<
7c0e1aa6
RL
584$objs setargv.obj$linklibs \$(EX_LIBS)
585<<
755542cb 586 IF EXIST $bin$exeext.manifest \\
1fc431ba 587 \$(MT) \$(MTFLAGS) \$(MTINFLAG)$bin$exeext.manifest \$(MTOUTFLAG)$bin$exeext
7c0e1aa6
RL
588EOF
589 }
590 sub in2script {
591 my %args = @_;
592 my $script = $args{script};
cb663908 593 my $sources = '"'.join('" "', @{$args{sources}}).'"';
7c0e1aa6
RL
594 my $dofile = abs2rel(rel2abs(catfile($config{sourcedir},
595 "util", "dofile.pl")),
596 rel2abs($config{builddir}));
597 return <<"EOF";
598$script: $sources
cb663908 599 "\$(PERL)" "-I\$(BLDDIR)" -Mconfigdata "$dofile" \\
7c0e1aa6 600 "-o$target{build_file}" $sources > "$script"
0ad1d94d
RL
601EOF
602 }
603 sub generatedir {
604 my %args = @_;
605 my $dir = $args{dir};
606 my @deps = map { s|\.o$|$objext|; $_ } @{$args{deps}};
607 my @actions = ();
608 my %extinfo = ( dso => $dsoext,
609 lib => $libext,
610 bin => $exeext );
611
612 foreach my $type (("dso", "lib", "bin", "script")) {
613 next unless defined($unified_info{dirinfo}->{$dir}->{products}->{$type});
850000aa
RL
614 # For lib object files, we could update the library. However,
615 # LIB on Windows doesn't work that way, so we won't create any
616 # actions for it, and the dependencies are already taken care of.
617 if ($type ne "lib") {
0ad1d94d
RL
618 foreach my $prod (@{$unified_info{dirinfo}->{$dir}->{products}->{$type}}) {
619 if (dirname($prod) eq $dir) {
620 push @deps, $prod.$extinfo{$type};
621 } else {
850000aa 622 push @actions, "\t@rem No support to produce $type ".join(", ", @{$unified_info{dirinfo}->{$dir}->{products}->{$type}});
0ad1d94d
RL
623 }
624 }
625 }
626 }
627
628 my $deps = join(" ", @deps);
629 my $actions = join("\n", "", @actions);
630 return <<"EOF";
631$args{dir} $args{dir}\\ : $deps$actions
7c0e1aa6
RL
632EOF
633 }
634 "" # Important! This becomes part of the template result.
635-}