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