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