2 # Makefile to build perl on Windows using DMAKE.
4 # Microsoft Visual C++ 6.0 or later
5 # MinGW with gcc-3.4.5 or later
6 # Windows SDK 64-bit compiler and tools
8 # This is set up to build a perl.exe that runs off a shared library
9 # (perl523.dll). Also makes individual DLLs for the XS extensions.
13 ## Make sure you read README.win32 *before* you mess with anything here!
17 # Import everything from the environment like NMAKE does.
22 ## Build configuration. Edit the values below to suit your needs.
26 # Set these to wherever you want "dmake install" to put your
30 INST_TOP *= $(INST_DRV)\perl
33 # Uncomment if you want to build a 32-bit Perl using a 32-bit compiler
34 # on a 64-bit version of Windows.
39 # Comment this out if you DON'T want your perl installation to be versioned.
40 # This means that the new installation will overwrite any files from the
41 # old installation at the same INST_TOP location. Leaving it enabled is
42 # the safest route, as perl adds the extra version directory to all the
43 # locations it installs files to. If you disable it, an alternative
44 # versioned installation can be obtained by setting INST_TOP above to a
45 # path that includes an arbitrary version string.
50 # Comment this out if you DON'T want your perl installation to have
51 # architecture specific components. This means that architecture-
52 # specific files will be installed along with the architecture-neutral
53 # files. Leaving it enabled is safer and more flexible, in case you
54 # want to build multiple flavors of perl and install them together in
55 # the same location. Commenting it out gives you a simpler
56 # installation that is easier to understand for beginners.
58 #INST_ARCH *= \$(ARCHNAME)
61 # Uncomment this if you want perl to run
62 # $Config{sitelibexp}\sitecustomize.pl
63 # before anything else. This script can then be set up, for example,
64 # to add additional entries to @INC.
66 #USE_SITECUST *= define
69 # uncomment to enable multiple interpreters. This is needed for fork()
70 # emulation and for thread support, and is auto-enabled by USE_IMP_SYS
71 # and USE_ITHREADS below.
76 # Interpreter cloning/threads; now reasonably complete.
77 # This should be enabled to get the fork() emulation. This needs (and
78 # will auto-enable) USE_MULTI above.
80 USE_ITHREADS *= define
83 # uncomment to enable the implicit "host" layer for all system calls
84 # made by perl. This is also needed to get fork(). This needs (and
85 # will auto-enable) USE_MULTI above.
90 # Comment this out if you don't want to enable large file support for
91 # some reason. Should normally only be changed to maintain compatibility
92 # with an older release of perl.
94 USE_LARGE_FILES *= define
97 # Uncomment this if you're building a 32-bit perl and want 64-bit integers.
98 # (If you're building a 64-bit perl then you will have 64-bit integers whether
99 # or not this is uncommented.)
100 # Note: This option is not supported in 32-bit MSVC60 builds.
102 #USE_64_BIT_INT *= define
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.
108 #USE_LONG_DOUBLE *=define
111 # uncomment exactly one of the following
113 # Visual C++ 6.0 (aka Visual C++ 98)
115 # Visual C++ .NET 2002/2003 (aka Visual C++ 7.0/7.1) (full version)
117 # Visual C++ Toolkit 2003 (aka Visual C++ 7.1) (free command-line tools)
118 #CCTYPE *= MSVC70FREE
119 # Windows Server 2003 SP1 Platform SDK (April 2005)
121 # Visual C++ 2005 (aka Visual C++ 8.0) (full version)
123 # Visual C++ 2005 Express Edition (aka Visual C++ 8.0) (free version)
124 #CCTYPE *= MSVC80FREE
125 # Visual C++ 2008 (aka Visual C++ 9.0) (full version)
127 # Visual C++ 2008 Express Edition (aka Visual C++ 9.0) (free version)
128 #CCTYPE *= MSVC90FREE
129 # Visual C++ 2010 (aka Visual C++ 10.0) (full version)
131 # Visual C++ 2010 Express Edition (aka Visual C++ 10.0) (free version)
132 #CCTYPE = MSVC100FREE
133 # Visual C++ 2012 (aka Visual C++ 11.0) (full version)
135 # Visual C++ 2012 Express Edition (aka Visual C++ 11.0) (free version)
136 #CCTYPE = MSVC110FREE
137 # Visual C++ 2013 (aka Visual C++ 12.0) (full version)
139 # Visual C++ 2013 Express Edition (aka Visual C++ 12.0) (free version)
140 #CCTYPE = MSVC120FREE
141 # MinGW or mingw-w64 with gcc-3.4.5 or later
145 # If you are using GCC, 4.3 or later by default we add the -fwrapv option.
146 # See https://rt.perl.org/Ticket/Display.html?id=121505
151 # If you are using Intel C++ Compiler uncomment this
156 # Uncomment this if you want to build everything in C++ mode
158 #USE_CPLUSPLUS *= define
161 # uncomment next line if you want debug version of perl (big/slow)
162 # If not enabled, we automatically try to use maximum optimization
163 # with all compilers that are known to have a working optimizer.
165 # You can also set CFG = DebugSymbols for a slightly smaller/faster
166 # debug build without the special debugging code in perl which is
167 # enabled via -DDEBUGGING;
169 # or you can set CFG = DebugFull for an even fuller (bigger/slower)
170 # debug build using the debug version of the CRT, and enabling VC++
171 # debug features such as extra assertions and invalid parameter warnings
172 # in perl and CRT code via -D_DEBUG. (Note that the invalid parameter
173 # handler does get triggered from time to time in this configuration,
174 # which causes warnings to be printed on STDERR, which in turn causes a
175 # few tests to fail.) (This configuration is only available for VC++ builds.)
180 # uncomment to enable linking with setargv.obj under the Visual C
181 # compiler. Setting this options enables perl to expand wildcards in
182 # arguments, but it may be harder to use alternate methods like
183 # File::DosGlob that are more powerful. This option is supported only with
186 #USE_SETARGV *= define
189 # set this if you wish to use perl's malloc
190 # WARNING: Turning this on/off WILL break binary compatibility with extensions
191 # you may have compiled with/without it. Be prepared to recompile all
192 # extensions if you change the default. Currently, this cannot be enabled
193 # if you ask for USE_IMP_SYS above.
195 #PERL_MALLOC *= define
198 # set this to enable debugging mstats
199 # This must be enabled to use the Devel::Peek::mstat() function. This cannot
200 # be enabled without PERL_MALLOC as well.
202 #DEBUG_MSTATS *= define
205 # set this to additionally provide a statically linked perl-static.exe.
206 # Note that dynamic loading will not work with this perl, so you must
207 # include required modules statically using the STATIC_EXT or ALL_STATIC
208 # variables below. A static library perl523s.lib will also be created.
209 # Ordinary perl.exe is not affected by this option.
211 #BUILD_STATIC *= define
214 # in addition to BUILD_STATIC the option ALL_STATIC makes *every*
215 # extension get statically built
216 # This will result in a very large perl executable, but the main purpose
217 # is to have proper linking set so as to be able to create miscellaneous
218 # executables with different built-in extensions
220 #ALL_STATIC *= define
223 # set the install locations of the compiler include/libraries
224 # Running VCVARS32.BAT is *required* when using Visual C.
225 # Some versions of Visual C don't define MSVCDIR in the environment,
226 # so you may have to set CCHOME explicitly (spaces in the path name should
229 .IF "$(CCTYPE)" == "GCC"
236 # uncomment this if you are using x86_64-w64-mingw32 cross-compiler
237 # ie if your gcc executable is called 'x86_64-w64-mingw32-gcc'
238 # instead of the usual 'gcc'.
243 # Following sets $Config{incpath} and $Config{libpth}
246 .IF "$(GCCCROSS)" == "define"
247 CCINCDIR *= $(CCHOME)\x86_64-w64-mingw32\include
248 CCLIBDIR *= $(CCHOME)\x86_64-w64-mingw32\lib
249 CCDLLDIR *= $(CCLIBDIR)
251 CCINCDIR *= $(CCHOME)\include
252 CCLIBDIR *= $(CCHOME)\lib
253 CCDLLDIR *= $(CCHOME)\bin
257 # Additional compiler flags can be specified here.
259 BUILDOPT *= $(BUILDOPTEXTRA)
262 # This should normally be disabled. Enabling it will disable the File::Glob
263 # implementation of CORE::glob.
265 #BUILDOPT += -DPERL_EXTERNAL_GLOB
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).
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.
277 BUILDOPT += -DPERL_TEXTMODE_SCRIPTS
280 # specify semicolon-separated list of extra directories that modules will
281 # look for libraries (spaces in path names need not be quoted)
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)
289 #SHELL *= g:\winnt\system32\cmd.exe
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)
298 ## Build configuration ends.
301 ##################### CHANGE THESE ONLY IF YOU MUST #####################
304 DEBUG_MSTATS *= undef
306 USE_SITECUST *= undef
308 USE_ITHREADS *= undef
310 USE_LARGE_FILES *= undef
311 USE_64_BIT_INT *= undef
312 USE_LONG_DOUBLE *= undef
314 .IF "$(USE_IMP_SYS)" == "define"
318 .IF "$(PERL_MALLOC)" == "undef"
322 .IF "$(DEBUG_MSTATS)" == "define"
323 BUILDOPT += -DPERL_DEBUGGING_MSTATS
326 .IF "$(USE_IMP_SYS) $(USE_MULTI)" == "define undef"
330 .IF "$(USE_ITHREADS) $(USE_MULTI)" == "define undef"
334 .IF "$(USE_SITECUST)" == "define"
335 BUILDOPT += -DUSE_SITECUSTOMIZE
338 .IF "$(USE_MULTI)" != "undef"
339 BUILDOPT += -DPERL_IMPLICIT_CONTEXT
342 .IF "$(USE_IMP_SYS)" != "undef"
343 BUILDOPT += -DPERL_IMPLICIT_SYS
346 PROCESSOR_ARCHITECTURE *= x86
348 .IF "$(WIN64)" == "undef"
349 PROCESSOR_ARCHITECTURE = x86
353 # When we are running from a 32bit cmd.exe on AMD64 then
354 # PROCESSOR_ARCHITECTURE is set to x86 and PROCESSOR_ARCHITEW6432
356 .IF "$(PROCESSOR_ARCHITEW6432)" != ""
357 PROCESSOR_ARCHITECTURE != $(PROCESSOR_ARCHITEW6432)
359 .ELIF "$(PROCESSOR_ARCHITECTURE)" == "AMD64" || "$(PROCESSOR_ARCHITECTURE)" == "IA64"
366 .IF "$(WIN64)" == "define"
367 USE_64_BIT_INT = define
370 # Treat 64-bit MSVC60 (doesn't really exist) as SDK2003SP1 because
371 # both link against MSVCRT.dll (which is part of Windows itself) and
372 # not against a compiler specific versioned runtime.
373 .IF "$(WIN64)" == "define" && "$(CCTYPE)" == "MSVC60"
377 # Disable the 64-bit-int option for (32-bit) MSVC60 builds since that compiler
378 # does not support it.
379 .IF "$(CCTYPE)" == "MSVC60"
380 USE_64_BIT_INT != undef
383 # Disable the long double option for MSVC builds since that compiler
384 # does not support it.
385 .IF "$(CCTYPE)" != "GCC"
386 USE_LONG_DOUBLE != undef
389 ARCHITECTURE = $(PROCESSOR_ARCHITECTURE)
390 .IF "$(ARCHITECTURE)" == "AMD64"
393 .IF "$(ARCHITECTURE)" == "IA64"
397 .IF "$(USE_MULTI)" == "define"
398 ARCHNAME = MSWin32-$(ARCHITECTURE)-multi
400 ARCHNAME = MSWin32-$(ARCHITECTURE)-perlio
403 .IF "$(USE_ITHREADS)" == "define"
404 ARCHNAME !:= $(ARCHNAME)-thread
407 .IF "$(WIN64)" != "define"
408 .IF "$(USE_64_BIT_INT)" == "define"
409 ARCHNAME !:= $(ARCHNAME)-64int
413 .IF "$(USE_LONG_DOUBLE)" == "define"
414 ARCHNAME !:= $(ARCHNAME)-ld
417 ARCHDIR = ..\lib\$(ARCHNAME)
418 COREDIR = ..\lib\CORE
419 AUTODIR = ..\lib\auto
428 INST_SCRIPT = $(INST_TOP)$(INST_VER)\bin
429 INST_BIN = $(INST_SCRIPT)$(INST_ARCH)
430 INST_LIB = $(INST_TOP)$(INST_VER)\lib
431 INST_ARCHLIB = $(INST_LIB)$(INST_ARCH)
432 INST_COREDIR = $(INST_ARCHLIB)\CORE
433 INST_HTML = $(INST_TOP)$(INST_VER)\html
436 # Programs to compile, build .lib files and link
443 .IF "$(CCTYPE)" == "GCC"
445 .IF "$(GCCCROSS)" == "define"
446 ARCHPREFIX = x86_64-w64-mingw32-
449 CC = $(ARCHPREFIX)gcc
450 LINK32 = $(ARCHPREFIX)g++
451 LIB32 = $(ARCHPREFIX)ar rc
452 IMPLIB = $(ARCHPREFIX)dlltool
453 RSC = $(ARCHPREFIX)windres
455 .IF "$(USE_LONG_DOUBLE)" == "define"
456 BUILDOPT += -D__USE_MINGW_ANSI_STDIO
457 MINIBUILDOPT += -D__USE_MINGW_ANSI_STDIO
460 GCCWRAPV *= $(shell for /f "delims=. tokens=1,2,3" %i in ('$(CC) -dumpversion') do @if "%i"=="4" (if "%j" geq "3" echo define) else if "%i" geq "5" (echo define))
462 .IF "$(GCCWRAPV)" == "define"
464 MINIBUILDOPT += -fwrapv
475 INCLUDES = -I.\include -I. -I.. -I$(COREDIR)
477 .IF "$(WIN64)" == "define"
478 DEFINES += -DWIN64 -DCONSERVATIVE
480 LOCDEFS = -DPERLDLL -DPERL_CORE
483 # Current releases of MinGW 5.1.4 (as of 11-Aug-2009) will fail to link
484 # correctly if -lmsvcrt is specified explicitly.
490 -lmoldname -lkernel32 -luser32 -lgdi32 \
491 -lwinspool -lcomdlg32 -ladvapi32 -lshell32 -lole32 \
492 -loleaut32 -lnetapi32 -luuid -lws2_32 -lmpr \
493 -lwinmm -lversion -lodbc32 -lodbccp32 -lcomctl32
495 .IF "$(CFG)" == "Debug"
496 OPTIMIZE = -g -O2 -DDEBUGGING
498 .ELIF "$(CFG)" == "DebugSymbols"
507 .IF "$(USE_CPLUSPLUS)" == "define"
508 EXTRACFLAGS += $(CXX_FLAG)
510 CFLAGS = $(EXTRACFLAGS) $(INCLUDES) $(DEFINES) $(LOCDEFS) $(OPTIMIZE)
511 LINK_FLAGS = $(LINK_DBG) -L"$(INST_COREDIR)" -L"$(CCLIBDIR)"
517 BUILDOPT += -fno-strict-aliasing -mms-bitfields
518 MINIBUILDOPT += -fno-strict-aliasing
520 TESTPREPGCC = test-prep-gcc
524 # All but the free version of VC++ 7.1 can load DLLs on demand. Makes the test
525 # suite run in about 10% less time.
526 .IF "$(CCTYPE)" != "MSVC70FREE"
527 DELAYLOAD = -DELAYLOAD:ws2_32.dll delayimp.lib
530 # Visual C++ 2005 and 2008 (VC++ 8.0 and 9.0) create manifest files for EXEs and
531 # DLLs. These either need copying everywhere with the binaries, or else need
532 # embedding in them otherwise MSVCR80.dll or MSVCR90.dll won't be found. For
533 # simplicity, embed them if they exist (and delete them afterwards so that they
534 # don't get installed too).
535 EMBED_EXE_MANI = if exist $@.manifest mt -nologo -manifest $@.manifest -outputresource:$@;1 && \
536 if exist $@.manifest del $@.manifest
537 EMBED_DLL_MANI = if exist $@.manifest mt -nologo -manifest $@.manifest -outputresource:$@;2 && \
538 if exist $@.manifest del $@.manifest
540 # Most relevant compiler-specific options fall into two groups:
541 # either pre-MSVC80 or MSVC80 onwards, so define a macro for this.
542 .IF "$(CCTYPE)" == "MSVC60" || \
543 "$(CCTYPE)" == "MSVC70" || "$(CCTYPE)" == "MSVC70FREE"
549 .IF "$(__ICC)" != "define"
556 LIB32 = $(LINK32) -lib
563 INCLUDES = -I$(COREDIR) -I.\include -I. -I..
564 #PCHFLAGS = -Fpc:\temp\vcmoduls.pch -YX
565 DEFINES = -DWIN32 -D_CONSOLE -DNO_STRICT
566 LOCDEFS = -DPERLDLL -DPERL_CORE
571 .IF "$(CFG)" == "Debug"
572 OPTIMIZE = -Od -MD -Zi -DDEBUGGING
574 .ELIF "$(CFG)" == "DebugSymbols"
575 OPTIMIZE = -Od -MD -Zi
577 .ELIF "$(CFG)" == "DebugFull"
579 OPTIMIZE = -Od -MDd -Zi -D_DEBUG -DDEBUGGING
582 # -O1 yields smaller code, which turns out to be faster than -O2 on x86 and x64
583 OPTIMIZE = -O1 -MD -Zi -DNDEBUG
584 # we enable debug symbols in release builds also
585 LINK_DBG = -debug -opt:ref,icf
586 # you may want to enable this if you want COFF symbols in the executables
587 # in addition to the PDB symbols. The default Dr. Watson that ships with
588 # Windows can use the the former but not latter. The free WinDbg can be
589 # installed to get better stack traces from just the PDB symbols, so we
590 # avoid the bloat of COFF symbols by default.
591 #LINK_DBG = $(LINK_DBG) -debugtype:both
592 .IF "$(CCTYPE)" != "MSVC60"
593 # enable Whole Program Optimizations (WPO) and Link Time Code Generation (LTCG)
600 .IF "$(WIN64)" == "define"
601 DEFINES += -DWIN64 -DCONSERVATIVE
602 OPTIMIZE += -fp:precise
605 # For now, silence warnings from VC++ 8.0 onwards about "unsafe" CRT functions
606 # and POSIX CRT function names being deprecated.
607 .IF "$(PREMSVC80)" == "undef"
608 DEFINES += -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE
611 # In VS 2005 (VC++ 8.0) Microsoft changes time_t from 32-bit to
612 # 64-bit, even in 32-bit mode. It also provides the _USE_32BIT_TIME_T
613 # preprocessor option to revert back to the old functionality for
614 # backward compatibility. We define this symbol here for older 32-bit
615 # compilers only (which aren't using it at all) for the sole purpose
616 # of getting it into $Config{ccflags}. That way if someone builds
617 # Perl itself with e.g. VC6 but later installs an XS module using VC8
618 # the time_t types will still be compatible.
619 .IF "$(WIN64)" == "undef"
620 .IF "$(PREMSVC80)" == "define"
621 BUILDOPT += -D_USE_32BIT_TIME_T
626 oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.lib \
627 comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \
628 netapi32.lib uuid.lib ws2_32.lib mpr.lib winmm.lib \
629 version.lib odbc32.lib odbccp32.lib comctl32.lib
631 # Avoid __intel_new_proc_init link error for libircmt.
632 # libmmd is /MD equivelent, other variants exist.
633 # libmmd is Intel C's math addon funcs to MS CRT, contains long doubles, C99,
634 # and optimized C89 funcs
635 .IF "$(__ICC)" == "define"
636 LIBBASEFILES += libircmt.lib libmmd.lib
639 # The 64 bit Windows Server 2003 SP1 SDK compilers link against MSVCRT.dll, which
640 # doesn't include the buffer overrun verification code used by the /GS switch.
641 # Since the code links against libraries that are compiled with /GS, this
642 # "security cookie verification" code must be included via bufferoverflow.lib.
643 .IF "$(WIN64)" == "define" && "$(CCTYPE)" == "SDK2003SP1"
644 LIBBASEFILES += bufferoverflowU.lib
647 LIBFILES = $(LIBBASEFILES) $(LIBC)
649 EXTRACFLAGS = -nologo -GF -W3
650 .IF "$(__ICC)" == "define"
651 EXTRACFLAGS += -Qstd=c99
653 .IF "$(USE_CPLUSPLUS)" == "define"
654 EXTRACFLAGS += $(CXX_FLAG)
656 CFLAGS = $(EXTRACFLAGS) $(INCLUDES) $(DEFINES) $(LOCDEFS) \
657 $(PCHFLAGS) $(OPTIMIZE)
658 LINK_FLAGS = -nologo -nodefaultlib $(LINK_DBG) \
659 -libpath:"$(INST_COREDIR)" \
660 -machine:$(PROCESSOR_ARCHITECTURE)
670 CFLAGS_O = $(CFLAGS) $(BUILDOPT)
672 .IF "$(PREMSVC80)" == "undef"
673 LINK_FLAGS += "/manifestdependency:type='Win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'"
675 RSC_FLAGS = -DINCLUDE_MANIFEST
679 # For XP support in >= VS 2013 (VC++ 12.0), subsystem is always in Config.pm
680 # LINK_FLAGS else subsystem is only needed for EXE building, not XS DLL building
681 # Console vs GUI makes no difference for DLLs, so use default for cleaner
683 .IF "$(CCTYPE)" == "MSVC120" || "$(CCTYPE)" == "MSVC120FREE" \
684 || "$(CCTYPE)" == "MSVC140" || "$(CCTYPE)" == "MSVC140FREE"
685 .IF "$(WIN64)" == "define"
686 LINK_FLAGS += -subsystem:console,"5.02"
688 LINK_FLAGS += -subsystem:console,"5.01"
692 .ELIF "$(CCTYPE)" != "GCC"
693 PRIV_LINK_FLAGS = -subsystem:console
696 BLINK_FLAGS = $(PRIV_LINK_FLAGS) $(LINK_FLAGS)
698 #################### do not edit below this line #######################
699 ############# NO USER-SERVICEABLE PARTS BEYOND THIS POINT ##############
701 # Some old dmakes (including Sarathy's one at
702 # http://search.cpan.org/CPAN/authors/id/G/GS/GSAR/dmake-4.1pl1-win32.zip)
703 # don't support logical OR (||) or logical AND (&&) in conditional
704 # expressions and hence don't process this makefile correctly. Determine
705 # whether this is the case so that we can give the user an error message.
722 .SUFFIXES : .c .i $(o) .dll $(a) .exe .rc .res
725 $(CC) -c $(null,$(<:d) $(NULL) -I$(<:d)) $(CFLAGS_O) $(OBJOUT_FLAG)$@ $(PDBOUT) $<
728 $(CC) -c $(null,$(<:d) $(NULL) -I$(<:d)) $(CFLAGS_O) -E $< >$@
734 .IF "$(CCTYPE)" == "GCC"
735 $(LINK32) -o $@ $(BLINK_FLAGS) $< $(LIBFILES)
736 $(IMPLIB) --input-def $(*B).def --output-lib $(*B).a $@
738 $(LINK32) -dll -implib:$(*B).lib -def:$(*B).def \
739 -out:$@ $(BLINK_FLAGS) $(LIBFILES) $< $(LIBPERL)
744 .IF "$(CCTYPE)" == "GCC"
745 $(RSC) --use-temp-file --include-dir=. --include-dir=.. -O COFF -D INCLUDE_MANIFEST -i $< -o $@
747 $(RSC) -i.. -DINCLUDE_MANIFEST $<
753 #do not put $(MINIPERL) as a dep/prereq in a rule, instead put $(HAVEMINIPERL)
754 #$(MINIPERL) is not a buildable target, use "dmake mp" if you want to just build
756 MINIPERL = ..\miniperl.exe
757 HAVEMINIPERL = ..\lib\buildcustomize.pl
759 PERLEXE = ..\perl.exe
760 WPERLEXE = ..\wperl.exe
761 PERLEXESTATIC = ..\perl-static.exe
762 STATICDIR = .\static.tmp
763 GLOBEXE = ..\perlglob.exe
764 CONFIGPM = ..\lib\Config.pm
765 GENUUDMAP = ..\generate_uudmap.exe
766 .IF "$(BUILD_STATIC)" == "define" || "$(ALL_STATIC)" == "define"
772 # Unicode data files generated by mktables
773 UNIDATAFILES = ..\lib\unicore\Decomposition.pl ..\lib\unicore\TestProp.pl \
774 ..\lib\unicore\CombiningClass.pl ..\lib\unicore\Name.pl \
775 ..\lib\unicore\UCD.pl ..\lib\unicore\Name.pm \
776 ..\lib\unicore\Heavy.pl ..\lib\unicore\mktables.lst
778 # Directories of Unicode data files generated by mktables
779 UNIDATADIR1 = ..\lib\unicore\To
780 UNIDATADIR2 = ..\lib\unicore\lib
782 PERLEXE_MANIFEST= .\perlexe.manifest
783 PERLEXE_ICO = .\perlexe.ico
784 PERLEXE_RES = .\perlexe.res
787 # Nominate a target which causes extensions to be re-built
788 # This used to be $(PERLEXE), but at worst it is the .dll that they depend
789 # on and really only the interface - i.e. the .def file used to export symbols
791 PERLDEP = $(PERLIMPLIB)
794 PL2BAT = bin\pl2bat.pl
818 ..\utils\zipdetails \
828 .IF "$(CCTYPE)" == "GCC"
830 CFGSH_TMPL = config.gc
831 CFGH_TMPL = config_H.gc
832 PERLIMPLIB = ..\libperl523$(a)
833 PERLSTATICLIB = ..\libperl523s$(a)
838 CFGSH_TMPL = config.vc
839 CFGH_TMPL = config_H.vc
844 # makedef.pl must be updated if this changes, and this should normally
845 # only change when there is an incompatible revision of the public API.
846 PERLIMPLIB *= ..\perl523$(a)
847 PERLEXPLIB *= ..\perl523.exp
848 PERLSTATICLIB *= ..\perl523s$(a)
849 PERLDLL = ..\perl523.dll
851 #EUMM on Win32 isn't ready for parallel make, so only allow this file to be parallel
852 #$(MAKE) will contain the -P that this makefile was called with, which is bad for
853 #make_ext.pl since upto jobs*jobs processes will run instead of jobs
854 #also any recipie containing $(MAKE) is special cased by dmake to execute recipes
855 #containing $(MAKE) when "dmake -n" is executed, which causes recursive calls
856 #to dmake, which means "dmake -n" is then broken as a diagnostic tool since
857 #"dmake -n" will invoke all the make_ext.pl scripts build things instead of
858 #showing what to build since $(MAKE) is an arg to make_ext.pl, not an invocation
859 #of the dmake process
862 XCOPY = xcopy /f /r /i /d /y
863 RCOPY = xcopy /f /r /i /e /d /y
907 EXTRACORE_SRC += perllib.c
909 .IF "$(PERL_MALLOC)" == "define"
910 EXTRACORE_SRC += ..\malloc.c
913 EXTRACORE_SRC += ..\perlio.c
959 .\include\sys\errno2.h \
960 .\include\sys\socket.h \
963 CORE_H = $(CORE_NOCFG_H) .\config.h ..\git_version.h
965 UUDMAP_H = ..\uudmap.h
966 BITCOUNT_H = ..\bitcount.h
967 MG_DATA_H = ..\mg_data.h
968 GENERATED_HEADERS = $(UUDMAP_H) $(BITCOUNT_H) $(MG_DATA_H)
970 MICROCORE_OBJ = $(MICROCORE_SRC:db:+$(o))
971 CORE_OBJ = $(MICROCORE_OBJ) $(EXTRACORE_SRC:db:+$(o))
972 WIN32_OBJ = $(WIN32_SRC:db:+$(o))
973 MINICORE_OBJ = $(MINIDIR)\{$(MICROCORE_OBJ:f) miniperlmain$(o) perlio$(o)}
974 MINIWIN32_OBJ = $(MINIDIR)\{$(WIN32_OBJ:f)}
975 MINI_OBJ = $(MINICORE_OBJ) $(MINIWIN32_OBJ)
976 DLL_OBJ = $(DYNALOADER)
977 GENUUDMAP_OBJ = $(GENUUDMAP:db:+$(o))
979 PERLDLL_OBJ = $(CORE_OBJ)
980 PERLEXE_OBJ = perlmain$(o)
981 PERLEXEST_OBJ = perlmainst$(o)
983 PERLDLL_OBJ += $(WIN32_OBJ) $(DLL_OBJ)
985 .IF "$(USE_SETARGV)" != ""
986 SETARGV_OBJ = setargv$(o)
989 .IF "$(ALL_STATIC)" == "define"
990 # some exclusions, unfortunately, until fixed:
991 # - MakeMaker isn't capable enough for SDBM_File (small bug)
992 STATIC_EXT = * !SDBM_File
994 # specify static extensions here, for example:
995 # (be sure to include Win32CORE to load Win32 on demand)
996 #STATIC_EXT = Win32CORE Cwd Compress/Raw/Zlib
997 STATIC_EXT = Win32CORE
1000 DYNALOADER = ..\DynaLoader$(o)
1002 # vars must be separated by "\t+~\t+", since we're using the tempfile
1003 # version of config_sh.pl (we were overflowing someone's buffer by
1004 # trying to fit them all on the command line)
1007 INST_TOP=$(INST_TOP) ~ \
1008 INST_VER=$(INST_VER) ~ \
1009 INST_ARCH=$(INST_ARCH) ~ \
1010 archname=$(ARCHNAME) ~ \
1013 ccflags=$(EXTRACFLAGS) $(OPTIMIZE) $(DEFINES) $(BUILDOPT) ~ \
1014 usecplusplus=$(USE_CPLUSPLUS) ~ \
1015 cf_email=$(EMAIL) ~ \
1016 d_mymalloc=$(PERL_MALLOC) ~ \
1017 libs=$(LIBFILES:f) ~ \
1018 incpath=$(CCINCDIR) ~ \
1019 libperl=$(PERLIMPLIB:f) ~ \
1020 libpth=$(CCLIBDIR);$(EXTRALIBDIRS) ~ \
1027 static_ext=$(STATIC_EXT) ~ \
1028 usethreads=$(USE_ITHREADS) ~ \
1029 useithreads=$(USE_ITHREADS) ~ \
1030 usemultiplicity=$(USE_MULTI) ~ \
1031 use64bitint=$(USE_64_BIT_INT) ~ \
1032 uselongdouble=$(USE_LONG_DOUBLE) ~ \
1033 uselargefiles=$(USE_LARGE_FILES) ~ \
1034 usesitecustomize=$(USE_SITECUST) ~ \
1035 LINK_FLAGS=$(LINK_FLAGS) ~ \
1036 optimize=$(OPTIMIZE) ~ \
1037 ARCHPREFIX=$(ARCHPREFIX) ~ \
1044 all : CHECKDMAKE rebasePE $(UNIDATAFILES) Extensions_nonxs $(PERLSTATIC)
1046 regnodes : ..\regnodes.h
1048 ..\regcomp$(o) : ..\regnodes.h ..\regcharclass.h
1050 ..\regexec$(o) : ..\regnodes.h ..\regcharclass.h
1052 reonly : regnodes .\config.h ..\git_version.h $(GLOBEXE) $(MINIPERL) \
1053 $(CONFIGPM) $(UNIDATAFILES) $(PERLEXE) \
1056 static: $(PERLEXESTATIC)
1058 #----------------------------------------------------------------
1061 .IF "$(NEWDMAKE)" == "define"
1064 @echo Your dmake doesn't support ^|^| or ^&^& in conditional expressions.
1065 @echo Please get the latest dmake from http://search.cpan.org/dist/dmake/
1069 $(GLOBEXE) : perlglob$(o)
1070 .IF "$(CCTYPE)" == "GCC"
1071 $(LINK32) $(BLINK_FLAGS) -mconsole -o $@ perlglob$(o) $(LIBFILES)
1073 $(LINK32) $(BLINK_FLAGS) $(LIBFILES) -out:$@ perlglob$(o) setargv$(o)
1077 perlglob$(o) : perlglob.c
1079 config.w32 : $(CFGSH_TMPL)
1080 copy $(CFGSH_TMPL) config.w32
1082 ..\git_version.h : $(HAVEMINIPERL) ..\make_patchnum.pl
1083 cd .. && miniperl -Ilib make_patchnum.pl
1085 # make sure that we recompile perl.c if the git version changes
1086 ..\perl$(o) : ..\git_version.h
1088 ..\config.sh : config.w32 $(HAVEMINIPERL) config_sh.PL FindExt.pm
1089 $(MINIPERL) -I..\lib config_sh.PL --cfgsh-option-file \
1090 $(mktmp $(CFG_VARS)) config.w32 > ..\config.sh
1092 # This target is for when changes to the main config.sh happen.
1093 # Edit config.gc, then make perl using GCC in a minimal configuration (i.e.
1094 # with MULTI, ITHREADS, IMP_SYS and LARGE_FILES off), then make
1095 # this target to regenerate config_H.gc.
1097 $(MINIPERL) -I..\lib config_sh.PL --cfgsh-option-file $(mktmp $(CFG_VARS)) \
1098 $(CFGSH_TMPL) > ..\config.sh
1099 $(MINIPERL) -I..\lib ..\configpm --chdir=..
1100 -del /f $(CFGH_TMPL)
1101 -$(MINIPERL) -I..\lib config_h.PL "ARCHPREFIX=$(ARCHPREFIX)"
1102 rename config.h $(CFGH_TMPL)
1104 $(CONFIGPM): ..\config.sh config_h.PL
1105 $(MINIPERL) -I..\lib ..\configpm --chdir=..
1106 $(XCOPY) ..\*.h $(COREDIR)\*.*
1107 $(XCOPY) *.h $(COREDIR)\*.*
1108 $(RCOPY) include $(COREDIR)\*.*
1109 $(MINIPERL) -I..\lib config_h.PL "ARCHPREFIX=$(ARCHPREFIX)" \
1110 || $(PLMAKE) $(MAKEMACROS) $(CONFIGPM) $(MAKEFILE)
1112 .\config.h : $(CONFIGPM)
1114 # See the comment in Makefile.SH explaining this seemingly cranky ordering
1115 ..\lib\buildcustomize.pl : $(MINI_OBJ) ..\write_buildcustomize.pl
1116 .IF "$(CCTYPE)" == "GCC"
1117 $(LINK32) -v -mconsole -o $(MINIPERL) $(BLINK_FLAGS) \
1118 $(mktmp $(LKPRE) $(MINI_OBJ) $(LIBFILES) $(LKPOST))
1120 $(LINK32) -out:$(MINIPERL) $(BLINK_FLAGS) \
1121 @$(mktmp $(DELAYLOAD) $(LIBFILES) $(MINI_OBJ))
1122 $(EMBED_EXE_MANI:s/$@/$(MINIPERL)/)
1124 $(MINIPERL) -I..\lib -f ..\write_buildcustomize.pl ..
1126 #convinence target, get a working miniperl
1129 $(MINIDIR)\.exists : $(CFGH_TMPL)
1130 if not exist "$(MINIDIR)" mkdir "$(MINIDIR)"
1132 # Copy the template config.h and set configurables at the end of it
1133 # as per the options chosen and compiler used.
1134 # Note: This config.h is only used to build miniperl.exe anyway, but
1135 # it's as well to have its options correct to be sure that it builds
1136 # and so that it's "-V" options are correct for use by makedef.pl. The
1137 # real config.h used to build perl.exe is generated from the top-level
1138 # config_h.SH by config_h.PL (run by miniperl.exe).
1140 # MINIDIR generates config.h so miniperl.exe is not rebuilt when the 2nd
1141 # config.h is generated in CONFIGPM target, see also the comments for $(MINI_OBJ).
1142 -if exist config.h del /f config.h
1143 copy $(CFGH_TMPL) config.h
1145 echo #ifndef _config_h_footer_&& \
1146 echo #define _config_h_footer_&& \
1147 echo #undef Off_t&& \
1148 echo #undef LSEEKSIZE&& \
1149 echo #undef Off_t_size&& \
1150 echo #undef PTRSIZE&& \
1151 echo #undef SSize_t&& \
1152 echo #undef HAS_ATOLL&& \
1153 echo #undef HAS_STRTOLL&& \
1154 echo #undef HAS_STRTOULL&& \
1155 echo #undef Size_t_size&& \
1156 echo #undef IVTYPE&& \
1157 echo #undef UVTYPE&& \
1158 echo #undef IVSIZE&& \
1159 echo #undef UVSIZE&& \
1160 echo #undef NV_PRESERVES_UV&& \
1161 echo #undef NV_PRESERVES_UV_BITS&& \
1162 echo #undef IVdf&& \
1163 echo #undef UVuf&& \
1164 echo #undef UVof&& \
1165 echo #undef UVxf&& \
1166 echo #undef UVXf&& \
1167 echo #undef USE_64_BIT_INT&& \
1168 echo #undef Gconvert&& \
1169 echo #undef HAS_FREXPL&& \
1170 echo #undef HAS_ISNANL&& \
1171 echo #undef HAS_MODFL&& \
1172 echo #undef HAS_MODFL_PROTO&& \
1173 echo #undef HAS_SQRTL&& \
1174 echo #undef HAS_STRTOLD&& \
1175 echo #undef PERL_PRIfldbl&& \
1176 echo #undef PERL_PRIgldbl&& \
1177 echo #undef PERL_PRIeldbl&& \
1178 echo #undef PERL_SCNfldbl&& \
1179 echo #undef NVTYPE&& \
1180 echo #undef NVSIZE&& \
1181 echo #undef LONG_DOUBLESIZE&& \
1182 echo #undef NV_OVERFLOWS_INTEGERS_AT&& \
1183 echo #undef NVef&& \
1184 echo #undef NVff&& \
1185 echo #undef NVgf&& \
1186 echo #undef USE_LONG_DOUBLE&& \
1187 echo #undef USE_CPLUSPLUS)>> config.h
1188 .IF "$(USE_LARGE_FILES)"=="define"
1189 @(echo #define Off_t $(INT64)&& \
1190 echo #define LSEEKSIZE ^8&& \
1191 echo #define Off_t_size ^8)>> config.h
1193 @(echo #define Off_t long&& \
1194 echo #define LSEEKSIZE ^4&& \
1195 echo #define Off_t_size ^4)>> config.h
1197 .IF "$(WIN64)"=="define"
1198 @(echo #define PTRSIZE ^8&& \
1199 echo #define SSize_t $(INT64)&& \
1200 echo #define HAS_ATOLL&& \
1201 echo #define HAS_STRTOLL&& \
1202 echo #define HAS_STRTOULL&& \
1203 echo #define Size_t_size ^8)>> config.h
1205 @(echo #define PTRSIZE ^4&& \
1206 echo #define SSize_t int&& \
1207 echo #undef HAS_ATOLL&& \
1208 echo #undef HAS_STRTOLL&& \
1209 echo #undef HAS_STRTOULL&& \
1210 echo #define Size_t_size ^4)>> config.h
1212 .IF "$(USE_64_BIT_INT)"=="define"
1213 @(echo #define IVTYPE $(INT64)&& \
1214 echo #define UVTYPE unsigned $(INT64)&& \
1215 echo #define IVSIZE ^8&& \
1216 echo #define UVSIZE ^8)>> config.h
1217 .IF "$(USE_LONG_DOUBLE)"=="define"
1218 @(echo #define NV_PRESERVES_UV&& \
1219 echo #define NV_PRESERVES_UV_BITS 64)>> config.h
1221 @(echo #undef NV_PRESERVES_UV&& \
1222 echo #define NV_PRESERVES_UV_BITS 53)>> config.h
1224 @(echo #define IVdf "I64d"&& \
1225 echo #define UVuf "I64u"&& \
1226 echo #define UVof "I64o"&& \
1227 echo #define UVxf "I64x"&& \
1228 echo #define UVXf "I64X"&& \
1229 echo #define USE_64_BIT_INT)>> config.h
1231 @(echo #define IVTYPE long&& \
1232 echo #define UVTYPE unsigned long&& \
1233 echo #define IVSIZE ^4&& \
1234 echo #define UVSIZE ^4&& \
1235 echo #define NV_PRESERVES_UV&& \
1236 echo #define NV_PRESERVES_UV_BITS 32&& \
1237 echo #define IVdf "ld"&& \
1238 echo #define UVuf "lu"&& \
1239 echo #define UVof "lo"&& \
1240 echo #define UVxf "lx"&& \
1241 echo #define UVXf "lX"&& \
1242 echo #undef USE_64_BIT_INT)>> config.h
1244 .IF "$(USE_LONG_DOUBLE)"=="define"
1245 @(echo #define Gconvert^(x,n,t,b^) sprintf^(^(b^),"%.*""Lg",^(n^),^(x^)^)&& \
1246 echo #define HAS_FREXPL&& \
1247 echo #define HAS_ISNANL&& \
1248 echo #define HAS_MODFL&& \
1249 echo #define HAS_MODFL_PROTO&& \
1250 echo #define HAS_SQRTL&& \
1251 echo #define HAS_STRTOLD&& \
1252 echo #define PERL_PRIfldbl "Lf"&& \
1253 echo #define PERL_PRIgldbl "Lg"&& \
1254 echo #define PERL_PRIeldbl "Le"&& \
1255 echo #define PERL_SCNfldbl "Lf"&& \
1256 echo #define NVTYPE long double)>> config.h
1257 .IF "$(WIN64)"=="define"
1258 @(echo #define NVSIZE ^16&& \
1259 echo #define LONG_DOUBLESIZE ^16)>> config.h
1261 @(echo #define NVSIZE ^12&& \
1262 echo #define LONG_DOUBLESIZE ^12)>> config.h
1264 @(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&& \
1265 echo #define NVef "Le"&& \
1266 echo #define NVff "Lf"&& \
1267 echo #define NVgf "Lg"&& \
1268 echo #define USE_LONG_DOUBLE)>> config.h
1270 @(echo #define Gconvert^(x,n,t,b^) sprintf^(^(b^),"%.*g",^(n^),^(x^)^)&& \
1271 echo #undef HAS_FREXPL&& \
1272 echo #undef HAS_ISNANL&& \
1273 echo #undef HAS_MODFL&& \
1274 echo #undef HAS_MODFL_PROTO&& \
1275 echo #undef HAS_SQRTL&& \
1276 echo #undef HAS_STRTOLD&& \
1277 echo #undef PERL_PRIfldbl&& \
1278 echo #undef PERL_PRIgldbl&& \
1279 echo #undef PERL_PRIeldbl&& \
1280 echo #undef PERL_SCNfldbl&& \
1281 echo #define NVTYPE double&& \
1282 echo #define NVSIZE ^8&& \
1283 echo #define LONG_DOUBLESIZE ^8&& \
1284 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&& \
1285 echo #define NVef "e"&& \
1286 echo #define NVff "f"&& \
1287 echo #define NVgf "g"&& \
1288 echo #undef USE_LONG_DOUBLE)>> config.h
1290 .IF "$(USE_CPLUSPLUS)"=="define"
1291 @(echo #define USE_CPLUSPLUS&& \
1292 echo #endif)>> config.h
1294 @(echo #undef USE_CPLUSPLUS&& \
1295 echo #endif)>> config.h
1297 #separate line since this is sentinal that this target is done
1298 rem. > $(MINIDIR)\.exists
1300 $(MINICORE_OBJ) : $(CORE_NOCFG_H)
1301 $(CC) -c $(CFLAGS) $(MINIBUILDOPT) -DPERL_EXTERNAL_GLOB -DPERL_IS_MINIPERL $(OBJOUT_FLAG)$@ $(PDBOUT) ..\$(*B).c
1303 $(MINIWIN32_OBJ) : $(CORE_NOCFG_H)
1304 $(CC) -c $(CFLAGS) $(MINIBUILDOPT) -DPERL_IS_MINIPERL $(OBJOUT_FLAG)$@ $(PDBOUT) $(*B).c
1306 # -DPERL_IMPLICIT_SYS needs C++ for perllib.c
1307 # rules wrapped in .IFs break Win9X build (we end up with unbalanced []s unless
1308 # unless the .IF is true), so instead we use a .ELSE with the default.
1309 # This is the only file that depends on perlhost.h, vmem.h, and vdir.h
1311 perllib$(o) : perllib.c perllibst.h .\perlhost.h .\vdir.h .\vmem.h
1312 .IF "$(USE_IMP_SYS)" == "define"
1313 $(CC) -c -I. $(CFLAGS_O) $(CXX_FLAG) $(OBJOUT_FLAG)$@ $(PDBOUT) perllib.c
1315 $(CC) -c -I. $(CFLAGS_O) $(OBJOUT_FLAG)$@ $(PDBOUT) perllib.c
1318 # 1. we don't want to rebuild miniperl.exe when config.h changes
1319 # 2. we don't want to rebuild miniperl.exe with non-default config.h
1320 # 3. we can't have miniperl.exe depend on git_version.h, as miniperl creates it
1321 $(MINI_OBJ) : $(MINIDIR)\.exists $(CORE_NOCFG_H)
1323 $(WIN32_OBJ) : $(CORE_H)
1325 $(CORE_OBJ) : $(CORE_H)
1327 $(DLL_OBJ) : $(CORE_H)
1330 perllibst.h : $(HAVEMINIPERL) $(CONFIGPM) create_perllibst_h.pl
1331 $(MINIPERL) -I..\lib create_perllibst_h.pl
1333 perldll.def : $(HAVEMINIPERL) $(CONFIGPM) ..\embed.fnc ..\makedef.pl
1334 $(MINIPERL) -I..\lib -w ..\makedef.pl PLATFORM=win32 $(OPTIMIZE) $(DEFINES) \
1335 $(BUILDOPT) CCTYPE=$(CCTYPE) TARG_DIR=..\ > perldll.def
1337 $(PERLIMPLIB) : perldll.def
1338 .IF "$(CCTYPE)" == "GCC"
1339 $(IMPLIB) -k -d perldll.def -l $(PERLIMPLIB)
1341 lib -def:perldll.def -machine:$(ARCHITECTURE) /OUT:$(PERLIMPLIB)
1343 $(XCOPY) $(PERLIMPLIB) $(COREDIR)
1345 #PERLEXPLIB is built in PERLIMPLIB
1346 $(PERLEXPLIB): $(PERLIMPLIB)
1348 $(PERLDLL): $(PERLEXPLIB) $(PERLDLL_OBJ) $(PERLDLL_RES) Extensions_static
1349 .IF "$(CCTYPE)" == "GCC"
1350 $(LINK32) -mdll -o $@ -Wl,--base-file -Wl,perl.base $(BLINK_FLAGS) \
1351 $(mktmp $(LKPRE) $(PERLDLL_OBJ) \
1352 $(shell @type Extensions_static) \
1353 $(LIBFILES) $(LKPOST))
1354 $(IMPLIB) --output-lib $(PERLIMPLIB) \
1355 --dllname $(PERLDLL:b).dll \
1357 --base-file perl.base \
1358 --output-exp perl.exp
1359 $(LINK32) -mdll -o $@ $(BLINK_FLAGS) \
1360 $(mktmp $(LKPRE) $(PERLDLL_OBJ) \
1361 $(shell @type Extensions_static) \
1362 $(LIBFILES) perl.exp $(LKPOST))
1364 $(LINK32) -dll -out:$@ $(BLINK_FLAGS) \
1365 @Extensions_static \
1366 @$(mktmp -base:0x28000000 $(DELAYLOAD) $(LIBFILES) \
1367 $(PERLDLL_RES) $(PERLDLL_OBJ) $(PERLEXPLIB))
1371 $(PERLSTATICLIB): $(PERLDLL_OBJ) Extensions_static
1372 .IF "$(CCTYPE)" == "GCC"
1373 $(LIB32) $(LIB_FLAGS) $@ $(PERLDLL_OBJ)
1374 if exist $(STATICDIR) rmdir /s /q $(STATICDIR)
1375 for %i in ($(shell @type Extensions_static)) do \
1376 @mkdir $(STATICDIR) && cd $(STATICDIR) && \
1377 $(ARCHPREFIX)ar x ..\%i && \
1378 $(ARCHPREFIX)ar q ..\$@ *$(o) && \
1379 cd .. && rmdir /s /q $(STATICDIR)
1381 $(LIB32) $(LIB_FLAGS) -out:$@ @Extensions_static \
1382 @$(mktmp $(PERLDLL_OBJ))
1384 $(XCOPY) $(PERLSTATICLIB) $(COREDIR)
1386 $(PERLEXE_RES): perlexe.rc $(PERLEXE_MANIFEST) $(PERLEXE_ICO)
1388 $(MINIDIR)\globals$(o) : $(GENERATED_HEADERS)
1390 $(UUDMAP_H) $(MG_DATA_H) : $(BITCOUNT_H)
1392 $(BITCOUNT_H) : $(GENUUDMAP)
1393 $(GENUUDMAP) $(GENERATED_HEADERS)
1395 $(GENUUDMAP_OBJ) : ..\mg_raw.h
1397 $(GENUUDMAP) : $(GENUUDMAP_OBJ)
1398 .IF "$(CCTYPE)" == "GCC"
1399 $(LINK32) -v -o $@ $(BLINK_FLAGS) \
1400 $(mktmp $(LKPRE) $(GENUUDMAP_OBJ) $(LIBFILES) $(LKPOST))
1402 $(LINK32) -out:$@ $(BLINK_FLAGS) @$(mktmp $(LIBFILES) $(GENUUDMAP_OBJ))
1406 perlmain.c : runperl.c
1407 copy runperl.c perlmain.c
1409 perlmain$(o) : $(CONFIGPM) perlmain.c
1410 $(CC) $(CFLAGS_O:s,-DPERLDLL,-UPERLDLL,) $(OBJOUT_FLAG)$@ $(PDBOUT) -c perlmain.c
1412 perlmainst.c : runperl.c
1413 copy runperl.c perlmainst.c
1415 perlmainst$(o) : $(CONFIGPM) perlmainst.c
1416 $(CC) $(CFLAGS_O) $(OBJOUT_FLAG)$@ $(PDBOUT) -c perlmainst.c
1418 $(PERLEXE): $(CONFIGPM) $(PERLEXE_OBJ) $(PERLEXE_RES) $(PERLIMPLIB)
1419 .IF "$(CCTYPE)" == "GCC"
1420 $(LINK32) -mconsole -o $@ $(BLINK_FLAGS) \
1421 $(PERLEXE_OBJ) $(PERLEXE_RES) $(PERLIMPLIB) $(LIBFILES)
1423 $(LINK32) -out:$@ $(BLINK_FLAGS) \
1424 $(PERLEXE_OBJ) $(PERLEXE_RES) $(PERLIMPLIB) $(LIBFILES) $(SETARGV_OBJ)
1427 copy $(PERLEXE) $(WPERLEXE)
1428 $(MINIPERL) -I..\lib bin\exetype.pl $(WPERLEXE) WINDOWS
1430 $(PERLEXESTATIC): $(PERLSTATICLIB) $(CONFIGPM) $(PERLEXEST_OBJ) $(PERLEXE_RES)
1431 .IF "$(CCTYPE)" == "GCC"
1432 $(LINK32) -mconsole -o $@ $(BLINK_FLAGS) \
1433 $(PERLEXEST_OBJ) $(PERLEXE_RES) $(PERLSTATICLIB) $(LIBFILES)
1435 $(LINK32) -out:$@ $(BLINK_FLAGS) \
1436 $(PERLEXEST_OBJ) $(PERLEXE_RES) $(PERLSTATICLIB) $(LIBFILES) $(SETARGV_OBJ)
1440 #-------------------------------------------------------------------------------
1441 # There's no direct way to mark a dependency on
1442 # DynaLoader.pm, so this will have to do
1443 Extensions : ..\make_ext.pl ..\lib\buildcustomize.pl $(PERLDEP) $(CONFIGPM) $(DYNALOADER)
1444 $(XCOPY) ..\*.h $(COREDIR)\*.*
1445 if not exist $(COREDIR)\ppport.h rem. > $(COREDIR)\ppport.h
1446 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(PLMAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --dynamic
1448 Extensions_reonly : ..\make_ext.pl ..\lib\buildcustomize.pl $(PERLDEP) $(CONFIGPM) $(DYNALOADER)
1449 $(XCOPY) ..\*.h $(COREDIR)\*.*
1450 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(PLMAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --dynamic +re
1452 Extensions_static : ..\make_ext.pl ..\lib\buildcustomize.pl list_static_libs.pl $(CONFIGPM)
1453 $(XCOPY) ..\*.h $(COREDIR)\*.*
1454 if not exist $(COREDIR)\ppport.h rem. > $(COREDIR)\ppport.h
1455 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(PLMAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --static
1456 $(MINIPERL) -I..\lib list_static_libs.pl > Extensions_static
1458 Extensions_nonxs : ..\make_ext.pl ..\lib\buildcustomize.pl $(CONFIGPM) ..\pod\perlfunc.pod
1459 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(PLMAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --nonxs !libs
1461 #lib must be built, it can't be buildcustomize.pl-ed, and is required for XS building
1462 $(DYNALOADER) : ..\make_ext.pl ..\lib\buildcustomize.pl $(CONFIGPM)
1463 $(XCOPY) ..\*.h $(COREDIR)\*.*
1464 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(PLMAKE)" --dir=$(EXTDIR) --dir=$(DISTDIR) --dynaloader lib
1467 -if exist $(MINIPERL) $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(PLMAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --all --target=clean
1469 Extensions_realclean :
1470 -if exist $(MINIPERL) $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(PLMAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --all --target=realclean
1472 # all PE files need to be built by the time this target runs, PP files can still
1473 # be running in parallel like UNIDATAFILES, this target a placeholder for the
1475 .IF "$(BUILD_STATIC)"=="define"
1476 rebasePE : Extensions $(PERLDLL) $(PERLEXE) $(GLOBEXE) $(PERLEXESTATIC)
1478 rebasePE : Extensions $(PERLDLL) $(PERLEXE) $(GLOBEXE)
1482 #-------------------------------------------------------------------------------
1485 doc: $(PERLEXE) $(PERLDLL) ..\pod\perltoc.pod
1486 $(PERLEXE) ..\installhtml --podroot=.. --htmldir=$(HTMLDIR) \
1487 --podpath=pod:lib:utils --htmlroot="file://$(INST_HTML:s,:,|,)"\
1490 ..\utils\Makefile: $(CONFIGPM) ..\utils\Makefile.PL
1491 $(MINIPERL) -I..\lib ..\utils\Makefile.PL ..
1493 # Note that this next section is parsed (and regenerated) by pod/buildtoc
1494 # so please check that script before making structural changes here
1495 utils: $(HAVEMINIPERL) ..\utils\Makefile
1496 cd ..\utils && $(PLMAKE) PERL=$(MINIPERL)
1497 copy ..\README.aix ..\pod\perlaix.pod
1498 copy ..\README.amiga ..\pod\perlamiga.pod
1499 copy ..\README.android ..\pod\perlandroid.pod
1500 copy ..\README.bs2000 ..\pod\perlbs2000.pod
1501 copy ..\README.ce ..\pod\perlce.pod
1502 copy ..\README.cn ..\pod\perlcn.pod
1503 copy ..\README.cygwin ..\pod\perlcygwin.pod
1504 copy ..\README.dos ..\pod\perldos.pod
1505 copy ..\README.freebsd ..\pod\perlfreebsd.pod
1506 copy ..\README.haiku ..\pod\perlhaiku.pod
1507 copy ..\README.hpux ..\pod\perlhpux.pod
1508 copy ..\README.hurd ..\pod\perlhurd.pod
1509 copy ..\README.irix ..\pod\perlirix.pod
1510 copy ..\README.jp ..\pod\perljp.pod
1511 copy ..\README.ko ..\pod\perlko.pod
1512 copy ..\README.linux ..\pod\perllinux.pod
1513 copy ..\README.macos ..\pod\perlmacos.pod
1514 copy ..\README.macosx ..\pod\perlmacosx.pod
1515 copy ..\README.netware ..\pod\perlnetware.pod
1516 copy ..\README.openbsd ..\pod\perlopenbsd.pod
1517 copy ..\README.os2 ..\pod\perlos2.pod
1518 copy ..\README.os390 ..\pod\perlos390.pod
1519 copy ..\README.os400 ..\pod\perlos400.pod
1520 copy ..\README.plan9 ..\pod\perlplan9.pod
1521 copy ..\README.qnx ..\pod\perlqnx.pod
1522 copy ..\README.riscos ..\pod\perlriscos.pod
1523 copy ..\README.solaris ..\pod\perlsolaris.pod
1524 copy ..\README.symbian ..\pod\perlsymbian.pod
1525 copy ..\README.synology ..\pod\perlsynology.pod
1526 copy ..\README.tru64 ..\pod\perltru64.pod
1527 copy ..\README.tw ..\pod\perltw.pod
1528 copy ..\README.vos ..\pod\perlvos.pod
1529 copy ..\README.win32 ..\pod\perlwin32.pod
1530 copy ..\pod\perldelta.pod ..\pod\perl5233delta.pod
1531 $(MINIPERL) -I..\lib $(PL2BAT) $(UTILS)
1532 $(MINIPERL) -I..\lib ..\autodoc.pl ..
1533 $(MINIPERL) -I..\lib ..\pod\perlmodlib.PL -q ..
1535 ..\pod\perltoc.pod: $(PERLEXE) $(PERLDLL) Extensions Extensions_nonxs ..\pod\perluniprops.pod utils
1536 $(PERLEXE) -f ..\pod\buildtoc -q
1538 # Note that the pod cleanup in this next section is parsed (and regenerated
1539 # by pod/buildtoc so please check that script before making changes here
1541 distclean: realclean
1542 -del /f $(MINIPERL) $(PERLEXE) $(PERLDLL) $(GLOBEXE) \
1543 $(PERLIMPLIB) ..\miniperl$(a) $(PERLEXESTATIC) $(PERLSTATICLIB)
1544 -del /f $(LIBDIR)\Encode.pm $(LIBDIR)\encoding.pm $(LIBDIR)\Errno.pm
1545 -del /f $(LIBDIR)\Config.pod $(LIBDIR)\POSIX.pod $(LIBDIR)\threads.pm
1546 -del /f $(LIBDIR)\.exists $(LIBDIR)\attributes.pm $(LIBDIR)\DynaLoader.pm
1547 -del /f $(LIBDIR)\Fcntl.pm $(LIBDIR)\IO.pm $(LIBDIR)\Opcode.pm
1548 -del /f $(LIBDIR)\ops.pm $(LIBDIR)\Safe.pm
1549 -del /f $(LIBDIR)\SDBM_File.pm $(LIBDIR)\Socket.pm $(LIBDIR)\POSIX.pm
1550 -del /f $(LIBDIR)\B.pm $(LIBDIR)\O.pm $(LIBDIR)\re.pm
1551 -del /f $(LIBDIR)\File\Glob.pm
1552 -del /f $(LIBDIR)\Storable.pm
1553 -del /f $(LIBDIR)\Sys\Hostname.pm
1554 -del /f $(LIBDIR)\Time\HiRes.pm
1555 -del /f $(LIBDIR)\Unicode\Normalize.pm
1556 -del /f $(LIBDIR)\Math\BigInt\FastCalc.pm
1557 -del /f $(LIBDIR)\Win32.pm
1558 -del /f $(LIBDIR)\Win32CORE.pm
1559 -del /f $(LIBDIR)\Win32API\File.pm
1560 -del /f $(LIBDIR)\Win32API\File\cFile.pc
1561 -del /f $(LIBDIR)\buildcustomize.pl
1562 -del /f $(DISTDIR)\XSLoader\XSLoader.pm
1564 -if exist $(LIBDIR)\Amiga rmdir /s /q $(LIBDIR)\Amiga
1565 -if exist $(LIBDIR)\App rmdir /s /q $(LIBDIR)\App
1566 -if exist $(LIBDIR)\Archive rmdir /s /q $(LIBDIR)\Archive
1567 -if exist $(LIBDIR)\Attribute rmdir /s /q $(LIBDIR)\Attribute
1568 -if exist $(LIBDIR)\autodie rmdir /s /q $(LIBDIR)\autodie
1569 -if exist $(LIBDIR)\Carp rmdir /s /q $(LIBDIR)\Carp
1570 -if exist $(LIBDIR)\Compress rmdir /s /q $(LIBDIR)\Compress
1571 -if exist $(LIBDIR)\Config\Perl rmdir /s /q $(LIBDIR)\Config\Perl
1572 -if exist $(LIBDIR)\CPAN rmdir /s /q $(LIBDIR)\CPAN
1573 -if exist $(LIBDIR)\Data rmdir /s /q $(LIBDIR)\Data
1574 -if exist $(LIBDIR)\Devel rmdir /s /q $(LIBDIR)\Devel
1575 -if exist $(LIBDIR)\Digest rmdir /s /q $(LIBDIR)\Digest
1576 -if exist $(LIBDIR)\Encode rmdir /s /q $(LIBDIR)\Encode
1577 -if exist $(LIBDIR)\encoding rmdir /s /q $(LIBDIR)\encoding
1578 -if exist $(LIBDIR)\Exporter rmdir /s /q $(LIBDIR)\Exporter
1579 -if exist $(LIBDIR)\ExtUtils\CBuilder rmdir /s /q $(LIBDIR)\ExtUtils\CBuilder
1580 -if exist $(LIBDIR)\ExtUtils\Command rmdir /s /q $(LIBDIR)\ExtUtils\Command
1581 -if exist $(LIBDIR)\ExtUtils\Constant rmdir /s /q $(LIBDIR)\ExtUtils\Constant
1582 -if exist $(LIBDIR)\ExtUtils\Liblist rmdir /s /q $(LIBDIR)\ExtUtils\Liblist
1583 -if exist $(LIBDIR)\ExtUtils\MakeMaker rmdir /s /q $(LIBDIR)\ExtUtils\MakeMaker
1584 -if exist $(LIBDIR)\ExtUtils\ParseXS rmdir /s /q $(LIBDIR)\ExtUtils\ParseXS
1585 -if exist $(LIBDIR)\ExtUtils\Typemaps rmdir /s /q $(LIBDIR)\ExtUtils\Typemaps
1586 -if exist $(LIBDIR)\File\Spec rmdir /s /q $(LIBDIR)\File\Spec
1587 -if exist $(LIBDIR)\Filter rmdir /s /q $(LIBDIR)\Filter
1588 -if exist $(LIBDIR)\Hash rmdir /s /q $(LIBDIR)\Hash
1589 -if exist $(LIBDIR)\HTTP rmdir /s /q $(LIBDIR)\HTTP
1590 -if exist $(LIBDIR)\I18N rmdir /s /q $(LIBDIR)\I18N
1591 -if exist $(LIBDIR)\IO rmdir /s /q $(LIBDIR)\IO
1592 -if exist $(LIBDIR)\IPC rmdir /s /q $(LIBDIR)\IPC
1593 -if exist $(LIBDIR)\JSON rmdir /s /q $(LIBDIR)\JSON
1594 -if exist $(LIBDIR)\List rmdir /s /q $(LIBDIR)\List
1595 -if exist $(LIBDIR)\Locale rmdir /s /q $(LIBDIR)\Locale
1596 -if exist $(LIBDIR)\Math rmdir /s /q $(LIBDIR)\Math
1597 -if exist $(LIBDIR)\Memoize rmdir /s /q $(LIBDIR)\Memoize
1598 -if exist $(LIBDIR)\MIME rmdir /s /q $(LIBDIR)\MIME
1599 -if exist $(LIBDIR)\Module rmdir /s /q $(LIBDIR)\Module
1600 -if exist $(LIBDIR)\Net\FTP rmdir /s /q $(LIBDIR)\Net\FTP
1601 -if exist $(LIBDIR)\Params rmdir /s /q $(LIBDIR)\Params
1602 -if exist $(LIBDIR)\Parse rmdir /s /q $(LIBDIR)\Parse
1603 -if exist $(LIBDIR)\Perl rmdir /s /q $(LIBDIR)\Perl
1604 -if exist $(LIBDIR)\PerlIO rmdir /s /q $(LIBDIR)\PerlIO
1605 -if exist $(LIBDIR)\Pod\Perldoc rmdir /s /q $(LIBDIR)\Pod\Perldoc
1606 -if exist $(LIBDIR)\Pod\Simple rmdir /s /q $(LIBDIR)\Pod\Simple
1607 -if exist $(LIBDIR)\Pod\Text rmdir /s /q $(LIBDIR)\Pod\Text
1608 -if exist $(LIBDIR)\Scalar rmdir /s /q $(LIBDIR)\Scalar
1609 -if exist $(LIBDIR)\Search rmdir /s /q $(LIBDIR)\Search
1610 -if exist $(LIBDIR)\Sub rmdir /s /q $(LIBDIR)\Sub
1611 -if exist $(LIBDIR)\Sys rmdir /s /q $(LIBDIR)\Sys
1612 -if exist $(LIBDIR)\TAP rmdir /s /q $(LIBDIR)\TAP
1613 -if exist $(LIBDIR)\Term rmdir /s /q $(LIBDIR)\Term
1614 -if exist $(LIBDIR)\Test rmdir /s /q $(LIBDIR)\Test
1615 -if exist $(LIBDIR)\Text rmdir /s /q $(LIBDIR)\Text
1616 -if exist $(LIBDIR)\Thread rmdir /s /q $(LIBDIR)\Thread
1617 -if exist $(LIBDIR)\threads rmdir /s /q $(LIBDIR)\threads
1618 -if exist $(LIBDIR)\Tie\Hash rmdir /s /q $(LIBDIR)\Tie\Hash
1619 -if exist $(LIBDIR)\Unicode\Collate rmdir /s /q $(LIBDIR)\Unicode\Collate
1620 -if exist $(LIBDIR)\Unicode\Collate\Locale rmdir /s /q $(LIBDIR)\Unicode\Collate\Locale
1621 -if exist $(LIBDIR)\version rmdir /s /q $(LIBDIR)\version
1622 -if exist $(LIBDIR)\VMS rmdir /s /q $(LIBDIR)\VMS
1623 -if exist $(LIBDIR)\Win32API rmdir /s /q $(LIBDIR)\Win32API
1624 -if exist $(LIBDIR)\XS rmdir /s /q $(LIBDIR)\XS
1625 -cd $(PODDIR) && del /f *.html *.bat roffitall \
1626 perl5233delta.pod perlaix.pod perlamiga.pod perlandroid.pod \
1627 perlapi.pod perlbs2000.pod perlce.pod perlcn.pod perlcygwin.pod \
1628 perldos.pod perlfreebsd.pod perlhaiku.pod perlhpux.pod \
1629 perlhurd.pod perlintern.pod perlirix.pod perljp.pod perlko.pod \
1630 perllinux.pod perlmacos.pod perlmacosx.pod perlmodlib.pod \
1631 perlnetware.pod perlopenbsd.pod perlos2.pod perlos390.pod \
1632 perlos400.pod perlplan9.pod perlqnx.pod perlriscos.pod \
1633 perlsolaris.pod perlsymbian.pod perlsynology.pod perltoc.pod \
1634 perltru64.pod perltw.pod perluniprops.pod perlvos.pod \
1636 -cd ..\utils && del /f h2ph splain perlbug pl2pm c2ph pstruct h2xs \
1637 perldoc perlivp libnetcfg enc2xs encguess piconv cpan *.bat \
1638 xsubpp pod2html instmodsh json_pp prove ptar ptardiff ptargrep shasum corelist zipdetails
1639 -del /f ..\config.sh perlmain.c dlutils.c config.h.new \
1642 -del /f ..\lib\Config_git.pl
1645 -del /f $(PERLEXE_RES) perl.base
1646 -cd .. && del /s *$(a) *.map *.pdb *.ilk *.bs *$(o) .exists pm_to_blib ppport.h
1647 -cd $(EXTDIR) && del /s *.def Makefile Makefile.old
1648 -cd $(DISTDIR) && del /s *.def Makefile Makefile.old
1649 -cd $(CPANDIR) && del /s *.def Makefile Makefile.old
1650 -del /s ..\utils\Makefile
1651 -if exist $(AUTODIR) rmdir /s /q $(AUTODIR)
1652 -if exist $(COREDIR) rmdir /s /q $(COREDIR)
1653 -if exist pod2htmd.tmp del pod2htmd.tmp
1654 -if exist $(HTMLDIR) rmdir /s /q $(HTMLDIR)
1655 -del /f ..\t\test_state
1657 install : all installbare installhtml
1659 installbare : utils ..\pod\perltoc.pod
1660 $(PERLEXE) ..\installperl
1661 attrib -r $(INST_COREDIR)\ppport.h && del $(INST_COREDIR)\ppport.h
1662 if exist $(WPERLEXE) $(XCOPY) $(WPERLEXE) $(INST_BIN)\*.*
1663 if exist $(PERLEXESTATIC) $(XCOPY) $(PERLEXESTATIC) $(INST_BIN)\*.*
1664 $(XCOPY) $(GLOBEXE) $(INST_BIN)\*.*
1665 if exist ..\perl*.pdb $(XCOPY) ..\perl*.pdb $(INST_BIN)\*.*
1666 $(XCOPY) bin\*.bat $(INST_SCRIPT)\*.*
1669 $(RCOPY) $(HTMLDIR)\*.* $(INST_HTML)\*.*
1671 inst_lib : $(CONFIGPM)
1672 $(RCOPY) ..\lib $(INST_LIB)\*.*
1674 $(UNIDATAFILES) ..\pod\perluniprops.pod .UPDATEALL : $(CONFIGPM) ..\lib\unicore\mktables
1675 cd ..\lib\unicore && \
1676 ..\$(MINIPERL) -I.. mktables -P ..\..\pod -maketest -makelist -p
1678 minitest : .\config.h $(HAVEMINIPERL) ..\git_version.h $(GLOBEXE) $(CONFIGPM) $(UNIDATAFILES) $(TESTPREPGCC)
1679 $(XCOPY) $(MINIPERL) ..\t\$(NULL)
1680 if exist ..\t\perl.exe del /f ..\t\perl.exe
1681 rename ..\t\miniperl.exe perl.exe
1682 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1683 # Note this perl.exe is miniperl
1684 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
1686 test-prep : all utils ..\pod\perltoc.pod $(TESTPREPGCC)
1687 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1688 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1689 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1691 # If building with gcc versions 4.x.x or greater, then
1692 # the GCC helper DLL will also need copied to the test directory.
1693 # The name of the dll can change, depending upon which vendor has supplied
1694 # your compiler, and upon the values of "x".
1695 # libstdc++-6.dll is copied if it exists as it, too, may then be needed.
1696 # Without this copying, the op/taint.t test script will fail.
1698 .IF "$(CCTYPE)" == "GCC"
1701 if exist $(CCDLLDIR)\libgcc_s_seh-1.dll $(XCOPY) $(CCDLLDIR)\libgcc_s_seh-1.dll ..\t\$(NULL)
1702 if exist $(CCDLLDIR)\libgcc_s_sjlj-1.dll $(XCOPY) $(CCDLLDIR)\libgcc_s_sjlj-1.dll ..\t\$(NULL)
1703 if exist $(CCDLLDIR)\libgcc_s_dw2-1.dll $(XCOPY) $(CCDLLDIR)\libgcc_s_dw2-1.dll ..\t\$(NULL)
1704 if exist $(CCDLLDIR)\libstdc++-6.dll $(XCOPY) $(CCDLLDIR)\libstdc++-6.dll ..\t\$(NULL)
1705 if exist $(CCDLLDIR)\libwinpthread-1.dll $(XCOPY) $(CCDLLDIR)\libwinpthread-1.dll ..\t\$(NULL)
1710 set PERL_STATIC_EXT=$(STATIC_EXT) && \
1711 cd ..\t && perl.exe harness $(TEST_SWITCHES) $(TEST_FILES)
1713 test_porting : test-prep
1714 set PERL_STATIC_EXT=$(STATIC_EXT) && \
1715 cd ..\t && perl.exe harness $(TEST_SWITCHES) porting\*.t ..\lib\diagnostics.t
1717 test-reonly : reonly utils
1718 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1719 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1720 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1721 cd ..\t && perl.exe harness $(OPT) -re \bpat\\/ $(EXTRA)
1726 test-notty : test-prep
1727 set PERL_STATIC_EXT=$(STATIC_EXT) && \
1728 set PERL_SKIP_TTY_TEST=1 && \
1729 cd ..\t && perl.exe harness $(TEST_SWITCHES) $(TEST_FILES)
1732 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1733 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1734 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1735 set PERL_STATIC_EXT=$(STATIC_EXT) && \
1736 cd ..\t && perl.exe harness $(TEST_SWITCHES) $(TEST_FILES)
1739 -@erase miniperlmain$(o)
1741 -@erase perlglob$(o)
1742 -@erase perlmain$(o)
1743 -@erase perlmainst$(o)
1746 -@erase /f ..\git_version.h
1750 -@erase $(PERLEXESTATIC)
1751 -@erase $(PERLSTATICLIB)
1754 -@erase $(GENUUDMAP) $(GENUUDMAP_OBJ) $(GENERATED_HEADERS)
1755 -if exist $(MINIDIR) rmdir /s /q $(MINIDIR)
1756 -if exist $(UNIDATADIR1) rmdir /s /q $(UNIDATADIR1)
1757 -if exist $(UNIDATADIR2) rmdir /s /q $(UNIDATADIR2)
1758 -@erase $(UNIDATAFILES)
1759 -@erase $(WIN32_OBJ)
1761 -@erase ..\*$(o) ..\*$(a) ..\*.exp *$(o) *$(a) *.exp *.res
1762 -@erase ..\t\*.exe ..\t\*.dll ..\t\*.bat
1765 -@erase Extensions_static
1769 clean : Extensions_clean _clean
1771 realclean : Extensions_realclean _clean
1773 # Handy way to run perlbug -ok without having to install and run the
1774 # installed perlbug. We don't re-run the tests here - we trust the user.
1775 # Please *don't* use this unless all tests pass.
1776 # If you want to report test failures, use "dmake nok" instead.
1778 $(PERLEXE) ..\utils\perlbug -ok -s "(UNINSTALLED)"
1781 $(PERLEXE) ..\utils\perlbug -ok -s "(UNINSTALLED)" -F perl.ok
1784 $(PERLEXE) ..\utils\perlbug -nok -s "(UNINSTALLED)"
1787 $(PERLEXE) ..\utils\perlbug -nok -s "(UNINSTALLED)" -F perl.nok