This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Provide option to build with -D__USE_MINGW_ANSI_STDIO
[perl5.git] / win32 / makefile.mk
1 #
2 # Makefile to build perl on Windows using DMAKE.
3 # Supported compilers:
4 #       Microsoft Visual C++ 6.0 or later
5 #       MinGW with gcc-3.4.5 or later
6 #       Windows SDK 64-bit compiler and tools
7 #
8 # This is set up to build a perl.exe that runs off a shared library
9 # (perl527.dll).  Also makes individual DLLs for the XS extensions.
10 #
11
12 ##
13 ## Make sure you read README.win32 *before* you mess with anything here!
14 ##
15
16 #
17 # Import everything from the environment like NMAKE does.
18 #
19 .IMPORT : .EVERYTHING
20
21 ##
22 ## Build configuration.  Edit the values below to suit your needs.
23 ##
24
25 #
26 # Set these to wherever you want "dmake install" to put your
27 # newly built perl.
28 #
29 INST_DRV        *= c:
30 INST_TOP        *= $(INST_DRV)\perl
31
32 #
33 # Uncomment if you want to build a 32-bit Perl using a 32-bit compiler
34 # on a 64-bit version of Windows.
35 #
36 #WIN64          *= undef
37
38 #
39 # Comment this out if you DON'T want your perl installation to be versioned.
40 # This means that the new installation will overwrite any files from the
41 # old installation at the same INST_TOP location.  Leaving it enabled is
42 # the safest route, as perl adds the extra version directory to all the
43 # locations it installs files to.  If you disable it, an alternative
44 # versioned installation can be obtained by setting INST_TOP above to a
45 # path that includes an arbitrary version string.
46 #
47 #INST_VER       *= \5.27.6
48
49 #
50 # Comment this out if you DON'T want your perl installation to have
51 # architecture specific components.  This means that architecture-
52 # specific files will be installed along with the architecture-neutral
53 # files.  Leaving it enabled is safer and more flexible, in case you
54 # want to build multiple flavors of perl and install them together in
55 # the same location.  Commenting it out gives you a simpler
56 # installation that is easier to understand for beginners.
57 #
58 #INST_ARCH      *= \$(ARCHNAME)
59
60 #
61 # Uncomment this if you want perl to run
62 #       $Config{sitelibexp}\sitecustomize.pl
63 # before anything else.  This script can then be set up, for example,
64 # to add additional entries to @INC.
65 #
66 #USE_SITECUST   *= define
67
68 #
69 # uncomment to enable multiple interpreters.  This is needed for fork()
70 # emulation and for thread support, and is auto-enabled by USE_IMP_SYS
71 # and USE_ITHREADS below.
72 #
73 USE_MULTI       *= define
74
75 #
76 # Interpreter cloning/threads; now reasonably complete.
77 # This should be enabled to get the fork() emulation.  This needs (and
78 # will auto-enable) USE_MULTI above.
79 #
80 USE_ITHREADS    *= define
81
82 #
83 # uncomment to enable the implicit "host" layer for all system calls
84 # made by perl.  This is also needed to get fork().  This needs (and
85 # will auto-enable) USE_MULTI above.
86 #
87 USE_IMP_SYS     *= define
88
89 #
90 # Comment this out if you don't want to enable large file support for
91 # some reason.  Should normally only be changed to maintain compatibility
92 # with an older release of perl.
93 #
94 USE_LARGE_FILES *= define
95
96 #
97 # Uncomment this if you're building a 32-bit perl and want 64-bit integers.
98 # (If you're building a 64-bit perl then you will have 64-bit integers whether
99 # or not this is uncommented.)
100 # Note: This option is not supported in 32-bit MSVC60 builds.
101 #
102 #USE_64_BIT_INT *= define
103
104 #
105 # Uncomment this if you want to support the use of long doubles in GCC builds.
106 # This option is not supported for MSVC builds.
107 #
108 #USE_LONG_DOUBLE *= define
109
110 #
111 # Uncomment this if you want to build perl with __USE_MINGW_ANSI_STDIO defined.
112 # (If you're building perl with USE_LONG_DOUBLE defined then
113 # __USE_MINGW_ANSI_STDIO will be defined whether or not this is uncommented.)
114 # This option is not supported for MSVC builds.
115 #
116 #USE_MINGW_ANSI_STDIO *= define
117
118 #
119 # Comment this out if you want the legacy default behavior of including '.' at
120 # the end of @INC.
121 #
122 DEFAULT_INC_EXCLUDES_DOT *= define
123
124 #
125 # Uncomment this if you want to disable looking up values from
126 # HKEY_CURRENT_USER\Software\Perl and HKEY_LOCAL_MACHINE\Software\Perl in
127 # the Registry.
128 #
129 #USE_NO_REGISTRY *= define
130
131 #
132 # uncomment exactly one of the following
133 #
134 # Visual C++ 6.0 (aka Visual C++ 98)
135 #CCTYPE         *= MSVC60
136 # Visual C++ .NET 2002/2003 (aka Visual C++ 7.0/7.1) (full version)
137 #CCTYPE         *= MSVC70
138 # Visual C++ Toolkit 2003 (aka Visual C++ 7.1) (free command-line tools)
139 #CCTYPE         *= MSVC70FREE
140 # Windows Server 2003 SP1 Platform SDK (April 2005)
141 #CCTYPE         = SDK2003SP1
142 # Visual C++ 2005 (aka Visual C++ 8.0) (full version or Express Edition)
143 #CCTYPE         *= MSVC80
144 # Visual C++ 2008 (aka Visual C++ 9.0) (full version or Express Edition)
145 #CCTYPE         *= MSVC90
146 # Visual C++ 2010 (aka Visual C++ 10.0) (full version or Express Edition)
147 #CCTYPE         = MSVC100
148 # Visual C++ 2012 (aka Visual C++ 11.0) (full version or Express Edition)
149 #CCTYPE         = MSVC110
150 # Visual C++ 2013 (aka Visual C++ 12.0) (full version or Express Edition)
151 #CCTYPE         = MSVC120
152 # Visual C++ 2015 (aka Visual C++ 14.0) (full version or Express Edition)
153 #CCTYPE         = MSVC140
154 # Visual C++ 2017 (aka Visual C++ 14.1) (full version or Community Edition)
155 #CCTYPE         = MSVC141
156 # MinGW or mingw-w64 with gcc-3.4.5 or later
157 #CCTYPE         = GCC
158
159 #
160 # If you are using GCC, 4.3 or later by default we add the -fwrapv option.
161 # See https://rt.perl.org/Ticket/Display.html?id=121505
162 #
163 #GCCWRAPV       *= define
164
165 #
166 # If you are using Intel C++ Compiler uncomment this
167 #
168 #__ICC          *= define
169
170 #
171 # Uncomment this if you want to build everything in C++ mode
172 #
173 #USE_CPLUSPLUS  *= define
174
175 #
176 # uncomment next line if you want debug version of perl (big/slow)
177 # If not enabled, we automatically try to use maximum optimization
178 # with all compilers that are known to have a working optimizer.
179 #
180 # You can also set CFG = DebugSymbols for a slightly smaller/faster
181 # debug build without the special debugging code in perl which is
182 # enabled via -DDEBUGGING;
183 #
184 # or you can set CFG = DebugFull for an even fuller (bigger/slower)
185 # debug build using the debug version of the CRT, and enabling VC++
186 # debug features such as extra assertions and invalid parameter warnings
187 # in perl and CRT code via -D_DEBUG.  (Note that the invalid parameter
188 # handler does get triggered from time to time in this configuration,
189 # which causes warnings to be printed on STDERR, which in turn causes a
190 # few tests to fail.)  (This configuration is only available for VC++ builds.)
191 #
192 #CFG            *= Debug
193
194 #
195 # uncomment to enable linking with setargv.obj under the Visual C
196 # compiler. Setting this options enables perl to expand wildcards in
197 # arguments, but it may be harder to use alternate methods like
198 # File::DosGlob that are more powerful.  This option is supported only with
199 # Visual C.
200 #
201 #USE_SETARGV    *= define
202
203 #
204 # set this if you wish to use perl's malloc
205 # WARNING: Turning this on/off WILL break binary compatibility with extensions
206 # you may have compiled with/without it.  Be prepared to recompile all
207 # extensions if you change the default.  Currently, this cannot be enabled
208 # if you ask for USE_IMP_SYS above.
209 #
210 #PERL_MALLOC    *= define
211
212 #
213 # set this to enable debugging mstats
214 # This must be enabled to use the Devel::Peek::mstat() function.  This cannot
215 # be enabled without PERL_MALLOC as well.
216 #
217 #DEBUG_MSTATS   *= define
218
219 #
220 # set this to additionally provide a statically linked perl-static.exe.
221 # Note that dynamic loading will not work with this perl, so you must
222 # include required modules statically using the STATIC_EXT or ALL_STATIC
223 # variables below. A static library perl527s.lib will also be created.
224 # Ordinary perl.exe is not affected by this option.
225 #
226 #BUILD_STATIC   *= define
227
228 #
229 # in addition to BUILD_STATIC the option ALL_STATIC makes *every*
230 # extension get statically built
231 # This will result in a very large perl executable, but the main purpose
232 # is to have proper linking set so as to be able to create miscellaneous
233 # executables with different built-in extensions
234 #
235 #ALL_STATIC     *= define
236
237 #
238 # set the install location of the compiler
239 # Running VCVARS32.BAT, VCVARSALL.BAT or similar is *required* when using
240 # Visual C++.
241 #
242
243 #CCHOME         *= C:\MinGW
244
245 #
246 # uncomment this if you are using x86_64-w64-mingw32 cross-compiler
247 # ie if your gcc executable is called 'x86_64-w64-mingw32-gcc'
248 # instead of the usual 'gcc'.
249 #
250 #GCCCROSS       *= define
251
252 #
253 # Additional compiler flags can be specified here.
254 #
255 BUILDOPT        *= $(BUILDOPTEXTRA)
256
257 #
258 # This should normally be disabled.  Enabling it will disable the File::Glob
259 # implementation of CORE::glob.
260 #
261 #BUILDOPT       += -DPERL_EXTERNAL_GLOB
262
263 #
264 # Perl needs to read scripts in text mode so that the DATA filehandle
265 # works correctly with seek() and tell(), or around auto-flushes of
266 # all filehandles (e.g. by system(), backticks, fork(), etc).
267 #
268 # The current version on the ByteLoader module on CPAN however only
269 # works if scripts are read in binary mode.  But before you disable text
270 # mode script reading (and break some DATA filehandle functionality)
271 # please check first if an updated ByteLoader isn't available on CPAN.
272 #
273 BUILDOPT        += -DPERL_TEXTMODE_SCRIPTS
274
275 #
276 # specify semicolon-separated list of extra directories that modules will
277 # look for libraries (spaces in path names need not be quoted)
278 #
279 EXTRALIBDIRS    *=
280
281 #
282 # set this to point to cmd.exe (only needed if you use some
283 # alternate shell that doesn't grok cmd.exe style commands)
284 #
285 #SHELL          *= g:\winnt\system32\cmd.exe
286
287 #
288 # set this to your email address (perl will guess a value from
289 # from your loginname and your hostname, which may not be right)
290 #
291 #EMAIL          *=
292
293 ##
294 ## Build configuration ends.
295 ##
296
297 ##################### CHANGE THESE ONLY IF YOU MUST #####################
298
299 PERL_MALLOC     *= undef
300 DEBUG_MSTATS    *= undef
301
302 USE_SITECUST    *= undef
303 USE_MULTI       *= undef
304 USE_ITHREADS    *= undef
305 USE_IMP_SYS     *= undef
306 USE_LARGE_FILES *= undef
307 USE_64_BIT_INT  *= undef
308 USE_LONG_DOUBLE *= undef
309 DEFAULT_INC_EXCLUDES_DOT *= undef
310 USE_NO_REGISTRY *= undef
311
312
313 .IF "$(USE_IMP_SYS)" == "define"
314 PERL_MALLOC     = undef
315 .ENDIF
316
317 .IF "$(PERL_MALLOC)" == "undef"
318 DEBUG_MSTATS    = undef
319 .ENDIF
320
321 .IF "$(DEBUG_MSTATS)" == "define"
322 BUILDOPT        += -DPERL_DEBUGGING_MSTATS
323 .ENDIF
324
325 .IF "$(USE_IMP_SYS) $(USE_MULTI)" == "define undef"
326 USE_MULTI       != define
327 .ENDIF
328
329 .IF "$(USE_ITHREADS) $(USE_MULTI)" == "define undef"
330 USE_MULTI       != define
331 .ENDIF
332
333 .IF "$(USE_SITECUST)" == "define"
334 BUILDOPT        += -DUSE_SITECUSTOMIZE
335 .ENDIF
336
337 .IF "$(USE_MULTI)" != "undef"
338 BUILDOPT        += -DPERL_IMPLICIT_CONTEXT
339 .ENDIF
340
341 .IF "$(USE_IMP_SYS)" != "undef"
342 BUILDOPT        += -DPERL_IMPLICIT_SYS
343 .ENDIF
344
345 .IF "$(USE_NO_REGISTRY)" != "undef"
346 BUILDOPT        += -DWIN32_NO_REGISTRY
347 .ENDIF
348
349 #no explicit CCTYPE given, do auto detection
350 .IF "$(CCTYPE)" == ""
351 GCCTARGET       *= $(shell gcc -dumpmachine 2>NUL & exit /b 0)
352 #do we have a GCC?
353 .IF "$(GCCTARGET)" != ""
354 CCTYPE          = GCC
355 .ELSE
356 #use var to capture 1st line only, not 8th token of lines 2 & 3 in cl.exe output
357 MSVCVER         := $(shell (set MSVCVER=) & (for /f "tokens=8 delims=.^ " \
358         %i in ('cl ^2^>^&1') do @if not defined MSVCVER set /A "MSVCVER=%i-6"))
359 CCTYPE          := MSVC$(MSVCVER)0
360 .ENDIF
361 .ENDIF
362
363 # Versions of Visual C++ up to VC++ 7.1 define $(MSVCDir); versions since then
364 # define $(VCINSTALLDIR) instead, but for VC++ 14.1 we need the subfolder given
365 # by $(VCToolsInstallDir).
366 .IF "$(CCHOME)" == ""
367 .IF "$(CCTYPE)" == "GCC"
368 CCHOME          *= C:\MinGW
369 .ELIF "$(CCTYPE)" == "MSVC60" || \
370     "$(CCTYPE)" == "MSVC70" || "$(CCTYPE)" == "MSVC70FREE"
371 CCHOME          *= $(MSVCDir)
372 .ELIF "$(CCTYPE)" == "MSVC141"
373 CCHOME          *= $(VCToolsInstallDir)
374 .ELSE
375 CCHOME          *= $(VCINSTALLDIR)
376 .ENDIF
377 .ENDIF
378
379 PROCESSOR_ARCHITECTURE *= x86
380
381 .IF "$(WIN64)" == "undef"
382 PROCESSOR_ARCHITECTURE  = x86
383 .ENDIF
384
385 .IF "$(WIN64)" == ""
386 # When we are running from a 32bit cmd.exe on AMD64 then
387 # PROCESSOR_ARCHITECTURE is set to x86 and PROCESSOR_ARCHITEW6432
388 # is set to AMD64
389 .IF "$(PROCESSOR_ARCHITEW6432)" != ""
390 PROCESSOR_ARCHITECTURE  != $(PROCESSOR_ARCHITEW6432)
391 WIN64                   = define
392 .ELIF "$(PROCESSOR_ARCHITECTURE)" == "AMD64" || "$(PROCESSOR_ARCHITECTURE)" == "IA64"
393 WIN64                   = define
394 .ELSE
395 WIN64                   = undef
396 .ENDIF
397 .ENDIF
398
399 .IF "$(WIN64)" == "define"
400 USE_64_BIT_INT  = define
401 .ENDIF
402
403 # Treat 64-bit MSVC60 (doesn't really exist) as SDK2003SP1 because
404 # both link against MSVCRT.dll (which is part of Windows itself) and
405 # not against a compiler specific versioned runtime.
406 .IF "$(WIN64)" == "define" && "$(CCTYPE)" == "MSVC60"
407 CCTYPE          = SDK2003SP1
408 .ENDIF
409
410 # Disable the 64-bit-int option for (32-bit) MSVC60 builds since that compiler
411 # does not support it.
412 .IF "$(CCTYPE)" == "MSVC60"
413 USE_64_BIT_INT  != undef
414 .ENDIF
415
416 # Disable the long double option for MSVC builds since that compiler
417 # does not support it.
418 .IF "$(CCTYPE)" != "GCC"
419 USE_LONG_DOUBLE != undef
420 .ENDIF
421
422 ARCHITECTURE = $(PROCESSOR_ARCHITECTURE)
423 .IF "$(ARCHITECTURE)" == "AMD64"
424 ARCHITECTURE    = x64
425 .ENDIF
426 .IF "$(ARCHITECTURE)" == "IA64"
427 ARCHITECTURE    = ia64
428 .ENDIF
429
430 .IF "$(USE_MULTI)" == "define"
431 ARCHNAME        = MSWin32-$(ARCHITECTURE)-multi
432 .ELSE
433 ARCHNAME        = MSWin32-$(ARCHITECTURE)-perlio
434 .ENDIF
435
436 .IF "$(USE_ITHREADS)" == "define"
437 ARCHNAME        !:= $(ARCHNAME)-thread
438 .ENDIF
439
440 .IF "$(WIN64)" != "define"
441 .IF "$(USE_64_BIT_INT)" == "define"
442 ARCHNAME        !:= $(ARCHNAME)-64int
443 .ENDIF
444 .ENDIF
445
446 .IF "$(USE_LONG_DOUBLE)" == "define"
447 ARCHNAME        !:= $(ARCHNAME)-ld
448 .ENDIF
449
450 # Set the install location of the compiler headers/libraries.
451 # These are saved into $Config{incpath} and $Config{libpth}.
452 .IF "$(GCCCROSS)" == "define"
453 CCINCDIR *= $(CCHOME)\x86_64-w64-mingw32\include
454 CCLIBDIR *= $(CCHOME)\x86_64-w64-mingw32\lib
455 .ELSE
456 CCINCDIR *= $(CCHOME)\include
457 .IF "$(CCTYPE)" == "MSVC141"
458 .IF "$(WIN64)" == "define"
459 CCLIBDIR *= $(CCHOME)\lib\x64
460 .ELSE
461 CCLIBDIR *= $(CCHOME)\lib\x86
462 .ENDIF
463 .ELSE
464 CCLIBDIR *= $(CCHOME)\lib
465 .ENDIF
466 .ENDIF
467
468 # Set DLL location for GCC compilers.
469 .IF "$(CCTYPE)" == "GCC"
470 .IF "$(GCCCROSS)" == "define"
471 CCDLLDIR *= $(CCLIBDIR)
472 .ELSE
473 CCDLLDIR *= $(CCHOME)\bin
474 .ENDIF
475 .ENDIF
476
477 ARCHDIR         = ..\lib\$(ARCHNAME)
478 COREDIR         = ..\lib\CORE
479 AUTODIR         = ..\lib\auto
480 LIBDIR          = ..\lib
481 EXTDIR          = ..\ext
482 DISTDIR         = ..\dist
483 CPANDIR         = ..\cpan
484 PODDIR          = ..\pod
485 HTMLDIR         = .\html
486
487 INST_SCRIPT     = $(INST_TOP)$(INST_VER)\bin
488 INST_BIN        = $(INST_SCRIPT)$(INST_ARCH)
489 INST_LIB        = $(INST_TOP)$(INST_VER)\lib
490 INST_ARCHLIB    = $(INST_LIB)$(INST_ARCH)
491 INST_COREDIR    = $(INST_ARCHLIB)\CORE
492 INST_HTML       = $(INST_TOP)$(INST_VER)\html
493
494 #
495 # Programs to compile, build .lib files and link
496 #
497
498 .USESHELL :
499
500 MINIBUILDOPT    *=
501
502 .IF "$(CCTYPE)" == "GCC"
503
504 .IF "$(GCCCROSS)" == "define"
505 ARCHPREFIX      = x86_64-w64-mingw32-
506 .ENDIF
507
508 CC              = $(ARCHPREFIX)gcc
509 LINK32          = $(ARCHPREFIX)g++
510 LIB32           = $(ARCHPREFIX)ar rc
511 IMPLIB          = $(ARCHPREFIX)dlltool
512 RSC             = $(ARCHPREFIX)windres
513
514 .IF "$(USE_LONG_DOUBLE)" == "define" || "$(USE_MINGW_ANSI_STDIO)" == "define"
515 BUILDOPT        += -D__USE_MINGW_ANSI_STDIO
516 MINIBUILDOPT    += -D__USE_MINGW_ANSI_STDIO
517 .ENDIF
518
519 GCCWRAPV *= $(shell for /f "delims=. tokens=1,2,3" %i in ('$(CC) -dumpversion') do @if "%i"=="4" (if "%j" geq "3" echo define) else if "%i" geq "5" (echo define))
520
521 .IF "$(GCCWRAPV)" == "define"
522 BUILDOPT        += -fwrapv
523 MINIBUILDOPT    += -fwrapv
524 .ENDIF
525
526 i = .i
527 o = .o
528 a = .a
529
530 #
531 # Options
532 #
533
534 INCLUDES        = -I.\include -I. -I..
535 DEFINES         = -DWIN32
536 .IF "$(WIN64)" == "define"
537 DEFINES         += -DWIN64 -DCONSERVATIVE
538 .ENDIF
539 LOCDEFS         = -DPERLDLL -DPERL_CORE
540 CXX_FLAG        = -xc++
541
542 # Current releases of MinGW 5.1.4 (as of 11-Aug-2009) will fail to link
543 # correctly if -lmsvcrt is specified explicitly.
544 LIBC            =
545 #LIBC           = -lmsvcrt
546
547 # same libs as MSVC
548 LIBFILES        = $(LIBC) -lmoldname -lkernel32 -luser32 -lgdi32 -lwinspool \
549         -lcomdlg32 -ladvapi32 -lshell32 -lole32 -loleaut32 -lnetapi32 \
550         -luuid -lws2_32 -lmpr -lwinmm -lversion -lodbc32 -lodbccp32 -lcomctl32
551
552 .IF  "$(CFG)" == "Debug"
553 OPTIMIZE        = -g -O2 -DDEBUGGING
554 LINK_DBG        = -g
555 .ELIF  "$(CFG)" == "DebugSymbols"
556 OPTIMIZE        = -g -O2
557 LINK_DBG        = -g
558 .ELSE
559 OPTIMIZE        = -s -O2
560 LINK_DBG        = -s
561 .ENDIF
562
563 EXTRACFLAGS     =
564 .IF "$(USE_CPLUSPLUS)" == "define"
565 EXTRACFLAGS     += $(CXX_FLAG)
566 .ENDIF
567 CFLAGS          = $(EXTRACFLAGS) $(INCLUDES) $(DEFINES) $(LOCDEFS) $(OPTIMIZE)
568 LINK_FLAGS      = $(LINK_DBG) -L"$(INST_COREDIR)" -L"$(CCLIBDIR)"
569 OBJOUT_FLAG     = -o
570 EXEOUT_FLAG     = -o
571 LIBOUT_FLAG     =
572 PDBOUT          =
573
574 BUILDOPT        += -fno-strict-aliasing -mms-bitfields
575 MINIBUILDOPT    += -fno-strict-aliasing
576
577 TESTPREPGCC     = test-prep-gcc
578
579 .ELSE
580
581 # All but the free version of VC++ 7.1 can load DLLs on demand.  Makes the test
582 # suite run in about 10% less time.
583 .IF "$(CCTYPE)" != "MSVC70FREE"
584 # If no registry, advapi32 is only used for Perl_pp_getlogin/getlogin/GetUserNameA
585 # which is rare to execute
586 .IF "$(USE_NO_REGISTRY)" != "undef"
587 DELAYLOAD       = -DELAYLOAD:ws2_32.dll -DELAYLOAD:advapi32.dll delayimp.lib
588 MINIDELAYLOAD   =
589 .ELSE
590 DELAYLOAD       = -DELAYLOAD:ws2_32.dll delayimp.lib
591 #miniperl never does any registry lookups
592 MINIDELAYLOAD   = -DELAYLOAD:advapi32.dll
593 .ENDIF
594 .ENDIF
595
596 # Visual C++ 2005 and 2008 (VC++ 8.0 and 9.0) create manifest files for EXEs and
597 # DLLs. These either need copying everywhere with the binaries, or else need
598 # embedding in them otherwise MSVCR80.dll or MSVCR90.dll won't be found. For
599 # simplicity, embed them if they exist (and delete them afterwards so that they
600 # don't get installed too).
601 EMBED_EXE_MANI  = if exist $@.manifest mt -nologo -manifest $@.manifest -outputresource:$@;1 && \
602                   if exist $@.manifest del $@.manifest
603 EMBED_DLL_MANI  = if exist $@.manifest mt -nologo -manifest $@.manifest -outputresource:$@;2 && \
604                   if exist $@.manifest del $@.manifest
605
606 # Most relevant compiler-specific options fall into two groups:
607 # either pre-MSVC80 or MSVC80 onwards, so define a macro for this.
608 .IF "$(CCTYPE)" == "MSVC60" || \
609     "$(CCTYPE)" == "MSVC70" || "$(CCTYPE)" == "MSVC70FREE"
610 PREMSVC80       = define
611 .ELSE
612 PREMSVC80       = undef
613 .ENDIF
614
615 .IF "$(__ICC)" != "define"
616 CC              = cl
617 LINK32          = link
618 .ELSE
619 CC              = icl
620 LINK32          = xilink
621 .ENDIF
622 LIB32           = $(LINK32) -lib
623 RSC             = rc
624
625 #
626 # Options
627 #
628
629 INCLUDES        = -I.\include -I. -I..
630 #PCHFLAGS       = -Fpc:\temp\vcmoduls.pch -YX
631 DEFINES         = -DWIN32 -D_CONSOLE -DNO_STRICT
632 LOCDEFS         = -DPERLDLL -DPERL_CORE
633 CXX_FLAG        = -TP -EHsc
634
635 .IF "$(CCTYPE)" == "MSVC140" || "$(CCTYPE)" == "MSVC141"
636 LIBC            = ucrt.lib
637 .ELSE
638 LIBC            = msvcrt.lib
639 .ENDIF
640
641 .IF  "$(CFG)" == "Debug"
642 OPTIMIZE        = -Od -MD -Zi -DDEBUGGING
643 LINK_DBG        = -debug
644 .ELIF  "$(CFG)" == "DebugSymbols"
645 OPTIMIZE        = -Od -MD -Zi
646 LINK_DBG        = -debug
647 .ELIF  "$(CFG)" == "DebugFull"
648 .IF "$(CCTYPE)" == "MSVC140" || "$(CCTYPE)" == "MSVC141"
649 LIBC            = ucrtd.lib
650 .ELSE
651 LIBC            = msvcrtd.lib
652 .ENDIF
653 OPTIMIZE        = -Od -MDd -Zi -D_DEBUG -DDEBUGGING
654 LINK_DBG        = -debug
655 .ELSE
656 # -O1 yields smaller code, which turns out to be faster than -O2 on x86 and x64
657 OPTIMIZE        = -O1 -MD -Zi -DNDEBUG
658 # we enable debug symbols in release builds also
659 LINK_DBG        = -debug -opt:ref,icf
660 # you may want to enable this if you want COFF symbols in the executables
661 # in addition to the PDB symbols.  The default Dr. Watson that ships with
662 # Windows can use the the former but not latter.  The free WinDbg can be
663 # installed to get better stack traces from just the PDB symbols, so we
664 # avoid the bloat of COFF symbols by default.
665 #LINK_DBG       = $(LINK_DBG) -debugtype:both
666 .IF "$(CCTYPE)" != "MSVC60"
667 # enable Whole Program Optimizations (WPO) and Link Time Code Generation (LTCG)
668 OPTIMIZE        += -GL
669 LINK_DBG        += -ltcg
670 LIB_FLAGS       = -ltcg
671 .ENDIF
672 .ENDIF
673
674 .IF "$(WIN64)" == "define"
675 DEFINES         += -DWIN64 -DCONSERVATIVE
676 OPTIMIZE        += -fp:precise
677 .ENDIF
678
679 # For now, silence warnings from VC++ 8.0 onwards about "unsafe" CRT functions
680 # and POSIX CRT function names being deprecated.
681 .IF "$(PREMSVC80)" == "undef"
682 DEFINES         += -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE
683 .ENDIF
684
685 # Likewise for deprecated Winsock APIs in VC++ 14.0 onwards for now.
686 .IF "$(CCTYPE)" == "MSVC140" || "$(CCTYPE)" == "MSVC141"
687 DEFINES         += -D_WINSOCK_DEPRECATED_NO_WARNINGS
688 .ENDIF
689
690 # In VS 2005 (VC++ 8.0) Microsoft changes time_t from 32-bit to
691 # 64-bit, even in 32-bit mode.  It also provides the _USE_32BIT_TIME_T
692 # preprocessor option to revert back to the old functionality for
693 # backward compatibility.  We define this symbol here for older 32-bit
694 # compilers only (which aren't using it at all) for the sole purpose
695 # of getting it into $Config{ccflags}.  That way if someone builds
696 # Perl itself with e.g. VC6 but later installs an XS module using VC8
697 # the time_t types will still be compatible.
698 .IF "$(WIN64)" == "undef"
699 .IF "$(PREMSVC80)" == "define"
700 BUILDOPT        += -D_USE_32BIT_TIME_T
701 .ENDIF
702 .ENDIF
703
704 LIBBASEFILES    = oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.lib \
705         comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \
706         netapi32.lib uuid.lib ws2_32.lib mpr.lib winmm.lib version.lib \
707         odbc32.lib odbccp32.lib comctl32.lib
708
709 .IF "$(CCTYPE)" == "MSVC140" || "$(CCTYPE)" == "MSVC141"
710 .IF "$(CFG)" == "DebugFull"
711 LIBBASEFILES    += msvcrtd.lib vcruntimed.lib
712 .ELSE
713 LIBBASEFILES    += msvcrt.lib vcruntime.lib
714 .ENDIF
715 .ENDIF
716
717 # Avoid __intel_new_proc_init link error for libircmt.
718 # libmmd is /MD equivelent, other variants exist.
719 # libmmd is Intel C's math addon funcs to MS CRT, contains long doubles, C99,
720 # and optimized C89 funcs
721 .IF "$(__ICC)" == "define"
722 LIBBASEFILES    += libircmt.lib libmmd.lib
723 .ENDIF
724
725 # The 64 bit Windows Server 2003 SP1 SDK compilers link against MSVCRT.dll, which
726 # doesn't include the buffer overrun verification code used by the /GS switch.
727 # Since the code links against libraries that are compiled with /GS, this
728 # "security cookie verification" code must be included via bufferoverflow.lib.
729 .IF "$(WIN64)" == "define" && "$(CCTYPE)" == "SDK2003SP1"
730 LIBBASEFILES    += bufferoverflowU.lib
731 .ENDIF
732
733 LIBFILES        = $(LIBBASEFILES) $(LIBC)
734
735 EXTRACFLAGS     = -nologo -GF -W3
736 .IF "$(__ICC)" == "define"
737 EXTRACFLAGS     += -Qstd=c99
738 .ENDIF
739 .IF "$(USE_CPLUSPLUS)" == "define"
740 EXTRACFLAGS     += $(CXX_FLAG)
741 .ENDIF
742 CFLAGS          = $(EXTRACFLAGS) $(INCLUDES) $(DEFINES) $(LOCDEFS) \
743                 $(PCHFLAGS) $(OPTIMIZE)
744 LINK_FLAGS      = -nologo -nodefaultlib $(LINK_DBG) \
745                 -libpath:"$(INST_COREDIR)" \
746                 -machine:$(PROCESSOR_ARCHITECTURE)
747 LIB_FLAGS       += -nologo
748 OBJOUT_FLAG     = -Fo
749 EXEOUT_FLAG     = -Fe
750 LIBOUT_FLAG     = /out:
751 PDBOUT          = -Fd$*.pdb
752 TESTPREPGCC     =
753
754 .ENDIF
755
756 CFLAGS_O        = $(CFLAGS) $(BUILDOPT)
757
758 .IF "$(PREMSVC80)" == "undef"
759 PRIV_LINK_FLAGS += "/manifestdependency:type='Win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'"
760 .ELSE
761 RSC_FLAGS       = -DINCLUDE_MANIFEST
762 .ENDIF
763
764 # VS 2017 (VC++ 14.1) requires at minimum Windows 7 SP1 (with latest Windows Updates)
765
766 # For XP support in >= VS 2013 (VC++ 12.0), subsystem is always in Config.pm
767 # LINK_FLAGS else subsystem is only needed for EXE building, not XS DLL building
768 # Console vs GUI makes no difference for DLLs, so use default for cleaner
769 # building cmd lines
770 .IF "$(CCTYPE)" == "MSVC120" || "$(CCTYPE)" == "MSVC140"
771 .IF "$(WIN64)" == "define"
772 LINK_FLAGS      += -subsystem:console,"5.02"
773 .ELSE
774 LINK_FLAGS      += -subsystem:console,"5.01"
775 .ENDIF
776
777 .ELIF "$(CCTYPE)" != "GCC"
778 PRIV_LINK_FLAGS += -subsystem:console
779 .ENDIF
780
781 BLINK_FLAGS     = $(PRIV_LINK_FLAGS) $(LINK_FLAGS)
782
783 #################### do not edit below this line #######################
784 ############# NO USER-SERVICEABLE PARTS BEYOND THIS POINT ##############
785
786 # Some old dmakes (including Sarathy's one at
787 # http://search.cpan.org/CPAN/authors/id/G/GS/GSAR/dmake-4.1pl1-win32.zip)
788 # don't support logical OR (||) or logical AND (&&) in conditional
789 # expressions and hence don't process this makefile correctly. Determine
790 # whether this is the case so that we can give the user an error message.
791 .IF 1 == 1 || 1 == 1
792 NEWDMAKE = define
793 .ELSE
794 NEWDMAKE = undef
795 .ENDIF
796
797 o *= .obj
798 a *= .lib
799
800 LKPRE           = INPUT (
801 LKPOST          = )
802
803 #
804 # Rules
805 #
806
807 .SUFFIXES : .c .i $(o) .dll $(a) .exe .rc .res
808
809 .c$(o):
810         $(CC) -c $(null,$(<:d) $(NULL) -I$(<:d)) $(CFLAGS_O) $(OBJOUT_FLAG)$@ $(PDBOUT) $<
811
812 .c.i:
813         $(CC) -c $(null,$(<:d) $(NULL) -I$(<:d)) $(CFLAGS_O) -E $< >$@
814
815 .y.c:
816         $(NOOP)
817
818 $(o).dll:
819 .IF "$(CCTYPE)" == "GCC"
820         $(LINK32) -o $@ $(BLINK_FLAGS) $< $(LIBFILES)
821         $(IMPLIB) --input-def $(*B).def --output-lib $(*B).a $@
822 .ELSE
823         $(LINK32) -dll -implib:$(*B).lib -def:$(*B).def \
824             -out:$@ $(BLINK_FLAGS) $(LIBFILES) $< $(LIBPERL)
825         $(EMBED_DLL_MANI)
826 .ENDIF
827
828 .rc.res:
829 .IF "$(CCTYPE)" == "GCC"
830         $(RSC) --use-temp-file --include-dir=. --include-dir=.. -O COFF -D INCLUDE_MANIFEST -i $< -o $@
831 .ELSE
832         $(RSC) -i.. -DINCLUDE_MANIFEST $<
833 .ENDIF
834
835 #
836 # various targets
837
838 #do not put $(MINIPERL) as a dep/prereq in a rule, instead put $(HAVEMINIPERL)
839 #$(MINIPERL) is not a buildable target, use "dmake mp" if you want to just build
840 #miniperl alone
841 MINIPERL        = ..\miniperl.exe
842 HAVEMINIPERL    = ..\lib\buildcustomize.pl
843 MINIDIR         = .\mini
844 PERLEXE         = ..\perl.exe
845 WPERLEXE        = ..\wperl.exe
846 PERLEXESTATIC   = ..\perl-static.exe
847 STATICDIR       = .\static.tmp
848 GLOBEXE         = ..\perlglob.exe
849 CONFIGPM        = ..\lib\Config.pm
850 GENUUDMAP       = ..\generate_uudmap.exe
851 .IF "$(BUILD_STATIC)" == "define" || "$(ALL_STATIC)" == "define"
852 PERLSTATIC      = static
853 .ELSE
854 PERLSTATIC      = 
855 .ENDIF
856
857 # Unicode data files generated by mktables
858 UNIDATAFILES     = ..\lib\unicore\Decomposition.pl ..\lib\unicore\TestProp.pl \
859                    ..\lib\unicore\CombiningClass.pl ..\lib\unicore\Name.pl \
860                    ..\lib\unicore\UCD.pl ..\lib\unicore\Name.pm            \
861                    ..\lib\unicore\Heavy.pl ..\lib\unicore\mktables.lst
862
863 # Directories of Unicode data files generated by mktables
864 UNIDATADIR1     = ..\lib\unicore\To
865 UNIDATADIR2     = ..\lib\unicore\lib
866
867 PERLEXE_MANIFEST= .\perlexe.manifest
868 PERLEXE_ICO     = .\perlexe.ico
869 PERLEXE_RES     = .\perlexe.res
870 PERLDLL_RES     =
871
872 # Nominate a target which causes extensions to be re-built
873 # This used to be $(PERLEXE), but at worst it is the .dll that they depend
874 # on and really only the interface - i.e. the .def file used to export symbols
875 # from the .dll
876 PERLDEP = $(PERLIMPLIB)
877
878
879 PL2BAT          = bin\pl2bat.pl
880
881 UTILS           =                       \
882                 ..\utils\h2ph           \
883                 ..\utils\splain         \
884                 ..\utils\perlbug        \
885                 ..\utils\pl2pm          \
886                 ..\utils\h2xs           \
887                 ..\utils\perldoc        \
888                 ..\utils\perlivp        \
889                 ..\utils\libnetcfg      \
890                 ..\utils\enc2xs         \
891                 ..\utils\encguess       \
892                 ..\utils\piconv         \
893                 ..\utils\corelist       \
894                 ..\utils\cpan           \
895                 ..\utils\xsubpp         \
896                 ..\utils\pod2html       \
897                 ..\utils\prove          \
898                 ..\utils\ptar           \
899                 ..\utils\ptardiff       \
900                 ..\utils\ptargrep       \
901                 ..\utils\zipdetails     \
902                 ..\utils\shasum         \
903                 ..\utils\instmodsh      \
904                 ..\utils\json_pp        \
905                 bin\exetype.pl          \
906                 bin\runperl.pl          \
907                 bin\pl2bat.pl           \
908                 bin\perlglob.pl         \
909                 bin\search.pl
910
911 .IF "$(CCTYPE)" == "GCC"
912
913 CFGSH_TMPL      = config.gc
914 CFGH_TMPL       = config_H.gc
915 PERLIMPLIB      = $(COREDIR)\libperl527$(a)
916 PERLSTATICLIB   = ..\libperl527s$(a)
917 INT64           = long long
918
919 .ELSE
920
921 CFGSH_TMPL      = config.vc
922 CFGH_TMPL       = config_H.vc
923 INT64           = __int64
924
925 .ENDIF
926
927 # makedef.pl must be updated if this changes, and this should normally
928 # only change when there is an incompatible revision of the public API.
929 PERLIMPLIB      *= $(COREDIR)\perl527$(a)
930 PERLEXPLIB      *= $(COREDIR)\perl527.exp
931 PERLSTATICLIB   *= ..\perl527s$(a)
932 PERLDLL         = ..\perl527.dll
933
934 #EUMM on Win32 isn't ready for parallel make, so only allow this file to be parallel
935 #$(MAKE) will contain the -P that this makefile was called with, which is bad for
936 #make_ext.pl since upto jobs*jobs processes will run instead of jobs
937 #also any recipie containing $(MAKE) is special cased by dmake to execute recipes
938 #containing $(MAKE) when "dmake -n" is executed, which causes recursive calls
939 #to dmake, which means "dmake -n" is then broken as a diagnostic tool since
940 #"dmake -n" will invoke all the make_ext.pl scripts build things instead of
941 #showing what to build since $(MAKE) is an arg to make_ext.pl, not an invocation
942 #of the dmake process
943 PLMAKE          = dmake
944
945 XCOPY           = xcopy /f /r /i /d /y
946 RCOPY           = xcopy /f /r /i /e /d /y
947 NOOP            = @rem
948
949 #first ones are arrange in compile time order for faster parallel building
950 #see #123867 for details
951 MICROCORE_SRC   =               \
952                 ..\toke.c       \
953                 ..\regcomp.c    \
954                 ..\regexec.c    \
955                 ..\op.c         \
956                 ..\sv.c         \
957                 ..\pp.c         \
958                 ..\pp_ctl.c     \
959                 ..\pp_sys.c     \
960                 ..\pp_pack.c    \
961                 ..\pp_hot.c     \
962                 ..\gv.c         \
963                 ..\perl.c       \
964                 ..\utf8.c       \
965                 ..\dump.c       \
966                 ..\hv.c         \
967                 ..\av.c         \
968                 ..\caretx.c     \
969                 ..\deb.c        \
970                 ..\doio.c       \
971                 ..\doop.c       \
972                 ..\dquote.c     \
973                 ..\globals.c    \
974                 ..\mro_core.c   \
975                 ..\locale.c     \
976                 ..\keywords.c   \
977                 ..\mathoms.c    \
978                 ..\mg.c         \
979                 ..\numeric.c    \
980                 ..\pad.c        \
981                 ..\perlapi.c    \
982                 ..\perly.c      \
983                 ..\pp_sort.c    \
984                 ..\reentr.c     \
985                 ..\run.c        \
986                 ..\scope.c      \
987                 ..\taint.c      \
988                 ..\time64.c     \
989                 ..\universal.c  \
990                 ..\util.c
991
992 EXTRACORE_SRC   += perllib.c
993
994 .IF "$(PERL_MALLOC)" == "define"
995 EXTRACORE_SRC   += ..\malloc.c
996 .ENDIF
997
998 EXTRACORE_SRC   += ..\perlio.c
999
1000 WIN32_SRC       =               \
1001                 .\win32.c       \
1002                 .\win32io.c     \
1003                 .\win32sck.c    \
1004                 .\win32thread.c \
1005                 .\fcrypt.c
1006
1007 CORE_NOCFG_H    =               \
1008                 ..\av.h         \
1009                 ..\cop.h        \
1010                 ..\cv.h         \
1011                 ..\dosish.h     \
1012                 ..\embed.h      \
1013                 ..\form.h       \
1014                 ..\gv.h         \
1015                 ..\handy.h      \
1016                 ..\hv.h         \
1017                 ..\hv_func.h    \
1018                 ..\iperlsys.h   \
1019                 ..\mg.h         \
1020                 ..\nostdio.h    \
1021                 ..\op.h         \
1022                 ..\opcode.h     \
1023                 ..\perl.h       \
1024                 ..\perlapi.h    \
1025                 ..\perlsdio.h   \
1026                 ..\perly.h      \
1027                 ..\pp.h         \
1028                 ..\proto.h      \
1029                 ..\regcomp.h    \
1030                 ..\regexp.h     \
1031                 ..\scope.h      \
1032                 ..\sv.h         \
1033                 ..\thread.h     \
1034                 ..\unixish.h    \
1035                 ..\utf8.h       \
1036                 ..\util.h       \
1037                 ..\warnings.h   \
1038                 ..\XSUB.h       \
1039                 ..\EXTERN.h     \
1040                 ..\perlvars.h   \
1041                 ..\intrpvar.h   \
1042                 .\include\dirent.h      \
1043                 .\include\netdb.h       \
1044                 .\include\sys\errno2.h  \
1045                 .\include\sys\socket.h  \
1046                 .\win32.h
1047
1048 CORE_H          = $(CORE_NOCFG_H) .\config.h ..\git_version.h
1049
1050 UUDMAP_H        = ..\uudmap.h
1051 BITCOUNT_H      = ..\bitcount.h
1052 MG_DATA_H       = ..\mg_data.h
1053 GENERATED_HEADERS = $(UUDMAP_H) $(BITCOUNT_H) $(MG_DATA_H)
1054
1055 HAVE_COREDIR    = .\.coreheaders
1056
1057 MICROCORE_OBJ   = $(MICROCORE_SRC:db:+$(o))
1058 CORE_OBJ        = $(MICROCORE_OBJ) $(EXTRACORE_SRC:db:+$(o))
1059 WIN32_OBJ       = $(WIN32_SRC:db:+$(o))
1060 MINICORE_OBJ    = $(MINIDIR)\{$(MICROCORE_OBJ:f) miniperlmain$(o) perlio$(o)}
1061 MINIWIN32_OBJ   = $(MINIDIR)\{$(WIN32_OBJ:f)}
1062 MINI_OBJ        = $(MINICORE_OBJ) $(MINIWIN32_OBJ)
1063 DLL_OBJ         = $(DYNALOADER)
1064
1065 PERLDLL_OBJ     = $(CORE_OBJ)
1066 PERLEXE_OBJ     = perlmain$(o)
1067 PERLEXEST_OBJ   = perlmainst$(o)
1068
1069 PERLDLL_OBJ     += $(WIN32_OBJ) $(DLL_OBJ)
1070
1071 .IF "$(USE_SETARGV)" != ""
1072 SETARGV_OBJ     = setargv$(o)
1073 .ENDIF
1074
1075 .IF "$(ALL_STATIC)" == "define"
1076 # some exclusions, unfortunately, until fixed:
1077 #  - MakeMaker isn't capable enough for SDBM_File (small bug)
1078 STATIC_EXT      = * !SDBM_File
1079 .ELSE
1080 # specify static extensions here, for example:
1081 # (be sure to include Win32CORE to load Win32 on demand)
1082 #STATIC_EXT     = Win32CORE Cwd Compress/Raw/Zlib
1083 STATIC_EXT      = Win32CORE
1084 .ENDIF
1085
1086 DYNALOADER      = ..\DynaLoader$(o)
1087
1088 # vars must be separated by "\t+~\t+", since we're using the tempfile
1089 # version of config_sh.pl (we were overflowing someone's buffer by
1090 # trying to fit them all on the command line)
1091 #       -- BKS 10-17-1999
1092 CFG_VARS        =                                       \
1093                 INST_TOP=$(INST_TOP)    ~       \
1094                 INST_VER=$(INST_VER)    ~       \
1095                 INST_ARCH=$(INST_ARCH)          ~       \
1096                 archname=$(ARCHNAME)            ~       \
1097                 cc=$(CC)                        ~       \
1098                 ld=$(LINK32)                    ~       \
1099                 ccflags=$(EXTRACFLAGS) $(OPTIMIZE) $(DEFINES) $(BUILDOPT)       ~       \
1100                 usecplusplus=$(USE_CPLUSPLUS)   ~       \
1101                 cf_email=$(EMAIL)               ~       \
1102                 d_mymalloc=$(PERL_MALLOC)       ~       \
1103                 libs=$(LIBFILES:f)              ~       \
1104                 incpath=$(CCINCDIR)     ~       \
1105                 libperl=$(PERLIMPLIB:f)         ~       \
1106                 libpth=$(CCLIBDIR);$(EXTRALIBDIRS)      ~       \
1107                 libc=$(LIBC)                    ~       \
1108                 make=$(PLMAKE)                  ~       \
1109                 _o=$(o)                         ~       \
1110                 obj_ext=$(o)                    ~       \
1111                 _a=$(a)                         ~       \
1112                 lib_ext=$(a)                    ~       \
1113                 static_ext=$(STATIC_EXT)        ~       \
1114                 usethreads=$(USE_ITHREADS)      ~       \
1115                 useithreads=$(USE_ITHREADS)     ~       \
1116                 usemultiplicity=$(USE_MULTI)    ~       \
1117                 use64bitint=$(USE_64_BIT_INT)   ~       \
1118                 uselongdouble=$(USE_LONG_DOUBLE)        ~       \
1119                 uselargefiles=$(USE_LARGE_FILES)        ~       \
1120                 usesitecustomize=$(USE_SITECUST)        ~       \
1121                 default_inc_excludes_dot=$(DEFAULT_INC_EXCLUDES_DOT)    ~       \
1122                 LINK_FLAGS=$(LINK_FLAGS)        ~       \
1123                 optimize=$(OPTIMIZE)    ~       \
1124                 ARCHPREFIX=$(ARCHPREFIX)        ~       \
1125                 WIN64=$(WIN64)
1126
1127 #
1128 # Top targets
1129 #
1130
1131 all : CHECKDMAKE rebasePE Extensions_nonxs $(PERLSTATIC)
1132
1133 ..\regcomp$(o) : ..\regnodes.h ..\regcharclass.h
1134
1135 ..\regexec$(o) : ..\regnodes.h ..\regcharclass.h
1136
1137 reonly : ..\regnodes.h $(UNIDATAFILES) Extensions_reonly
1138
1139 static: $(PERLEXESTATIC)
1140
1141 #----------------------------------------------------------------
1142
1143 CHECKDMAKE :
1144 .IF "$(NEWDMAKE)" == "define"
1145         $(NOOP)
1146 .ELSE
1147         @echo Your dmake doesn't support ^|^| or ^&^& in conditional expressions.
1148         @echo Please get the latest dmake from http://search.cpan.org/dist/dmake/
1149         @exit 1
1150 .ENDIF
1151
1152 $(GLOBEXE) : perlglob.c
1153 .IF "$(CCTYPE)" == "GCC"
1154         $(LINK32) $(OPTIMIZE) $(BLINK_FLAGS) -mconsole -o $@ perlglob.c $(LIBFILES)
1155 .ELSE
1156         $(CC) $(OPTIMIZE) $(PDBOUT) -Fe$@ perlglob.c -link $(BLINK_FLAGS) \
1157         setargv$(o) $(LIBFILES) && $(EMBED_EXE_MANI)
1158 .ENDIF
1159
1160 ..\git_version.h : $(HAVEMINIPERL) ..\make_patchnum.pl
1161         $(MINIPERL) -I..\lib ..\make_patchnum.pl
1162
1163 # make sure that we recompile perl.c if the git version changes
1164 ..\perl$(o) : ..\git_version.h
1165
1166 ..\config.sh : $(CFGSH_TMPL) config_sh.PL FindExt.pm $(HAVEMINIPERL)
1167         $(MINIPERL) -I..\lib config_sh.PL --cfgsh-option-file \
1168             $(mktmp $(CFG_VARS)) $(CFGSH_TMPL) > ..\config.sh
1169
1170 # This target is for when changes to the main config.sh happen.
1171 # Edit config.gc, then make perl using GCC in a minimal configuration (i.e.
1172 # with MULTI, ITHREADS, IMP_SYS and LARGE_FILES off), then make
1173 # this target to regenerate config_H.gc.
1174 regen_config_h:
1175         $(MINIPERL) -I..\lib config_sh.PL --cfgsh-option-file $(mktmp $(CFG_VARS)) \
1176             $(CFGSH_TMPL) > ..\config.sh
1177         $(MINIPERL) -I..\lib ..\configpm --chdir=..
1178         -del /f $(CFGH_TMPL)
1179         -$(MINIPERL) -I..\lib config_h.PL "ARCHPREFIX=$(ARCHPREFIX)"
1180         rename config.h $(CFGH_TMPL)
1181
1182 $(CONFIGPM) .\config.h .UPDATEALL: ..\config.sh config_h.PL
1183         $(MINIPERL) -I..\lib ..\configpm --chdir=..
1184         -$(MINIPERL) -I..\lib config_h.PL "ARCHPREFIX=$(ARCHPREFIX)"
1185
1186 # See the comment in Makefile.SH explaining this seemingly cranky ordering
1187 ..\lib\buildcustomize.pl : $(MINI_OBJ) ..\write_buildcustomize.pl
1188 .IF "$(CCTYPE)" == "GCC"
1189         $(LINK32) -v -mconsole -o $(MINIPERL) $(BLINK_FLAGS) \
1190             $(mktmp $(LKPRE) $(MINI_OBJ) $(LIBFILES) $(LKPOST))
1191 .ELSE
1192         $(LINK32) -out:$(MINIPERL) $(BLINK_FLAGS) \
1193             @$(mktmp $(DELAYLOAD) $(MINIDELAYLOAD) $(LIBFILES) $(MINI_OBJ))
1194         $(EMBED_EXE_MANI:s/$@/$(MINIPERL)/)
1195 .ENDIF
1196         $(MINIPERL) -I..\lib -f ..\write_buildcustomize.pl ..
1197
1198 #convinence target, get a working miniperl
1199 mp : $(CONFIGPM)
1200
1201 $(MINIDIR)\.exists : $(CFGH_TMPL)
1202         if not exist "$(MINIDIR)" mkdir "$(MINIDIR)"
1203 #
1204 # Copy the template config.h and set configurables at the end of it
1205 # as per the options chosen and compiler used.
1206 # Note: This config.h is only used to build miniperl.exe anyway, but
1207 # it's as well to have its options correct to be sure that it builds
1208 # and so that it's "-V" options are correct for use by makedef.pl. The
1209 # real config.h used to build perl.exe is generated from the top-level
1210 # config_h.SH by config_h.PL (run by miniperl.exe).
1211 #
1212 # MINIDIR generates config.h so miniperl.exe is not rebuilt when the 2nd
1213 # config.h is generated in CONFIGPM target, see also the comments for $(MINI_OBJ).
1214         copy $(CFGH_TMPL) config.h
1215         @(echo.&& \
1216         echo #ifndef _config_h_footer_&& \
1217         echo #define _config_h_footer_&& \
1218         echo #undef Off_t&& \
1219         echo #undef LSEEKSIZE&& \
1220         echo #undef Off_t_size&& \
1221         echo #undef PTRSIZE&& \
1222         echo #undef SSize_t&& \
1223         echo #undef HAS_ATOLL&& \
1224         echo #undef HAS_STRTOLL&& \
1225         echo #undef HAS_STRTOULL&& \
1226         echo #undef Size_t_size&& \
1227         echo #undef IVTYPE&& \
1228         echo #undef UVTYPE&& \
1229         echo #undef IVSIZE&& \
1230         echo #undef UVSIZE&& \
1231         echo #undef NV_PRESERVES_UV&& \
1232         echo #undef NV_PRESERVES_UV_BITS&& \
1233         echo #undef IVdf&& \
1234         echo #undef UVuf&& \
1235         echo #undef UVof&& \
1236         echo #undef UVxf&& \
1237         echo #undef UVXf&& \
1238         echo #undef USE_64_BIT_INT&& \
1239         echo #undef Gconvert&& \
1240         echo #undef HAS_FREXPL&& \
1241         echo #undef HAS_ISNANL&& \
1242         echo #undef HAS_MODFL&& \
1243         echo #undef HAS_MODFL_PROTO&& \
1244         echo #undef HAS_SQRTL&& \
1245         echo #undef HAS_STRTOLD&& \
1246         echo #undef PERL_PRIfldbl&& \
1247         echo #undef PERL_PRIgldbl&& \
1248         echo #undef PERL_PRIeldbl&& \
1249         echo #undef PERL_SCNfldbl&& \
1250         echo #undef NVTYPE&& \
1251         echo #undef NVSIZE&& \
1252         echo #undef LONG_DOUBLESIZE&& \
1253         echo #undef NV_OVERFLOWS_INTEGERS_AT&& \
1254         echo #undef NVef&& \
1255         echo #undef NVff&& \
1256         echo #undef NVgf&& \
1257         echo #undef USE_LONG_DOUBLE&& \
1258         echo #undef USE_CPLUSPLUS)>> config.h
1259 .IF "$(CCTYPE)" == "MSVC140" || "$(CCTYPE)" == "MSVC141"
1260         @(echo #undef FILE_ptr&& \
1261         echo #undef FILE_cnt&& \
1262         echo #undef FILE_base&& \
1263         echo #undef FILE_bufsiz&& \
1264         echo #define FILE_ptr^(fp^) PERLIO_FILE_ptr^(fp^)&& \
1265         echo #define FILE_cnt^(fp^) PERLIO_FILE_cnt^(fp^)&& \
1266         echo #define FILE_base^(fp^) PERLIO_FILE_base^(fp^)&& \
1267         echo #define FILE_bufsiz^(fp^) ^(PERLIO_FILE_cnt^(fp^) + PERLIO_FILE_ptr^(fp^) - PERLIO_FILE_base^(fp^)^)&& \
1268         echo #define I_STDBOOL)>> config.h
1269 .ENDIF
1270 .IF "$(USE_LARGE_FILES)"=="define"
1271         @(echo #define Off_t $(INT64)&& \
1272         echo #define LSEEKSIZE ^8&& \
1273         echo #define Off_t_size ^8)>> config.h
1274 .ELSE
1275         @(echo #define Off_t long&& \
1276         echo #define LSEEKSIZE ^4&& \
1277         echo #define Off_t_size ^4)>> config.h
1278 .ENDIF
1279 .IF "$(WIN64)"=="define"
1280         @(echo #define PTRSIZE ^8&& \
1281         echo #define SSize_t $(INT64)&& \
1282         echo #define HAS_ATOLL&& \
1283         echo #define HAS_STRTOLL&& \
1284         echo #define HAS_STRTOULL&& \
1285         echo #define Size_t_size ^8)>> config.h
1286 .ELSE
1287         @(echo #define PTRSIZE ^4&& \
1288         echo #define SSize_t int&& \
1289         echo #undef HAS_ATOLL&& \
1290         echo #undef HAS_STRTOLL&& \
1291         echo #undef HAS_STRTOULL&& \
1292         echo #define Size_t_size ^4)>> config.h
1293 .ENDIF
1294 .IF "$(USE_64_BIT_INT)"=="define"
1295         @(echo #define IVTYPE $(INT64)&& \
1296         echo #define UVTYPE unsigned $(INT64)&& \
1297         echo #define IVSIZE ^8&& \
1298         echo #define UVSIZE ^8)>> config.h
1299 .IF "$(USE_LONG_DOUBLE)"=="define"
1300         @(echo #define NV_PRESERVES_UV&& \
1301         echo #define NV_PRESERVES_UV_BITS 64)>> config.h
1302 .ELSE
1303         @(echo #undef NV_PRESERVES_UV&& \
1304         echo #define NV_PRESERVES_UV_BITS 53)>> config.h
1305 .ENDIF
1306         @(echo #define IVdf "I64d"&& \
1307         echo #define UVuf "I64u"&& \
1308         echo #define UVof "I64o"&& \
1309         echo #define UVxf "I64x"&& \
1310         echo #define UVXf "I64X"&& \
1311         echo #define USE_64_BIT_INT)>> config.h
1312 .ELSE
1313         @(echo #define IVTYPE long&& \
1314         echo #define UVTYPE unsigned long&& \
1315         echo #define IVSIZE ^4&& \
1316         echo #define UVSIZE ^4&& \
1317         echo #define NV_PRESERVES_UV&& \
1318         echo #define NV_PRESERVES_UV_BITS 32&& \
1319         echo #define IVdf "ld"&& \
1320         echo #define UVuf "lu"&& \
1321         echo #define UVof "lo"&& \
1322         echo #define UVxf "lx"&& \
1323         echo #define UVXf "lX"&& \
1324         echo #undef USE_64_BIT_INT)>> config.h
1325 .ENDIF
1326 .IF "$(USE_LONG_DOUBLE)"=="define"
1327         @(echo #define Gconvert^(x,n,t,b^) sprintf^(^(b^),"%.*""Lg",^(n^),^(x^)^)&& \
1328         echo #define HAS_FREXPL&& \
1329         echo #define HAS_ISNANL&& \
1330         echo #define HAS_MODFL&& \
1331         echo #define HAS_MODFL_PROTO&& \
1332         echo #define HAS_SQRTL&& \
1333         echo #define HAS_STRTOLD&& \
1334         echo #define PERL_PRIfldbl "Lf"&& \
1335         echo #define PERL_PRIgldbl "Lg"&& \
1336         echo #define PERL_PRIeldbl "Le"&& \
1337         echo #define PERL_SCNfldbl "Lf"&& \
1338         echo #define NVTYPE long double)>> config.h
1339 .IF "$(WIN64)"=="define"
1340         @(echo #define NVSIZE ^16&& \
1341         echo #define LONG_DOUBLESIZE ^16)>> config.h
1342 .ELSE
1343         @(echo #define NVSIZE ^12&& \
1344         echo #define LONG_DOUBLESIZE ^12)>> config.h
1345 .ENDIF
1346         @(echo #define NV_OVERFLOWS_INTEGERS_AT 256.0*256.0*256.0*256.0*256.0*256.0*256.0*2.0*2.0*2.0*2.0*2.0*2.0*2.0*2.0&& \
1347         echo #define NVef "Le"&& \
1348         echo #define NVff "Lf"&& \
1349         echo #define NVgf "Lg"&& \
1350         echo #define USE_LONG_DOUBLE)>> config.h
1351 .ELSE
1352         @(echo #define Gconvert^(x,n,t,b^) sprintf^(^(b^),"%.*g",^(n^),^(x^)^)&& \
1353         echo #undef HAS_FREXPL&& \
1354         echo #undef HAS_ISNANL&& \
1355         echo #undef HAS_MODFL&& \
1356         echo #undef HAS_MODFL_PROTO&& \
1357         echo #undef HAS_SQRTL&& \
1358         echo #undef HAS_STRTOLD&& \
1359         echo #undef PERL_PRIfldbl&& \
1360         echo #undef PERL_PRIgldbl&& \
1361         echo #undef PERL_PRIeldbl&& \
1362         echo #undef PERL_SCNfldbl&& \
1363         echo #define NVTYPE double&& \
1364         echo #define NVSIZE ^8&& \
1365         echo #define LONG_DOUBLESIZE ^8&& \
1366         echo #define NV_OVERFLOWS_INTEGERS_AT 256.0*256.0*256.0*256.0*256.0*256.0*2.0*2.0*2.0*2.0*2.0&& \
1367         echo #define NVef "e"&& \
1368         echo #define NVff "f"&& \
1369         echo #define NVgf "g"&& \
1370         echo #undef USE_LONG_DOUBLE)>> config.h
1371 .ENDIF
1372 .IF "$(USE_CPLUSPLUS)"=="define"
1373         @(echo #define USE_CPLUSPLUS&& \
1374         echo #endif)>> config.h
1375 .ELSE
1376         @(echo #undef USE_CPLUSPLUS&& \
1377         echo #endif)>> config.h
1378 .ENDIF
1379 #separate line since this is sentinal that this target is done
1380         rem. > $(MINIDIR)\.exists
1381
1382 $(MINICORE_OBJ) : $(CORE_NOCFG_H)
1383         $(CC) -c $(CFLAGS) $(MINIBUILDOPT) -DPERL_EXTERNAL_GLOB -DPERL_IS_MINIPERL $(OBJOUT_FLAG)$@ $(PDBOUT) ..\$(*B).c
1384
1385 $(MINIWIN32_OBJ) : $(CORE_NOCFG_H)
1386         $(CC) -c $(CFLAGS) $(MINIBUILDOPT) -DPERL_IS_MINIPERL $(OBJOUT_FLAG)$@ $(PDBOUT) $(*B).c
1387
1388 # -DPERL_IMPLICIT_SYS needs C++ for perllib.c
1389 # rules wrapped in .IFs break Win9X build (we end up with unbalanced []s unless
1390 # unless the .IF is true), so instead we use a .ELSE with the default.
1391 # This is the only file that depends on perlhost.h, vmem.h, and vdir.h
1392
1393 perllib$(o)     : perllib.c perllibst.h .\perlhost.h .\vdir.h .\vmem.h
1394 .IF "$(USE_IMP_SYS)" == "define"
1395         $(CC) -c -I. $(CFLAGS_O) $(CXX_FLAG) $(OBJOUT_FLAG)$@ $(PDBOUT) perllib.c
1396 .ELSE
1397         $(CC) -c -I. $(CFLAGS_O) $(OBJOUT_FLAG)$@ $(PDBOUT) perllib.c
1398 .ENDIF
1399
1400 # 1. we don't want to rebuild miniperl.exe when config.h changes
1401 # 2. we don't want to rebuild miniperl.exe with non-default config.h
1402 # 3. we can't have miniperl.exe depend on git_version.h, as miniperl creates it
1403 $(MINI_OBJ)     : $(MINIDIR)\.exists $(CORE_NOCFG_H)
1404
1405 $(WIN32_OBJ)    : $(CORE_H)
1406
1407 $(CORE_OBJ)     : $(CORE_H)
1408
1409 $(DLL_OBJ)      : $(CORE_H)
1410
1411
1412 perllibst.h : $(HAVEMINIPERL) $(CONFIGPM) create_perllibst_h.pl
1413         $(MINIPERL) -I..\lib create_perllibst_h.pl
1414
1415 perldll.def : $(HAVEMINIPERL) $(CONFIGPM) ..\embed.fnc ..\makedef.pl
1416         $(MINIPERL) -I..\lib -w ..\makedef.pl PLATFORM=win32 $(OPTIMIZE) $(DEFINES) \
1417         $(BUILDOPT) CCTYPE=$(CCTYPE) TARG_DIR=..\ > perldll.def
1418
1419 $(PERLEXPLIB) $(PERLIMPLIB) .UPDATEALL : perldll.def
1420 .IF "$(CCTYPE)" == "GCC"
1421         $(IMPLIB) -k -d perldll.def -l $(PERLIMPLIB) -e $(PERLEXPLIB)
1422 .ELSE #VC family
1423         lib -def:perldll.def -machine:$(ARCHITECTURE) /OUT:$(PERLIMPLIB)
1424 .ENDIF
1425
1426 $(PERLDLL): $(PERLEXPLIB) $(PERLDLL_OBJ) $(PERLDLL_RES) Extensions_static
1427 .IF "$(CCTYPE)" == "GCC"
1428         $(LINK32) -mdll -o $@ $(BLINK_FLAGS) \
1429            $(PERLDLL_OBJ) $(shell @type Extensions_static) $(LIBFILES) $(PERLEXPLIB)
1430 .ELSE
1431         $(LINK32) -dll -out:$@ $(BLINK_FLAGS) \
1432             @Extensions_static \
1433             @$(mktmp -base:0x28000000 $(DELAYLOAD) $(LIBFILES) \
1434                 $(PERLDLL_RES) $(PERLDLL_OBJ) $(PERLEXPLIB))
1435         $(EMBED_DLL_MANI)
1436 .ENDIF
1437
1438 $(PERLSTATICLIB): $(PERLDLL_OBJ) Extensions_static
1439 .IF "$(CCTYPE)" == "GCC"
1440         $(LIB32) $(LIB_FLAGS) $@ $(PERLDLL_OBJ)
1441         if exist $(STATICDIR) rmdir /s /q $(STATICDIR)
1442         for %i in ($(shell @type Extensions_static)) do \
1443                 @mkdir $(STATICDIR) && cd $(STATICDIR) && \
1444                 $(ARCHPREFIX)ar x ..\%i && \
1445                 $(ARCHPREFIX)ar q ..\$@ *$(o) && \
1446                 cd .. && rmdir /s /q $(STATICDIR)
1447 .ELSE
1448         $(LIB32) $(LIB_FLAGS) -out:$@ @Extensions_static \
1449             @$(mktmp $(PERLDLL_OBJ))
1450 .ENDIF
1451         $(XCOPY) $(PERLSTATICLIB) $(COREDIR)\$(NULL)
1452
1453 $(PERLEXE_RES): perlexe.rc $(PERLEXE_MANIFEST) $(PERLEXE_ICO)
1454
1455 $(MINIDIR)\globals$(o) : $(GENERATED_HEADERS)
1456
1457 $(GENUUDMAP) $(GENERATED_HEADERS) .UPDATEALL : ..\mg_raw.h
1458 .IF "$(CCTYPE)" == "GCC"
1459         $(LINK32) $(CFLAGS_O) -o..\generate_uudmap.exe ..\generate_uudmap.c \
1460         $(BLINK_FLAGS) -x $(mktmp $(LKPRE) $(LIBFILES) $(LKPOST))
1461 .ELSE
1462         $(CC) $(CFLAGS_O) $(PDBOUT) -Fe..\generate_uudmap.exe ..\generate_uudmap.c @$(mktmp -link $(LIBFILES)) -link $(BLINK_FLAGS)
1463         $(EMBED_EXE_MANI:s/$@/..\generate_uudmap.exe/)
1464 .ENDIF
1465         $(GENUUDMAP) $(GENERATED_HEADERS)
1466
1467 MakePPPort : $(HAVEMINIPERL) $(CONFIGPM)
1468         $(MINIPERL) -I..\lib ..\mkppport
1469
1470 # also known as $(HAVE_COREDIR)
1471 .\.coreheaders : $(CORE_H)
1472         $(XCOPY) *.h $(COREDIR)\*.* && $(RCOPY) include $(COREDIR)\*.* && $(XCOPY) ..\*.h $(COREDIR)\*.*
1473         rem. > $@
1474
1475 perlmain$(o) : runperl.c $(CONFIGPM)
1476         $(CC) $(CFLAGS_O:s,-DPERLDLL,-UPERLDLL,) $(OBJOUT_FLAG)$@ $(PDBOUT) -c runperl.c
1477
1478 perlmainst$(o) : runperl.c $(CONFIGPM)
1479         $(CC) $(CFLAGS_O) $(OBJOUT_FLAG)$@ $(PDBOUT) -c runperl.c
1480
1481 $(PERLEXE): $(CONFIGPM) $(PERLEXE_OBJ) $(PERLEXE_RES) $(PERLIMPLIB)
1482 .IF "$(CCTYPE)" == "GCC"
1483         $(LINK32) -mconsole -o $@ $(BLINK_FLAGS)  \
1484             $(PERLEXE_OBJ) $(PERLEXE_RES) $(PERLIMPLIB) $(LIBFILES)
1485 .ELSE
1486         $(LINK32) -out:$@ $(BLINK_FLAGS) \
1487             $(PERLEXE_OBJ) $(PERLEXE_RES) $(PERLIMPLIB) $(LIBFILES) $(SETARGV_OBJ)
1488         $(EMBED_EXE_MANI)
1489 .ENDIF
1490         copy $(PERLEXE) $(WPERLEXE)
1491         $(MINIPERL) -I..\lib bin\exetype.pl $(WPERLEXE) WINDOWS
1492
1493 $(PERLEXESTATIC): $(PERLSTATICLIB) $(CONFIGPM) $(PERLEXEST_OBJ) $(PERLEXE_RES)
1494 .IF "$(CCTYPE)" == "GCC"
1495         $(LINK32) -mconsole -o $@ $(BLINK_FLAGS) \
1496             $(PERLEXEST_OBJ) $(PERLEXE_RES) $(PERLSTATICLIB) $(LIBFILES)
1497 .ELSE
1498         $(LINK32) -out:$@ $(BLINK_FLAGS) \
1499             $(PERLEXEST_OBJ) $(PERLEXE_RES) $(PERLSTATICLIB) $(LIBFILES) $(SETARGV_OBJ)
1500         $(EMBED_EXE_MANI)
1501 .ENDIF
1502
1503 #-------------------------------------------------------------------------------
1504 # There's no direct way to mark a dependency on
1505 # DynaLoader.pm, so this will have to do
1506
1507 #most of deps of this target are in DYNALOADER and therefore omitted here
1508 Extensions : $(PERLDEP) $(DYNALOADER) $(GLOBEXE) MakePPPort
1509         $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(PLMAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --dynamic !Unicode/Normalize
1510
1511 Extensions_normalize : $(PERLDEP) $(DYNALOADER) $(GLOBEXE) $(UNIDATAFILES)
1512         $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(PLMAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --dynamic +Unicode/Normalize
1513
1514 Extensions_reonly : $(PERLDEP) $(DYNALOADER)
1515         $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(PLMAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --dynamic +re
1516
1517 Extensions_static : ..\make_ext.pl list_static_libs.pl $(CONFIGPM) $(GLOBEXE) $(HAVE_COREDIR) MakePPPort
1518         $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(PLMAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --static
1519         $(MINIPERL) -I..\lib list_static_libs.pl > Extensions_static
1520
1521 Extensions_nonxs : ..\make_ext.pl ..\pod\perlfunc.pod $(CONFIGPM) $(GLOBEXE)
1522         $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(PLMAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --nonxs !libs
1523
1524 #lib must be built, it can't be buildcustomize.pl-ed, and is required for XS building
1525 $(DYNALOADER) : ..\make_ext.pl $(CONFIGPM) $(HAVE_COREDIR)
1526         $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(PLMAKE)" --dir=$(EXTDIR) --dir=$(DISTDIR) --dynaloader lib
1527
1528 Extensions_clean :
1529         -if exist $(MINIPERL) $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(PLMAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --all --target=clean
1530
1531 Extensions_realclean :
1532         -if exist $(MINIPERL) $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(PLMAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --all --target=realclean
1533
1534 # all PE files need to be built by the time this target runs, PP files can still
1535 # be running in parallel like UNIDATAFILES, this target a placeholder for the
1536 # future
1537 .IF "$(BUILD_STATIC)"=="define"
1538 rebasePE : Extensions $(PERLDLL) Extensions_normalize $(PERLEXE) $(PERLEXESTATIC)
1539 .ELSE
1540 rebasePE : Extensions $(PERLDLL) Extensions_normalize $(PERLEXE)
1541 .ENDIF
1542         $(NOOP)
1543
1544 #-------------------------------------------------------------------------------
1545
1546
1547 doc: $(PERLEXE) $(PERLDLL) ..\pod\perltoc.pod
1548         $(PERLEXE) ..\installhtml --podroot=.. --htmldir=$(HTMLDIR) \
1549             --podpath=pod:lib:utils --htmlroot="file://$(INST_HTML:s,:,|,)"\
1550             --recurse
1551
1552 ..\utils\Makefile: $(CONFIGPM) ..\utils\Makefile.PL
1553         $(MINIPERL) -I..\lib ..\utils\Makefile.PL ..
1554
1555 # Note that this next section is parsed (and regenerated) by pod/buildtoc
1556 # so please check that script before making structural changes here
1557 utils: $(HAVEMINIPERL) ..\utils\Makefile
1558         cd ..\utils && $(PLMAKE) PERL=$(MINIPERL)
1559         copy ..\README.aix      ..\pod\perlaix.pod
1560         copy ..\README.amiga    ..\pod\perlamiga.pod
1561         copy ..\README.android  ..\pod\perlandroid.pod
1562         copy ..\README.bs2000   ..\pod\perlbs2000.pod
1563         copy ..\README.ce       ..\pod\perlce.pod
1564         copy ..\README.cn       ..\pod\perlcn.pod
1565         copy ..\README.cygwin   ..\pod\perlcygwin.pod
1566         copy ..\README.dos      ..\pod\perldos.pod
1567         copy ..\README.freebsd  ..\pod\perlfreebsd.pod
1568         copy ..\README.haiku    ..\pod\perlhaiku.pod
1569         copy ..\README.hpux     ..\pod\perlhpux.pod
1570         copy ..\README.hurd     ..\pod\perlhurd.pod
1571         copy ..\README.irix     ..\pod\perlirix.pod
1572         copy ..\README.jp       ..\pod\perljp.pod
1573         copy ..\README.ko       ..\pod\perlko.pod
1574         copy ..\README.linux    ..\pod\perllinux.pod
1575         copy ..\README.macos    ..\pod\perlmacos.pod
1576         copy ..\README.macosx   ..\pod\perlmacosx.pod
1577         copy ..\README.netware  ..\pod\perlnetware.pod
1578         copy ..\README.openbsd  ..\pod\perlopenbsd.pod
1579         copy ..\README.os2      ..\pod\perlos2.pod
1580         copy ..\README.os390    ..\pod\perlos390.pod
1581         copy ..\README.os400    ..\pod\perlos400.pod
1582         copy ..\README.plan9    ..\pod\perlplan9.pod
1583         copy ..\README.qnx      ..\pod\perlqnx.pod
1584         copy ..\README.riscos   ..\pod\perlriscos.pod
1585         copy ..\README.solaris  ..\pod\perlsolaris.pod
1586         copy ..\README.symbian  ..\pod\perlsymbian.pod
1587         copy ..\README.synology ..\pod\perlsynology.pod
1588         copy ..\README.tru64    ..\pod\perltru64.pod
1589         copy ..\README.tw       ..\pod\perltw.pod
1590         copy ..\README.vos      ..\pod\perlvos.pod
1591         copy ..\README.win32    ..\pod\perlwin32.pod
1592         copy ..\pod\perldelta.pod ..\pod\perl5276delta.pod
1593         $(MINIPERL) -I..\lib $(PL2BAT) $(UTILS)
1594         $(MINIPERL) -I..\lib ..\autodoc.pl ..
1595         $(MINIPERL) -I..\lib ..\pod\perlmodlib.PL -q ..
1596
1597 ..\pod\perltoc.pod: $(PERLEXE) $(PERLDLL) Extensions Extensions_nonxs Extensions_normalize utils
1598         $(PERLEXE) -f ..\pod\buildtoc -q
1599
1600 # Note that the pod cleanup in this next section is parsed (and regenerated
1601 # by pod/buildtoc so please check that script before making changes here
1602
1603 distclean: realclean
1604         -del /f $(MINIPERL) $(PERLEXE) $(PERLDLL) $(GLOBEXE) \
1605                 $(PERLIMPLIB) ..\miniperl$(a) $(PERLEXESTATIC) $(PERLSTATICLIB)
1606         -del /f $(LIBDIR)\Encode.pm $(LIBDIR)\encoding.pm $(LIBDIR)\Errno.pm
1607         -del /f $(LIBDIR)\Config.pod $(LIBDIR)\POSIX.pod $(LIBDIR)\threads.pm
1608         -del /f $(LIBDIR)\.exists $(LIBDIR)\attributes.pm $(LIBDIR)\DynaLoader.pm
1609         -del /f $(LIBDIR)\Fcntl.pm $(LIBDIR)\IO.pm $(LIBDIR)\Opcode.pm
1610         -del /f $(LIBDIR)\ops.pm $(LIBDIR)\Safe.pm
1611         -del /f $(LIBDIR)\SDBM_File.pm $(LIBDIR)\Socket.pm $(LIBDIR)\POSIX.pm
1612         -del /f $(LIBDIR)\B.pm $(LIBDIR)\O.pm $(LIBDIR)\re.pm
1613         -del /f $(LIBDIR)\File\Glob.pm
1614         -del /f $(LIBDIR)\Storable.pm
1615         -del /f $(LIBDIR)\Sys\Hostname.pm
1616         -del /f $(LIBDIR)\Time\HiRes.pm
1617         -del /f $(LIBDIR)\Unicode\Normalize.pm
1618         -del /f $(LIBDIR)\Math\BigInt\FastCalc.pm
1619         -del /f $(LIBDIR)\Win32.pm
1620         -del /f $(LIBDIR)\Win32CORE.pm
1621         -del /f $(LIBDIR)\Win32API\File.pm
1622         -del /f $(LIBDIR)\Win32API\File\cFile.pc
1623         -del /f $(LIBDIR)\buildcustomize.pl
1624         -del /f $(DISTDIR)\XSLoader\XSLoader.pm
1625         -del /f *.def *.map
1626         -if exist $(LIBDIR)\Amiga rmdir /s /q $(LIBDIR)\Amiga
1627         -if exist $(LIBDIR)\App rmdir /s /q $(LIBDIR)\App
1628         -if exist $(LIBDIR)\Archive rmdir /s /q $(LIBDIR)\Archive
1629         -if exist $(LIBDIR)\Attribute rmdir /s /q $(LIBDIR)\Attribute
1630         -if exist $(LIBDIR)\autodie rmdir /s /q $(LIBDIR)\autodie
1631         -if exist $(LIBDIR)\Carp rmdir /s /q $(LIBDIR)\Carp
1632         -if exist $(LIBDIR)\Compress rmdir /s /q $(LIBDIR)\Compress
1633         -if exist $(LIBDIR)\Config\Perl rmdir /s /q $(LIBDIR)\Config\Perl
1634         -if exist $(LIBDIR)\CPAN rmdir /s /q $(LIBDIR)\CPAN
1635         -if exist $(LIBDIR)\Data rmdir /s /q $(LIBDIR)\Data
1636         -if exist $(LIBDIR)\Devel rmdir /s /q $(LIBDIR)\Devel
1637         -if exist $(LIBDIR)\Digest rmdir /s /q $(LIBDIR)\Digest
1638         -if exist $(LIBDIR)\Encode rmdir /s /q $(LIBDIR)\Encode
1639         -if exist $(LIBDIR)\encoding rmdir /s /q $(LIBDIR)\encoding
1640         -if exist $(LIBDIR)\Exporter rmdir /s /q $(LIBDIR)\Exporter
1641         -if exist $(LIBDIR)\ExtUtils\CBuilder rmdir /s /q $(LIBDIR)\ExtUtils\CBuilder
1642         -if exist $(LIBDIR)\ExtUtils\Command rmdir /s /q $(LIBDIR)\ExtUtils\Command
1643         -if exist $(LIBDIR)\ExtUtils\Constant rmdir /s /q $(LIBDIR)\ExtUtils\Constant
1644         -if exist $(LIBDIR)\ExtUtils\Liblist rmdir /s /q $(LIBDIR)\ExtUtils\Liblist
1645         -if exist $(LIBDIR)\ExtUtils\MakeMaker rmdir /s /q $(LIBDIR)\ExtUtils\MakeMaker
1646         -if exist $(LIBDIR)\ExtUtils\ParseXS rmdir /s /q $(LIBDIR)\ExtUtils\ParseXS
1647         -if exist $(LIBDIR)\ExtUtils\Typemaps rmdir /s /q $(LIBDIR)\ExtUtils\Typemaps
1648         -if exist $(LIBDIR)\File\Spec rmdir /s /q $(LIBDIR)\File\Spec
1649         -if exist $(LIBDIR)\Filter rmdir /s /q $(LIBDIR)\Filter
1650         -if exist $(LIBDIR)\Hash rmdir /s /q $(LIBDIR)\Hash
1651         -if exist $(LIBDIR)\HTTP rmdir /s /q $(LIBDIR)\HTTP
1652         -if exist $(LIBDIR)\I18N rmdir /s /q $(LIBDIR)\I18N
1653         -if exist $(LIBDIR)\inc rmdir /s /q $(LIBDIR)\inc
1654         -if exist $(LIBDIR)\IO rmdir /s /q $(LIBDIR)\IO
1655         -if exist $(LIBDIR)\IPC rmdir /s /q $(LIBDIR)\IPC
1656         -if exist $(LIBDIR)\JSON rmdir /s /q $(LIBDIR)\JSON
1657         -if exist $(LIBDIR)\List rmdir /s /q $(LIBDIR)\List
1658         -if exist $(LIBDIR)\Locale rmdir /s /q $(LIBDIR)\Locale
1659         -if exist $(LIBDIR)\Math rmdir /s /q $(LIBDIR)\Math
1660         -if exist $(LIBDIR)\Memoize rmdir /s /q $(LIBDIR)\Memoize
1661         -if exist $(LIBDIR)\MIME rmdir /s /q $(LIBDIR)\MIME
1662         -if exist $(LIBDIR)\Module rmdir /s /q $(LIBDIR)\Module
1663         -if exist $(LIBDIR)\Net\FTP rmdir /s /q $(LIBDIR)\Net\FTP
1664         -if exist $(LIBDIR)\Params rmdir /s /q $(LIBDIR)\Params
1665         -if exist $(LIBDIR)\Parse rmdir /s /q $(LIBDIR)\Parse
1666         -if exist $(LIBDIR)\Perl rmdir /s /q $(LIBDIR)\Perl
1667         -if exist $(LIBDIR)\PerlIO rmdir /s /q $(LIBDIR)\PerlIO
1668         -if exist $(LIBDIR)\Pod\Perldoc rmdir /s /q $(LIBDIR)\Pod\Perldoc
1669         -if exist $(LIBDIR)\Pod\Simple rmdir /s /q $(LIBDIR)\Pod\Simple
1670         -if exist $(LIBDIR)\Pod\Text rmdir /s /q $(LIBDIR)\Pod\Text
1671         -if exist $(LIBDIR)\Scalar rmdir /s /q $(LIBDIR)\Scalar
1672         -if exist $(LIBDIR)\Search rmdir /s /q $(LIBDIR)\Search
1673         -if exist $(LIBDIR)\Sub rmdir /s /q $(LIBDIR)\Sub
1674         -if exist $(LIBDIR)\Sys rmdir /s /q $(LIBDIR)\Sys
1675         -if exist $(LIBDIR)\TAP rmdir /s /q $(LIBDIR)\TAP
1676         -if exist $(LIBDIR)\Term rmdir /s /q $(LIBDIR)\Term
1677         -if exist $(LIBDIR)\Test rmdir /s /q $(LIBDIR)\Test
1678         -if exist $(LIBDIR)\Test2 rmdir /s /q $(LIBDIR)\Test2
1679         -if exist $(LIBDIR)\Text rmdir /s /q $(LIBDIR)\Text
1680         -if exist $(LIBDIR)\Thread rmdir /s /q $(LIBDIR)\Thread
1681         -if exist $(LIBDIR)\threads rmdir /s /q $(LIBDIR)\threads
1682         -if exist $(LIBDIR)\Tie\Hash rmdir /s /q $(LIBDIR)\Tie\Hash
1683         -if exist $(LIBDIR)\Unicode\Collate rmdir /s /q $(LIBDIR)\Unicode\Collate
1684         -if exist $(LIBDIR)\Unicode\Collate\Locale rmdir /s /q $(LIBDIR)\Unicode\Collate\Locale
1685         -if exist $(LIBDIR)\version rmdir /s /q $(LIBDIR)\version
1686         -if exist $(LIBDIR)\VMS rmdir /s /q $(LIBDIR)\VMS
1687         -if exist $(LIBDIR)\Win32API rmdir /s /q $(LIBDIR)\Win32API
1688         -if exist $(LIBDIR)\XS rmdir /s /q $(LIBDIR)\XS
1689         -cd $(PODDIR) && del /f *.html *.bat roffitall \
1690             perl5276delta.pod perlaix.pod perlamiga.pod perlandroid.pod \
1691             perlapi.pod perlbs2000.pod perlce.pod perlcn.pod perlcygwin.pod \
1692             perldos.pod perlfreebsd.pod perlhaiku.pod perlhpux.pod \
1693             perlhurd.pod perlintern.pod perlirix.pod perljp.pod perlko.pod \
1694             perllinux.pod perlmacos.pod perlmacosx.pod perlmodlib.pod \
1695             perlnetware.pod perlopenbsd.pod perlos2.pod perlos390.pod \
1696             perlos400.pod perlplan9.pod perlqnx.pod perlriscos.pod \
1697             perlsolaris.pod perlsymbian.pod perlsynology.pod perltoc.pod \
1698             perltru64.pod perltw.pod perluniprops.pod perlvos.pod \
1699             perlwin32.pod
1700         -cd ..\utils && del /f h2ph splain perlbug pl2pm h2xs \
1701             perldoc perlivp libnetcfg enc2xs encguess piconv cpan *.bat \
1702             xsubpp pod2html instmodsh json_pp prove ptar ptardiff ptargrep shasum corelist zipdetails
1703         -del /f ..\config.sh perlmain.c dlutils.c config.h.new \
1704             perlmainst.c
1705         -del /f $(CONFIGPM)
1706         -del /f ..\lib\Config_git.pl
1707         -del /f bin\*.bat
1708         -del /f perllibst.h
1709         -del /f $(PERLEXE_RES) perl.base
1710         -cd .. && del /s *$(a) *.map *.pdb *.ilk *.bs *$(o) .exists pm_to_blib ppport.h
1711         -cd $(EXTDIR) && del /s *.def Makefile Makefile.old
1712         -cd $(DISTDIR) && del /s *.def Makefile Makefile.old
1713         -cd $(CPANDIR) && del /s *.def Makefile Makefile.old
1714         -del /s ..\utils\Makefile
1715         -if exist $(AUTODIR) rmdir /s /q $(AUTODIR)
1716         -if exist $(COREDIR) rmdir /s /q $(COREDIR)
1717         -if exist pod2htmd.tmp del pod2htmd.tmp
1718         -if exist $(HTMLDIR) rmdir /s /q $(HTMLDIR)
1719         -del /f ..\t\test_state
1720
1721 install : all installbare installhtml
1722
1723 installbare : utils ..\pod\perltoc.pod
1724         $(PERLEXE) ..\installperl
1725         if exist $(WPERLEXE) $(XCOPY) $(WPERLEXE) $(INST_BIN)\*.*
1726         if exist $(PERLEXESTATIC) $(XCOPY) $(PERLEXESTATIC) $(INST_BIN)\*.*
1727         $(XCOPY) $(GLOBEXE) $(INST_BIN)\*.*
1728         if exist ..\perl*.pdb $(XCOPY) ..\perl*.pdb $(INST_BIN)\*.*
1729         $(XCOPY) bin\*.bat $(INST_SCRIPT)\*.*
1730
1731 installhtml : doc
1732         $(RCOPY) $(HTMLDIR)\*.* $(INST_HTML)\*.*
1733
1734 inst_lib : $(CONFIGPM)
1735         $(RCOPY) ..\lib $(INST_LIB)\*.*
1736
1737 $(UNIDATAFILES) ..\pod\perluniprops.pod .UPDATEALL : ..\lib\unicore\mktables $(CONFIGPM)
1738         $(MINIPERL) -I..\lib ..\lib\unicore\mktables -C ..\lib\unicore -P ..\pod -maketest -makelist -p
1739
1740 minitest : .\config.h $(HAVEMINIPERL) ..\git_version.h $(GLOBEXE) $(CONFIGPM) $(UNIDATAFILES) $(TESTPREPGCC)
1741         $(XCOPY) $(MINIPERL) ..\t\$(NULL)
1742         if exist ..\t\perl.exe del /f ..\t\perl.exe
1743         rename ..\t\miniperl.exe perl.exe
1744         $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1745 # Note this perl.exe is miniperl
1746         cd ..\t && perl.exe TEST base/*.t comp/*.t cmd/*.t run/*.t io/*.t re/*.t opbasic/*.t op/*.t uni/*.t perf/*.t pragma/*.t
1747
1748 test-prep : all utils ..\pod\perltoc.pod $(TESTPREPGCC)
1749         $(XCOPY) $(PERLEXE) ..\t\$(NULL) && $(XCOPY) $(PERLDLL) ..\t\$(NULL) \
1750         && $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1751
1752 # If building with gcc versions 4.x.x or greater, then
1753 # the GCC helper DLL will also need copied to the test directory.
1754 # The name of the dll can change, depending upon which vendor has supplied
1755 # your compiler, and upon the values of "x".
1756 # libstdc++-6.dll is copied if it exists as it, too, may then be needed.
1757 # Without this copying, the op/taint.t test script will fail.
1758
1759 .IF "$(CCTYPE)" == "GCC"
1760
1761 test-prep-gcc :
1762         if exist $(CCDLLDIR)\libgcc_s_seh-1.dll $(XCOPY) $(CCDLLDIR)\libgcc_s_seh-1.dll ..\t\$(NULL)
1763         if exist $(CCDLLDIR)\libgcc_s_sjlj-1.dll $(XCOPY) $(CCDLLDIR)\libgcc_s_sjlj-1.dll ..\t\$(NULL)
1764         if exist $(CCDLLDIR)\libgcc_s_dw2-1.dll $(XCOPY) $(CCDLLDIR)\libgcc_s_dw2-1.dll ..\t\$(NULL)
1765         if exist $(CCDLLDIR)\libstdc++-6.dll $(XCOPY) $(CCDLLDIR)\libstdc++-6.dll ..\t\$(NULL)
1766         if exist $(CCDLLDIR)\libwinpthread-1.dll $(XCOPY) $(CCDLLDIR)\libwinpthread-1.dll ..\t\$(NULL)
1767
1768 .ENDIF
1769
1770 test : test-prep
1771         set PERL_STATIC_EXT=$(STATIC_EXT) && \
1772             cd ..\t && perl.exe harness $(TEST_SWITCHES) $(TEST_FILES)
1773
1774 test_porting : test-prep
1775         set PERL_STATIC_EXT=$(STATIC_EXT) && \
1776             cd ..\t && perl.exe harness $(TEST_SWITCHES) porting\*.t ..\lib\diagnostics.t
1777
1778 test-reonly : reonly utils
1779         $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1780         $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1781         $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1782         cd ..\t && perl.exe harness $(OPT) -re \bpat\\/ $(EXTRA)
1783
1784 regen :
1785         cd .. && regen.pl
1786
1787 test-notty : test-prep
1788         set PERL_STATIC_EXT=$(STATIC_EXT) && \
1789             set PERL_SKIP_TTY_TEST=1 && \
1790             cd ..\t && perl.exe harness $(TEST_SWITCHES) $(TEST_FILES)
1791
1792 _test :
1793         $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1794         $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1795         $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1796         set PERL_STATIC_EXT=$(STATIC_EXT) && \
1797             cd ..\t && perl.exe harness $(TEST_SWITCHES) $(TEST_FILES)
1798
1799 _clean :
1800         -@erase miniperlmain$(o)
1801         -@erase $(MINIPERL)
1802         -@erase perlglob$(o)
1803         -@erase perlmain$(o)
1804         -@erase perlmainst$(o)
1805         -@erase /f config.h
1806         -@erase /f ..\git_version.h
1807         -@erase $(GLOBEXE)
1808         -@erase $(PERLEXE)
1809         -@erase $(WPERLEXE)
1810         -@erase $(PERLEXESTATIC)
1811         -@erase $(PERLSTATICLIB)
1812         -@erase $(PERLDLL)
1813         -@erase $(CORE_OBJ)
1814         -@erase $(GENUUDMAP) $(GENUUDMAP_OBJ) $(GENERATED_HEADERS)
1815         -@erase .coreheaders
1816         -if exist $(MINIDIR) rmdir /s /q $(MINIDIR)
1817         -if exist $(UNIDATADIR1) rmdir /s /q $(UNIDATADIR1)
1818         -if exist $(UNIDATADIR2) rmdir /s /q $(UNIDATADIR2)
1819         -@erase $(UNIDATAFILES)
1820         -@erase $(WIN32_OBJ)
1821         -@erase $(DLL_OBJ)
1822         -@erase ..\*$(o) ..\*$(a) ..\*.exp *$(o) *$(a) *.exp *.res
1823         -@erase ..\t\*.exe ..\t\*.dll ..\t\*.bat
1824         -@erase *.ilk
1825         -@erase *.pdb ..\*.pdb
1826         -@erase Extensions_static
1827
1828 clean : Extensions_clean _clean
1829
1830 realclean : Extensions_realclean _clean
1831
1832 # Handy way to run perlbug -ok without having to install and run the
1833 # installed perlbug. We don't re-run the tests here - we trust the user.
1834 # Please *don't* use this unless all tests pass.
1835 # If you want to report test failures, use "dmake nok" instead.
1836 ok: utils $(PERLEXE) $(PERLDLL) Extensions_nonxs Extensions
1837         $(PERLEXE) ..\utils\perlbug -ok -s "(UNINSTALLED)"
1838
1839 okfile: utils $(PERLEXE) $(PERLDLL) Extensions_nonxs Extensions
1840         $(PERLEXE) ..\utils\perlbug -ok -s "(UNINSTALLED)" -F perl.ok
1841
1842 nok: utils $(PERLEXE) $(PERLDLL) Extensions_nonxs Extensions
1843         $(PERLEXE) ..\utils\perlbug -nok -s "(UNINSTALLED)"
1844
1845 nokfile: utils $(PERLEXE) $(PERLDLL) Extensions_nonxs Extensions
1846         $(PERLEXE) ..\utils\perlbug -nok -s "(UNINSTALLED)" -F perl.nok
1847