2 # Makefile to build perl on Windows using GMAKE.
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 # (perl525.dll). Also makes individual DLLs for the XS extensions.
11 # The easiest way to customize the build process is to use parameters like this:
13 # c:\dev\perlsrc\win32> gmake INST_TOP=c:\sw\perl CCHOME=c:\sw\mingw USE_64_BIT_INT=define
17 ## Make sure you read README.win32 *before* you mess with anything here!
21 # We set this to point to cmd.exe in case GNU Make finds sh.exe in the path.
22 # Comment this line out if necessary
26 # define whether you want to use native gcc compiler or cross-compiler
27 # possible values: gcc
28 # i686-w64-mingw32-gcc
29 # x86_64-w64-mingw32-gcc
32 ifeq ($(GCCBIN),x86_64-w64-mingw32-gcc)
33 GCCCROSS := x86_64-w64-mingw32
35 ifeq ($(GCCBIN),i686-w64-mingw32-gcc)
36 GCCCROSS := i686-w64-mingw32
39 GCCTARGET := $(shell $(GCCBIN) -dumpmachine)
40 GCCVER1 := $(shell for /f "delims=. tokens=1,2,3" %%i in ('gcc -dumpversion') do echo %%i)
41 GCCVER2 := $(shell for /f "delims=. tokens=1,2,3" %%i in ('gcc -dumpversion') do echo %%j)
42 GCCVER3 := $(shell for /f "delims=. tokens=1,2,3" %%i in ('gcc -dumpversion') do echo %%k)
45 ## Build configuration. Edit the values below to suit your needs.
49 # Set these to wherever you want "gmake install" to put your
53 INST_TOP := $(INST_DRV)\perl
56 # Uncomment if you want to build a 32-bit Perl using a 32-bit compiler
57 # on a 64-bit version of Windows.
62 # Comment this out if you DON'T want your perl installation to be versioned.
63 # This means that the new installation will overwrite any files from the
64 # old installation at the same INST_TOP location. Leaving it enabled is
65 # the safest route, as perl adds the extra version directory to all the
66 # locations it installs files to. If you disable it, an alternative
67 # versioned installation can be obtained by setting INST_TOP above to a
68 # path that includes an arbitrary version string.
73 # Comment this out if you DON'T want your perl installation to have
74 # architecture specific components. This means that architecture-
75 # specific files will be installed along with the architecture-neutral
76 # files. Leaving it enabled is safer and more flexible, in case you
77 # want to build multiple flavors of perl and install them together in
78 # the same location. Commenting it out gives you a simpler
79 # installation that is easier to understand for beginners.
81 #INST_ARCH := \$(ARCHNAME)
84 # Uncomment this if you want perl to run
85 # $Config{sitelibexp}\sitecustomize.pl
86 # before anything else. This script can then be set up, for example,
87 # to add additional entries to @INC.
89 #USE_SITECUST := define
92 # uncomment to enable multiple interpreters. This is needed for fork()
93 # emulation and for thread support, and is auto-enabled by USE_IMP_SYS
94 # and USE_ITHREADS below.
99 # Interpreter cloning/threads; now reasonably complete.
100 # This should be enabled to get the fork() emulation. This needs (and
101 # will auto-enable) USE_MULTI above.
103 USE_ITHREADS := define
106 # uncomment to enable the implicit "host" layer for all system calls
107 # made by perl. This is also needed to get fork(). This needs (and
108 # will auto-enable) USE_MULTI above.
110 USE_IMP_SYS := define
113 # Comment out next assign to disable perl's I/O subsystem and use compiler's
114 # stdio for IO - depending on your compiler vendor and run time library you may
115 # then get a number of fails from make test i.e. bugs - complain to them not us ;-).
116 # You will also be unable to take full advantage of perl5.8's support for multiple
117 # encodings and may see lower IO performance. You have been warned.
122 # Comment this out if you don't want to enable large file support for
123 # some reason. Should normally only be changed to maintain compatibility
124 # with an older release of perl.
126 USE_LARGE_FILES := define
129 # Uncomment this if you're building a 32-bit perl and want 64-bit integers.
130 # (If you're building a 64-bit perl then you will have 64-bit integers whether
131 # or not this is uncommented.)
132 # Note: This option is not supported in 32-bit MSVC60 builds.
134 #USE_64_BIT_INT := define
137 # Uncomment this if you want to support the use of long doubles in GCC builds.
138 # This option is not supported for MSVC builds.
140 #USE_LONG_DOUBLE :=define
143 # Uncomment this if you want to disable looking up values from
144 # HKEY_CURRENT_USER\Software\Perl and HKEY_LOCAL_MACHINE\Software\Perl in
147 #USE_NO_REGISTRY := define
150 # uncomment exactly one of the following
152 # Visual C++ 6.0 (aka Visual C++ 98)
154 # Visual C++ .NET 2002/2003 (aka Visual C++ 7.0/7.1) (full version)
156 # Visual C++ Toolkit 2003 (aka Visual C++ 7.1) (free command-line tools)
157 #CCTYPE := MSVC70FREE
158 # Windows Server 2003 SP1 Platform SDK (April 2005)
159 #CCTYPE := SDK2003SP1
160 # Visual C++ 2005 (aka Visual C++ 8.0) (full version)
162 # Visual C++ 2005 Express Edition (aka Visual C++ 8.0) (free version)
163 #CCTYPE := MSVC80FREE
164 # Visual C++ 2008 (aka Visual C++ 9.0) (full version)
166 # Visual C++ 2008 Express Edition (aka Visual C++ 9.0) (free version)
167 #CCTYPE := MSVC90FREE
168 # Visual C++ 2010 (aka Visual C++ 10.0) (full version)
170 # Visual C++ 2010 Express Edition (aka Visual C++ 10.0) (free version)
171 #CCTYPE := MSVC100FREE
172 # Visual C++ 2012 (aka Visual C++ 11.0) (full version)
174 # Visual C++ 2012 Express Edition (aka Visual C++ 11.0) (free version)
175 #CCTYPE := MSVC110FREE
176 # Visual C++ 2013 (aka Visual C++ 12.0) (full version)
178 # Visual C++ 2013 Express Edition (aka Visual C++ 12.0) (free version)
179 #CCTYPE := MSVC120FREE
180 # MinGW or mingw-w64 with gcc-3.4.5 or later
184 # If you are using Intel C++ Compiler uncomment this
189 # uncomment next line if you want debug version of perl (big/slow)
190 # If not enabled, we automatically try to use maximum optimization
191 # with all compilers that are known to have a working optimizer.
196 # uncomment to enable linking with setargv.obj under the Visual C
197 # compiler. Setting this options enables perl to expand wildcards in
198 # arguments, but it may be harder to use alternate methods like
199 # File::DosGlob that are more powerful. This option is supported only with
202 #USE_SETARGV := define
205 # set this if you wish to use perl's malloc
206 # WARNING: Turning this on/off WILL break binary compatibility with extensions
207 # you may have compiled with/without it. Be prepared to recompile all
208 # extensions if you change the default. Currently, this cannot be enabled
209 # if you ask for USE_IMP_SYS above.
211 #PERL_MALLOC := define
214 # set this to enable debugging mstats
215 # This must be enabled to use the Devel::Peek::mstat() function. This cannot
216 # be enabled without PERL_MALLOC as well.
218 #DEBUG_MSTATS := define
221 # set this to additionally provide a statically linked perl-static.exe.
222 # Note that dynamic loading will not work with this perl, so you must
223 # include required modules statically using the STATIC_EXT or ALL_STATIC
224 # variables below. A static library perl525s.lib will also be created.
225 # Ordinary perl.exe is not affected by this option.
227 #BUILD_STATIC := define
230 # in addition to BUILD_STATIC the option ALL_STATIC makes *every*
231 # extension get statically built
232 # This will result in a very large perl executable, but the main purpose
233 # is to have proper linking set so as to be able to create miscellaneous
234 # executables with different built-in extensions
236 #ALL_STATIC := define
239 # set the install locations of the compiler include/libraries
240 # Running VCVARS32.BAT is *required* when using Visual C.
241 # Some versions of Visual C don't define MSVCDIR in the environment,
242 # so you may have to set CCHOME explicitly (spaces in the path name should
252 # Following sets $Config{incpath} and $Config{libpth}
256 CCINCDIR := $(CCHOME)\$(GCCCROSS)\include
257 CCLIBDIR := $(CCHOME)\$(GCCCROSS)\lib
258 CCDLLDIR := $(CCLIBDIR)
259 ARCHPREFIX := $(GCCCROSS)-
261 CCINCDIR := $(CCHOME)\include
262 CCLIBDIR := $(CCHOME)\lib
263 CCDLLDIR := $(CCHOME)\bin
268 # Additional compiler flags can be specified here.
270 BUILDOPT := $(BUILDOPTEXTRA)
273 # This should normally be disabled. Enabling it will disable the File::Glob
274 # implementation of CORE::glob.
276 #BUILDOPT += -DPERL_EXTERNAL_GLOB
279 # Perl needs to read scripts in text mode so that the DATA filehandle
280 # works correctly with seek() and tell(), or around auto-flushes of
281 # all filehandles (e.g. by system(), backticks, fork(), etc).
283 # The current version on the ByteLoader module on CPAN however only
284 # works if scripts are read in binary mode. But before you disable text
285 # mode script reading (and break some DATA filehandle functionality)
286 # please check first if an updated ByteLoader isn't available on CPAN.
288 BUILDOPT += -DPERL_TEXTMODE_SCRIPTS
291 # specify semicolon-separated list of extra directories that modules will
292 # look for libraries (spaces in path names need not be quoted)
297 # set this to your email address (perl will guess a value from
298 # from your loginname and your hostname, which may not be right)
303 ## Build configuration ends.
306 ##################### CHANGE THESE ONLY IF YOU MUST #####################
309 DEBUG_MSTATS ?= undef
311 USE_SITECUST ?= undef
313 USE_ITHREADS ?= undef
316 USE_LARGE_FILES ?= undef
317 USE_64_BIT_INT ?= undef
318 USE_LONG_DOUBLE ?= undef
319 USE_NO_REGISTRY ?= undef
321 ifeq ($(USE_IMP_SYS),define)
325 ifeq ($(PERL_MALLOC),undef)
329 ifeq ($(DEBUG_MSTATS),define)
330 BUILDOPT += -DPERL_DEBUGGING_MSTATS
333 ifeq ("$(USE_IMP_SYS) $(USE_MULTI)","define undef")
337 ifeq ("$(USE_ITHREADS) $(USE_MULTI)","define undef")
341 ifeq ($(USE_SITECUST),define)
342 BUILDOPT += -DUSE_SITECUSTOMIZE
345 ifneq ($(USE_MULTI),undef)
346 BUILDOPT += -DPERL_IMPLICIT_CONTEXT
349 ifneq ($(USE_IMP_SYS),undef)
350 BUILDOPT += -DPERL_IMPLICIT_SYS
353 ifeq ($(USE_NO_REGISTRY),define)
354 BUILDOPT += -DWIN32_NO_REGISTRY
358 ifeq ($(GCCTARGET),x86_64-w64-mingw32)
360 PROCESSOR_ARCHITECTURE := x64
362 ifeq ($(GCCTARGET),i686-w64-mingw32)
364 PROCESSOR_ARCHITECTURE := x86
368 PROCESSOR_ARCHITECTURE ?= x86
370 ifeq ($(WIN64),undef)
371 PROCESSOR_ARCHITECTURE = x86
375 # When we are running from a 32bit cmd.exe on AMD64 then
376 # PROCESSOR_ARCHITECTURE is set to x86 and PROCESSOR_ARCHITEW6432
378 ifneq ($(PROCESSOR_ARCHITEW6432),)
379 PROCESSOR_ARCHITECTURE = $(PROCESSOR_ARCHITEW6432)
381 else ifeq ($(PROCESSOR_ARCHITECTURE),AMD64)
383 else ifeq ($(PROCESSOR_ARCHITECTURE),IA64)
390 ifeq ($(WIN64),define)
391 USE_64_BIT_INT = define
394 # Treat 64-bit MSVC60 (doesn't really exist) as SDK2003SP1 because
395 # both link against MSVCRT.dll (which is part of Windows itself) and
396 # not against a compiler specific versioned runtime.
397 ifeq ("$(WIN64) $(CCTYPE)","define MSVC60")
401 # Disable the 64-bit-int option for (32-bit) MSVC60 builds since that compiler
402 # does not support it.
403 ifeq ($(CCTYPE),MSVC60)
404 USE_64_BIT_INT = undef
407 # Disable the long double option for MSVC builds since that compiler
408 # does not support it.
409 ifneq ($(CCTYPE),GCC)
410 USE_LONG_DOUBLE = undef
413 ARCHITECTURE = $(PROCESSOR_ARCHITECTURE)
414 ifeq ($(ARCHITECTURE),AMD64)
417 ifeq ($(ARCHITECTURE),IA64)
421 ifeq ($(USE_MULTI),define)
422 ARCHNAME = MSWin32-$(ARCHITECTURE)-multi
424 ifeq ($(USE_PERLIO),define)
425 ARCHNAME = MSWin32-$(ARCHITECTURE)-perlio
427 ARCHNAME = MSWin32-$(ARCHITECTURE)
431 ifeq ($(USE_PERLIO),define)
432 BUILDOPT += -DUSE_PERLIO
435 ifeq ($(USE_ITHREADS),define)
436 ARCHNAME := $(ARCHNAME)-thread
439 ifneq ($(WIN64),define)
440 ifeq ($(USE_64_BIT_INT),define)
441 ARCHNAME := $(ARCHNAME)-64int
445 ifeq ($(USE_LONG_DOUBLE),define)
446 ARCHNAME := $(ARCHNAME)-ld
449 ARCHDIR = ..\lib\$(ARCHNAME)
450 COREDIR = ..\lib\CORE
451 AUTODIR = ..\lib\auto
460 INST_SCRIPT = $(INST_TOP)$(INST_VER)\bin
461 INST_BIN = $(INST_SCRIPT)$(INST_ARCH)
462 INST_LIB = $(INST_TOP)$(INST_VER)\lib
463 INST_ARCHLIB = $(INST_LIB)$(INST_ARCH)
464 INST_COREDIR = $(INST_ARCHLIB)\CORE
465 INST_HTML = $(INST_TOP)$(INST_VER)\html
468 # Programs to compile, build .lib files and link
475 CC = $(ARCHPREFIX)gcc
476 LINK32 = $(ARCHPREFIX)g++
477 LIB32 = $(ARCHPREFIX)ar rc
478 IMPLIB = $(ARCHPREFIX)dlltool
479 RSC = $(ARCHPREFIX)windres
481 ifeq ($(USE_LONG_DOUBLE),define)
482 BUILDOPT += -D__USE_MINGW_ANSI_STDIO
483 MINIBUILDOPT += -D__USE_MINGW_ANSI_STDIO
486 # If you are using GCC, 4.3 or later by default we add the -fwrapv option.
487 # See https://rt.perl.org/Ticket/Display.html?id=121505
489 GCCWRAPV := $(shell if "$(GCCVER1)"=="4" (if "$(GCCVER2)" geq "3" echo define) else if "$(GCCVER1)" geq "5" (echo define))
491 ifeq ($(GCCWRAPV),define)
493 MINIBUILDOPT += -fwrapv
504 INCLUDES = -I.\include -I. -I..
506 ifeq ($(WIN64),define)
507 DEFINES += -DWIN64 -DCONSERVATIVE
509 LOCDEFS = -DPERLDLL -DPERL_CORE
512 LIBFILES = $(LIBC) -lmoldname -lkernel32 -luser32 -lgdi32 -lwinspool \
513 -lcomdlg32 -ladvapi32 -lshell32 -lole32 -loleaut32 -lnetapi32 \
514 -luuid -lws2_32 -lmpr -lwinmm -lversion -lodbc32 -lodbccp32 -lcomctl32
517 OPTIMIZE = -g -O2 -DDEBUGGING
525 CFLAGS = $(EXTRACFLAGS) $(INCLUDES) $(DEFINES) $(LOCDEFS) $(OPTIMIZE)
526 LINK_FLAGS = $(LINK_DBG) -L"$(INST_COREDIR)" -L"$(CCLIBDIR)"
532 BUILDOPT += -fno-strict-aliasing -mms-bitfields
533 MINIBUILDOPT += -fno-strict-aliasing
535 TESTPREPGCC = test-prep-gcc
541 # All but the free version of VC++ 7.1 can load DLLs on demand. Makes the test
542 # suite run in about 10% less time.
543 ifneq ($(CCTYPE),MSVC70FREE)
544 # If no registry, advapi32 is only used for Perl_pp_getlogin/getlogin/GetUserNameA
545 # which is rare to execute
546 ifneq ($(USE_NO_REGISTRY),undef)
547 DELAYLOAD = -DELAYLOAD:ws2_32.dll -DELAYLOAD:advapi32.dll delayimp.lib
550 DELAYLOAD = -DELAYLOAD:ws2_32.dll delayimp.lib
551 #miniperl never does any registry lookups
552 MINIDELAYLOAD = -DELAYLOAD:advapi32.dll
556 # Visual C++ 2005 and 2008 (VC++ 8.0 and 9.0) create manifest files for EXEs and
557 # DLLs. These either need copying everywhere with the binaries, or else need
558 # embedding in them otherwise MSVCR80.dll or MSVCR90.dll won't be found. For
559 # simplicity, embed them if they exist (and delete them afterwards so that they
560 # don't get installed too).
561 EMBED_EXE_MANI = if exist $@.manifest mt -nologo -manifest $@.manifest -outputresource:$@;1 && \
562 if exist $@.manifest del $@.manifest
563 EMBED_DLL_MANI = if exist $@.manifest mt -nologo -manifest $@.manifest -outputresource:$@;2 && \
564 if exist $@.manifest del $@.manifest
566 # Most relevant compiler-specific options fall into two groups:
567 # either pre-MSVC80 or MSVC80 onwards, so define a macro for this.
568 ifeq ($(CCTYPE),MSVC60)
570 else ifeq ($(CCTYPE),MSVC70)
572 else ifeq ($(CCTYPE),MSVC70FREE)
578 ifneq ($(__ICC),define)
585 LIB32 = $(LINK32) -lib
592 INCLUDES = -I.\include -I. -I..
593 #PCHFLAGS = -Fpc:\temp\vcmoduls.pch -YX
594 DEFINES = -DWIN32 -D_CONSOLE -DNO_STRICT
595 LOCDEFS = -DPERLDLL -DPERL_CORE
601 OPTIMIZE = -Od -MD -Zi -DDEBUGGING
603 else ifeq ($(CFG),DebugSymbols)
604 OPTIMIZE = -Od -MD -Zi
606 else ifeq ($(CFG),DebugFull)
608 OPTIMIZE = -Od -MDd -Zi -D_DEBUG -DDEBUGGING
611 # -O1 yields smaller code, which turns out to be faster than -O2 on x86 and x64
612 OPTIMIZE = -O1 -MD -Zi -DNDEBUG
613 # we enable debug symbols in release builds also
614 LINK_DBG = -debug -opt:ref,icf
615 # you may want to enable this if you want COFF symbols in the executables
616 # in addition to the PDB symbols. The default Dr. Watson that ships with
617 # Windows can use the the former but not latter. The free WinDbg can be
618 # installed to get better stack traces from just the PDB symbols, so we
619 # avoid the bloat of COFF symbols by default.
620 #LINK_DBG = $(LINK_DBG) -debugtype:both
621 ifneq ($(CCTYPE),MSVC60)
622 # enable Whole Program Optimizations (WPO) and Link Time Code Generation (LTCG)
629 ifeq ($(WIN64),define)
630 DEFINES += -DWIN64 -DCONSERVATIVE
631 OPTIMIZE += -fp:precise
634 # For now, silence warnings from VC++ 8.0 onwards about "unsafe" CRT functions
635 # and POSIX CRT function names being deprecated.
636 ifeq ($(PREMSVC80),undef)
637 DEFINES += -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE
640 # In VS 2005 (VC++ 8.0) Microsoft changes time_t from 32-bit to
641 # 64-bit, even in 32-bit mode. It also provides the _USE_32BIT_TIME_T
642 # preprocessor option to revert back to the old functionality for
643 # backward compatibility. We define this symbol here for older 32-bit
644 # compilers only (which aren't using it at all) for the sole purpose
645 # of getting it into $Config{ccflags}. That way if someone builds
646 # Perl itself with e.g. VC6 but later installs an XS module using VC8
647 # the time_t types will still be compatible.
648 ifeq ($(WIN64),undef)
649 ifeq ((PREMSVC80),define)
650 BUILDOPT += -D_USE_32BIT_TIME_T
654 LIBBASEFILES = oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.lib \
655 comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \
656 netapi32.lib uuid.lib ws2_32.lib mpr.lib winmm.lib version.lib \
657 odbc32.lib odbccp32.lib comctl32.lib
659 # Avoid __intel_new_proc_init link error for libircmt.
660 # libmmd is /MD equivelent, other variants exist.
661 # libmmd is Intel C's math addon funcs to MS CRT, contains long doubles, C99,
662 # and optimized C89 funcs
663 ifeq ($(__ICC),define)
664 LIBBASEFILES += libircmt.lib libmmd.lib
667 # The 64 bit Windows Server 2003 SP1 SDK compilers link against MSVCRT.dll, which
668 # doesn't include the buffer overrun verification code used by the /GS switch.
669 # Since the code links against libraries that are compiled with /GS, this
670 # "security cookie verification" code must be included via bufferoverflow.lib.
671 ifeq ("$(WIN64) $(CCTYPE)","define SDK2003SP1")
672 LIBBASEFILES += bufferoverflowU.lib
675 LIBFILES = $(LIBBASEFILES) $(LIBC)
677 EXTRACFLAGS = -nologo -GF -W3
678 ifeq ($(__ICC),define)
679 EXTRACFLAGS += -Qstd=c99
681 ifeq ($(USE_CPLUSPLUS),define)
682 EXTRACFLAGS += $(CXX_FLAG)
684 CFLAGS = $(EXTRACFLAGS) $(INCLUDES) $(DEFINES) $(LOCDEFS) \
685 $(PCHFLAGS) $(OPTIMIZE)
686 LINK_FLAGS = -nologo -nodefaultlib $(LINK_DBG) \
687 -libpath:"$(INST_COREDIR)" \
688 -machine:$(PROCESSOR_ARCHITECTURE)
698 CFLAGS_O = $(CFLAGS) $(BUILDOPT)
700 ifeq ($(PREMSVC80),undef)
701 PRIV_LINK_FLAGS += "/manifestdependency:type='Win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'"
703 RSC_FLAGS = -DINCLUDE_MANIFEST
707 # For XP support in >= VS 2013 (VC++ 12.0), subsystem is always in Config.pm
708 # LINK_FLAGS else subsystem is only needed for EXE building, not XS DLL building
709 # Console vs GUI makes no difference for DLLs, so use default for cleaner
712 ifeq ($(CCTYPE),MSVC120)
713 ifeq ($(WIN64),define)
714 LINK_FLAGS += -subsystem:console,"5.02"
716 LINK_FLAGS += -subsystem:console,"5.01"
719 else ifeq ($(CCTYPE),MSVC120FREE)
720 ifeq ($(WIN64),define)
721 LINK_FLAGS += -subsystem:console,"5.02"
723 LINK_FLAGS += -subsystem:console,"5.01"
726 else ifeq ($(CCTYPE),MSVC140)
727 ifeq ($(WIN64),define)
728 LINK_FLAGS += -subsystem:console,"5.02"
730 LINK_FLAGS += -subsystem:console,"5.01"
733 else ifeq ($(CCTYPE),MSVC140FREE)
734 ifeq ($(WIN64),define)
735 LINK_FLAGS += -subsystem:console,"5.02"
737 LINK_FLAGS += -subsystem:console,"5.01"
740 else ifneq ($(CCTYPE),GCC)
741 PRIV_LINK_FLAGS += -subsystem:console
744 BLINK_FLAGS = $(PRIV_LINK_FLAGS) $(LINK_FLAGS)
746 #################### do not edit below this line #######################
747 ############# NO USER-SERVICEABLE PARTS BEYOND THIS POINT ##############
749 #prevent -j from reaching EUMM/make_ext.pl/"sub makes", Win32 EUMM not parallel
755 .SUFFIXES : .c .i $(o) .dll $(a) .exe .rc .res
758 $(CC) -c -I$(<D) $(CFLAGS_O) $(OBJOUT_FLAG)$@ $(PDBOUT) $<
761 $(CC) -c -I$(<D) $(CFLAGS_O) -E $< >$@
767 $(LINK32) -o $@ $(BLINK_FLAGS) $< $(LIBFILES)
768 $(IMPLIB) --input-def $(*F).def --output-lib $(*F).a $@
772 $(RSC) --use-temp-file --include-dir=. --include-dir=.. -O COFF -D INCLUDE_MANIFEST -i $< -o $@
774 $(RSC) -i.. -DINCLUDE_MANIFEST $<
780 #do not put $(MINIPERL) as a dep/prereq in a rule, instead put $(HAVEMINIPERL)
781 #$(MINIPERL) is not a buildable target, use "gmake mp" if you want to just build
783 MINIPERL = ..\miniperl.exe
784 HAVEMINIPERL = ..\lib\buildcustomize.pl
786 PERLEXE = ..\perl.exe
787 WPERLEXE = ..\wperl.exe
788 PERLEXESTATIC = ..\perl-static.exe
789 STATICDIR = .\static.tmp
790 GLOBEXE = ..\perlglob.exe
791 CONFIGPM = ..\lib\Config.pm
792 GENUUDMAP = ..\generate_uudmap.exe
793 ifeq ($(BUILD_STATIC),define)
796 ifeq ($(ALL_STATIC),define)
803 # Unicode data files generated by mktables
804 UNIDATAFILES = ..\lib\unicore\Decomposition.pl ..\lib\unicore\TestProp.pl \
805 ..\lib\unicore\CombiningClass.pl ..\lib\unicore\Name.pl \
806 ..\lib\unicore\UCD.pl ..\lib\unicore\Name.pm \
807 ..\lib\unicore\Heavy.pl ..\lib\unicore\mktables.lst
809 # Directories of Unicode data files generated by mktables
810 UNIDATADIR1 = ..\lib\unicore\To
811 UNIDATADIR2 = ..\lib\unicore\lib
813 PERLEXE_MANIFEST= .\perlexe.manifest
814 PERLEXE_ICO = .\perlexe.ico
815 PERLEXE_RES = .\perlexe.res
818 # Nominate a target which causes extensions to be re-built
819 # This used to be $(PERLEXE), but at worst it is the .dll that they depend
820 # on and really only the interface - i.e. the .def file used to export symbols
822 PERLDEP = $(PERLIMPLIB)
825 PL2BAT = bin\pl2bat.pl
849 ..\utils\zipdetails \
861 CFGSH_TMPL = config.gc
862 CFGH_TMPL = config_H.gc
863 PERLIMPLIB = $(COREDIR)\libperl525$(a)
864 PERLIMPLIBBASE = libperl525$(a)
865 PERLSTATICLIB = ..\libperl525s$(a)
870 CFGSH_TMPL = config.vc
871 CFGH_TMPL = config_H.vc
876 # makedef.pl must be updated if this changes, and this should normally
877 # only change when there is an incompatible revision of the public API.
878 PERLIMPLIB ?= $(COREDIR)\perl525$(a)
879 PERLIMPLIBBASE ?= perl525$(a)
880 PERLEXPLIB ?= $(COREDIR)\perl525.exp
881 PERLSTATICLIB ?= ..\perl525s$(a)
882 PERLDLL = ..\perl525.dll
884 # don't let "gmake -n all" try to run "miniperl.exe make_ext.pl"
887 XCOPY = xcopy /f /r /i /d /y
888 RCOPY = xcopy /f /r /i /e /d /y
891 #first ones are arrange in compile time order for faster parallel building
892 #see #123867 for details
934 EXTRACORE_SRC += perllib.c
936 ifeq ($(PERL_MALLOC),define)
937 EXTRACORE_SRC += ..\malloc.c
940 EXTRACORE_SRC += ..\perlio.c
948 # We need this for miniperl build unless we override canned
949 # config.h #define building mini\*
950 #ifeq ($(USE_PERLIO)" == "define"
951 WIN32_SRC += .\win32io.c
991 .\include\sys\errno2.h \
992 .\include\sys\socket.h \
995 CORE_H = $(CORE_NOCFG_H) .\config.h ..\git_version.h
997 UUDMAP_H = ..\uudmap.h
998 BITCOUNT_H = ..\bitcount.h
999 MG_DATA_H = ..\mg_data.h
1000 GENERATED_HEADERS = $(UUDMAP_H) $(BITCOUNT_H) $(MG_DATA_H)
1002 HAVE_COREDIR = .coreheaders
1004 MICROCORE_OBJ = $(MICROCORE_SRC:.c=$(o))
1005 CORE_OBJ = $(MICROCORE_OBJ) $(EXTRACORE_SRC:.c=$(o))
1006 WIN32_OBJ = $(WIN32_SRC:.c=$(o))
1008 MINICORE_OBJ = $(subst ..\,mini\,$(MICROCORE_OBJ)) \
1009 $(MINIDIR)\miniperlmain$(o) \
1010 $(MINIDIR)\perlio$(o)
1011 MINIWIN32_OBJ = $(subst .\,mini\,$(WIN32_OBJ))
1012 MINI_OBJ = $(MINICORE_OBJ) $(MINIWIN32_OBJ)
1013 DLL_OBJ = $(DYNALOADER)
1015 PERLDLL_OBJ = $(CORE_OBJ)
1016 PERLEXE_OBJ = perlmain$(o)
1017 PERLEXEST_OBJ = perlmainst$(o)
1019 PERLDLL_OBJ += $(WIN32_OBJ) $(DLL_OBJ)
1021 ifneq ($(USE_SETARGV),)
1022 SETARGV_OBJ = setargv$(o)
1025 ifeq ($(ALL_STATIC),define)
1026 # some exclusions, unfortunately, until fixed:
1027 # - MakeMaker isn't capable enough for SDBM_File (small bug)
1028 STATIC_EXT = * !SDBM_File
1030 # specify static extensions here, for example:
1031 # (be sure to include Win32CORE to load Win32 on demand)
1032 #STATIC_EXT = Win32CORE Cwd Compress/Raw/Zlib
1033 STATIC_EXT = Win32CORE
1036 DYNALOADER = ..\DynaLoader$(o)
1038 # vars must be separated by "\t+~\t+", since we're using the tempfile
1039 # version of config_sh.pl (we were overflowing someone's buffer by
1040 # trying to fit them all on the command line)
1043 "INST_TOP=$(INST_TOP)" \
1044 "INST_VER=$(INST_VER)" \
1045 "INST_ARCH=$(INST_ARCH)" \
1046 "archname=$(ARCHNAME)" \
1049 "ccflags=$(subst ",\",$(EXTRACFLAGS) $(OPTIMIZE) $(DEFINES) $(BUILDOPT))" \
1050 "usecplusplus=$(USE_CPLUSPLUS)" \
1051 "cf_email=$(EMAIL)" \
1052 "d_mymalloc=$(PERL_MALLOC)" \
1053 "libs=$(LIBFILES)" \
1054 "incpath=$(subst ",\",$(CCINCDIR))" \
1055 "libperl=$(subst ",\",$(PERLIMPLIBBASE))" \
1056 "libpth=$(subst ",\",$(CCLIBDIR);$(EXTRALIBDIRS))" \
1063 "static_ext=$(STATIC_EXT)" \
1064 "usethreads=$(USE_ITHREADS)" \
1065 "useithreads=$(USE_ITHREADS)" \
1066 "usemultiplicity=$(USE_MULTI)" \
1067 "useperlio=$(USE_PERLIO)" \
1068 "use64bitint=$(USE_64_BIT_INT)" \
1069 "uselongdouble=$(USE_LONG_DOUBLE)" \
1070 "uselargefiles=$(USE_LARGE_FILES)" \
1071 "usesitecustomize=$(USE_SITECUST)" \
1072 "LINK_FLAGS=$(subst ",\",$(LINK_FLAGS))"\
1073 "optimize=$(subst ",\",$(OPTIMIZE))" \
1074 "ARCHPREFIX=$(ARCHPREFIX)" \
1083 all : info rebasePE Extensions_nonxs $(PERLSTATIC)
1086 @echo # GCCBIN=$(GCCBIN)
1087 @echo # GCCVER=$(GCCVER1).$(GCCVER2).$(GCCVER3)
1088 @echo # GCCTARGET=$(GCCTARGET)
1089 @echo # GCCCROSS=$(GCCCROSS)
1090 @echo # WIN64=$(WIN64)
1091 @echo # ARCHITECTURE=$(ARCHITECTURE)
1092 @echo # ARCHNAME=$(ARCHNAME)
1093 @echo # MAKE=$(PLMAKE)
1094 ifeq ($(GCCTARGET),)
1095 @echo Unable to detect gcc and/or architecture!
1100 ..\regcomp$(o) : ..\regnodes.h ..\regcharclass.h
1102 ..\regexec$(o) : ..\regnodes.h ..\regcharclass.h
1104 reonly : ..\regnodes.h .\config.h ..\git_version.h $(GLOBEXE) $(HAVEMINIPERL)\
1105 $(CONFIGPM) $(UNIDATAFILES) $(PERLEXE) \
1108 static: $(PERLEXESTATIC)
1110 #----------------------------------------------------------------
1112 $(GLOBEXE) : perlglob.c
1113 ifeq ($(CCTYPE),GCC)
1114 $(LINK32) $(OPTIMIZE) $(BLINK_FLAGS) -mconsole -o $@ perlglob.c $(LIBFILES)
1116 $(CC) $(OPTIMIZE) $(PDBOUT) -Fe$@ perlglob.c -link $(BLINK_FLAGS) \
1117 setargv$(o) $(LIBFILES) && $(EMBED_EXE_MANI)
1120 ..\git_version.h : $(HAVEMINIPERL) ..\make_patchnum.pl
1121 $(MINIPERL) -I..\lib ..\make_patchnum.pl
1123 # make sure that we recompile perl.c if the git version changes
1124 ..\perl$(o) : ..\git_version.h
1126 ..\config.sh : $(CFGSH_TMPL) config_sh.PL FindExt.pm $(HAVEMINIPERL)
1127 $(MINIPERL) -I..\lib config_sh.PL $(CFG_VARS) $(CFGSH_TMPL) > ..\config.sh
1129 # This target is for when changes to the main config.sh happen.
1130 # Edit config.gc, then make perl using GCC in a minimal configuration (i.e.
1131 # with MULTI, ITHREADS, IMP_SYS, LARGE_FILES and PERLIO off), then make
1132 # this target to regenerate config_H.gc.
1134 $(MINIPERL) -I..\lib config_sh.PL $(CFG_VARS) $(CFGSH_TMPL) > ..\config.sh
1135 $(MINIPERL) -I..\lib ..\configpm --chdir=..
1136 -del /f $(CFGH_TMPL)
1137 -$(MINIPERL) -I..\lib config_h.PL "ARCHPREFIX=$(ARCHPREFIX)"
1138 rename config.h $(CFGH_TMPL)
1140 $(CONFIGPM): ..\config.sh config_h.PL
1141 $(MINIPERL) -I..\lib ..\configpm --chdir=..
1142 -$(MINIPERL) -I..\lib config_h.PL "ARCHPREFIX=$(ARCHPREFIX)"
1144 .\config.h : $(CONFIGPM)
1146 # See the comment in Makefile.SH explaining this seemingly cranky ordering
1147 ..\lib\buildcustomize.pl : $(MINI_OBJ) ..\write_buildcustomize.pl
1148 ifeq ($(CCTYPE),GCC)
1149 $(LINK32) -mconsole -o $(MINIPERL) $(BLINK_FLAGS) $(MINI_OBJ) $(LIBFILES)
1151 $(LINK32) -out:$(MINIPERL) $(BLINK_FLAGS) \
1152 $(DELAYLOAD) $(MINIDELAYLOAD) $(LIBFILES) $(MINI_OBJ)
1153 $(subst $@,$(MINIPERL),$(EMBED_EXE_MANI))
1156 $(MINIPERL) -I..\lib -f ..\write_buildcustomize.pl ..
1158 #convinence target, get a working miniperl
1161 $(MINIDIR)\.exists : $(CFGH_TMPL)
1162 if not exist "$(MINIDIR)" mkdir "$(MINIDIR)"
1164 # Copy the template config.h and set configurables at the end of it
1165 # as per the options chosen and compiler used.
1166 # Note: This config.h is only used to build miniperl.exe anyway, but
1167 # it's as well to have its options correct to be sure that it builds
1168 # and so that it's "-V" options are correct for use by makedef.pl. The
1169 # real config.h used to build perl.exe is generated from the top-level
1170 # config_h.SH by config_h.PL (run by miniperl.exe).
1172 # MINIDIR generates config.h so miniperl.exe is not rebuilt when the 2nd
1173 # config.h is generated in CONFIGPM target, see also the comments for $(MINI_OBJ).
1174 copy $(CFGH_TMPL) config.h
1176 echo #ifndef _config_h_footer_&& \
1177 echo #define _config_h_footer_&& \
1178 echo #undef Off_t&& \
1179 echo #undef LSEEKSIZE&& \
1180 echo #undef Off_t_size&& \
1181 echo #undef PTRSIZE&& \
1182 echo #undef SSize_t&& \
1183 echo #undef HAS_ATOLL&& \
1184 echo #undef HAS_STRTOLL&& \
1185 echo #undef HAS_STRTOULL&& \
1186 echo #undef Size_t_size&& \
1187 echo #undef IVTYPE&& \
1188 echo #undef UVTYPE&& \
1189 echo #undef IVSIZE&& \
1190 echo #undef UVSIZE&& \
1191 echo #undef NV_PRESERVES_UV&& \
1192 echo #undef NV_PRESERVES_UV_BITS&& \
1193 echo #undef IVdf&& \
1194 echo #undef UVuf&& \
1195 echo #undef UVof&& \
1196 echo #undef UVxf&& \
1197 echo #undef UVXf&& \
1198 echo #undef USE_64_BIT_INT&& \
1199 echo #undef Gconvert&& \
1200 echo #undef HAS_FREXPL&& \
1201 echo #undef HAS_ISNANL&& \
1202 echo #undef HAS_MODFL&& \
1203 echo #undef HAS_MODFL_PROTO&& \
1204 echo #undef HAS_SQRTL&& \
1205 echo #undef HAS_STRTOLD&& \
1206 echo #undef PERL_PRIfldbl&& \
1207 echo #undef PERL_PRIgldbl&& \
1208 echo #undef PERL_PRIeldbl&& \
1209 echo #undef PERL_SCNfldbl&& \
1210 echo #undef NVTYPE&& \
1211 echo #undef NVSIZE&& \
1212 echo #undef LONG_DOUBLESIZE&& \
1213 echo #undef NV_OVERFLOWS_INTEGERS_AT&& \
1214 echo #undef NVef&& \
1215 echo #undef NVff&& \
1216 echo #undef NVgf&& \
1217 echo #undef USE_LONG_DOUBLE)>> config.h
1218 ifeq ($(USE_LARGE_FILES),define)
1219 @(echo #define Off_t $(INT64)&& \
1220 echo #define LSEEKSIZE ^8&& \
1221 echo #define Off_t_size ^8)>> config.h
1223 @(echo #define Off_t long&& \
1224 echo #define LSEEKSIZE ^4&& \
1225 echo #define Off_t_size ^4)>> config.h
1227 ifeq ($(WIN64),define)
1228 @(echo #define PTRSIZE ^8&& \
1229 echo #define SSize_t $(INT64)&& \
1230 echo #define HAS_ATOLL&& \
1231 echo #define HAS_STRTOLL&& \
1232 echo #define HAS_STRTOULL&& \
1233 echo #define Size_t_size ^8)>> config.h
1235 @(echo #define PTRSIZE ^4&& \
1236 echo #define SSize_t int&& \
1237 echo #undef HAS_ATOLL&& \
1238 echo #undef HAS_STRTOLL&& \
1239 echo #undef HAS_STRTOULL&& \
1240 echo #define Size_t_size ^4)>> config.h
1242 ifeq ($(USE_64_BIT_INT),define)
1243 @(echo #define IVTYPE $(INT64)&& \
1244 echo #define UVTYPE unsigned $(INT64)&& \
1245 echo #define IVSIZE ^8&& \
1246 echo #define UVSIZE ^8)>> config.h
1247 ifeq ($(USE_LONG_DOUBLE),define)
1248 @(echo #define NV_PRESERVES_UV&& \
1249 echo #define NV_PRESERVES_UV_BITS 64)>> config.h
1251 @(echo #undef NV_PRESERVES_UV&& \
1252 echo #define NV_PRESERVES_UV_BITS 53)>> config.h
1254 @(echo #define IVdf "I64d"&& \
1255 echo #define UVuf "I64u"&& \
1256 echo #define UVof "I64o"&& \
1257 echo #define UVxf "I64x"&& \
1258 echo #define UVXf "I64X"&& \
1259 echo #define USE_64_BIT_INT)>> config.h
1261 @(echo #define IVTYPE long&& \
1262 echo #define UVTYPE unsigned long&& \
1263 echo #define IVSIZE ^4&& \
1264 echo #define UVSIZE ^4&& \
1265 echo #define NV_PRESERVES_UV&& \
1266 echo #define NV_PRESERVES_UV_BITS 32&& \
1267 echo #define IVdf "ld"&& \
1268 echo #define UVuf "lu"&& \
1269 echo #define UVof "lo"&& \
1270 echo #define UVxf "lx"&& \
1271 echo #define UVXf "lX"&& \
1272 echo #undef USE_64_BIT_INT)>> config.h
1274 ifeq ($(USE_LONG_DOUBLE),define)
1275 @(echo #define Gconvert^(x,n,t,b^) sprintf^(^(b^),"%%.*""Lg",^(n^),^(x^)^)&& \
1276 echo #define HAS_FREXPL&& \
1277 echo #define HAS_ISNANL&& \
1278 echo #define HAS_MODFL&& \
1279 echo #define HAS_MODFL_PROTO&& \
1280 echo #define HAS_SQRTL&& \
1281 echo #define HAS_STRTOLD&& \
1282 echo #define PERL_PRIfldbl "Lf"&& \
1283 echo #define PERL_PRIgldbl "Lg"&& \
1284 echo #define PERL_PRIeldbl "Le"&& \
1285 echo #define PERL_SCNfldbl "Lf"&& \
1286 echo #define NVTYPE long double)>> config.h
1287 ifeq ($(WIN64),define)
1288 @(echo #define NVSIZE ^16&& \
1289 echo #define LONG_DOUBLESIZE ^16)>> config.h
1291 @(echo #define NVSIZE ^12&& \
1292 echo #define LONG_DOUBLESIZE ^12)>> config.h
1294 @(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&& \
1295 echo #define NVef "Le"&& \
1296 echo #define NVff "Lf"&& \
1297 echo #define NVgf "Lg"&& \
1298 echo #define USE_LONG_DOUBLE)>> config.h
1300 @(echo #define Gconvert^(x,n,t,b^) sprintf^(^(b^),"%%.*g",^(n^),^(x^)^)&& \
1301 echo #undef HAS_FREXPL&& \
1302 echo #undef HAS_ISNANL&& \
1303 echo #undef HAS_MODFL&& \
1304 echo #undef HAS_MODFL_PROTO&& \
1305 echo #undef HAS_SQRTL&& \
1306 echo #undef HAS_STRTOLD&& \
1307 echo #undef PERL_PRIfldbl&& \
1308 echo #undef PERL_PRIgldbl&& \
1309 echo #undef PERL_PRIeldbl&& \
1310 echo #undef PERL_SCNfldbl&& \
1311 echo #define NVTYPE double&& \
1312 echo #define NVSIZE ^8&& \
1313 echo #define LONG_DOUBLESIZE ^8&& \
1314 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&& \
1315 echo #define NVef "e"&& \
1316 echo #define NVff "f"&& \
1317 echo #define NVgf "g"&& \
1318 echo #undef USE_LONG_DOUBLE)>> config.h
1320 ifeq ($(USE_CPLUSPLUS),define)
1321 @(echo #define USE_CPLUSPLUS&& \
1322 echo #endif)>> config.h
1324 @(echo #undef USE_CPLUSPLUS&& \
1325 echo #endif)>> config.h
1327 #separate line since this is sentinal that this target is done
1328 rem. > $(MINIDIR)\.exists
1330 $(MINICORE_OBJ) : $(CORE_NOCFG_H)
1331 $(CC) -c $(CFLAGS) $(MINIBUILDOPT) -DPERL_EXTERNAL_GLOB -DPERL_IS_MINIPERL $(OBJOUT_FLAG)$@ $(PDBOUT) ..\$(*F).c
1333 $(MINIWIN32_OBJ) : $(CORE_NOCFG_H)
1334 $(CC) -c $(CFLAGS) $(MINIBUILDOPT) -DPERL_IS_MINIPERL $(OBJOUT_FLAG)$@ $(PDBOUT) $(*F).c
1336 # -DPERL_IMPLICIT_SYS needs C++ for perllib.c
1337 # rules wrapped in .IFs break Win9X build (we end up with unbalanced []s unless
1338 # unless the .IF is true), so instead we use a .ELSE with the default.
1339 # This is the only file that depends on perlhost.h, vmem.h, and vdir.h
1341 perllib$(o) : perllib.c perllibst.h .\perlhost.h .\vdir.h .\vmem.h
1342 ifeq ($(USE_IMP_SYS),define)
1343 $(CC) -c -I. $(CFLAGS_O) $(CXX_FLAG) $(OBJOUT_FLAG)$@ $(PDBOUT) perllib.c
1345 $(CC) -c -I. $(CFLAGS_O) $(OBJOUT_FLAG)$@ $(PDBOUT) perllib.c
1348 # 1. we don't want to rebuild miniperl.exe when config.h changes
1349 # 2. we don't want to rebuild miniperl.exe with non-default config.h
1350 # 3. we can't have miniperl.exe depend on git_version.h, as miniperl creates it
1351 $(MINI_OBJ) : $(MINIDIR)\.exists $(CORE_NOCFG_H)
1353 $(WIN32_OBJ) : $(CORE_H)
1355 $(CORE_OBJ) : $(CORE_H)
1357 $(DLL_OBJ) : $(CORE_H)
1360 perllibst.h : $(HAVEMINIPERL) $(CONFIGPM) create_perllibst_h.pl
1361 $(MINIPERL) -I..\lib create_perllibst_h.pl
1363 perldll.def : $(HAVEMINIPERL) $(CONFIGPM) ..\embed.fnc ..\makedef.pl
1364 $(MINIPERL) -I..\lib -w ..\makedef.pl PLATFORM=win32 $(OPTIMIZE) $(DEFINES) \
1365 $(BUILDOPT) CCTYPE=$(CCTYPE) TARG_DIR=..\ > perldll.def
1367 $(PERLEXPLIB) : $(PERLIMPLIB)
1369 $(PERLIMPLIB) : perldll.def
1370 ifeq ($(CCTYPE),GCC)
1371 $(IMPLIB) -k -d perldll.def -l $(PERLIMPLIB) -e $(PERLEXPLIB)
1373 lib -def:perldll.def -machine:$(ARCHITECTURE) /OUT:$(PERLIMPLIB)
1376 $(PERLDLL): $(PERLEXPLIB) $(PERLDLL_OBJ) $(PERLDLL_RES) Extensions_static
1377 ifeq ($(CCTYPE),GCC)
1378 $(LINK32) -mdll -o $@ $(BLINK_FLAGS) \
1379 $(PERLDLL_OBJ) $(shell type Extensions_static) $(LIBFILES) $(PERLEXPLIB)
1381 $(LINK32) -dll -out:$@ $(BLINK_FLAGS) \
1382 @Extensions_static \
1383 -base:0x28000000 $(DELAYLOAD) $(LIBFILES) \
1384 $(PERLDLL_RES) $(PERLDLL_OBJ) $(PERLEXPLIB)
1388 $(PERLSTATICLIB): $(PERLDLL_OBJ) Extensions_static
1389 ifeq ($(CCTYPE),GCC)
1390 $(LIB32) $(LIB_FLAGS) $@ $(PERLDLL_OBJ)
1391 if exist $(STATICDIR) rmdir /s /q $(STATICDIR)
1392 for %%i in ($(shell type Extensions_static)) do \
1393 @mkdir $(STATICDIR) && cd $(STATICDIR) && \
1394 $(ARCHPREFIX)ar x ..\%%i && \
1395 $(ARCHPREFIX)ar q ..\$@ *$(o) && \
1396 cd .. && rmdir /s /q $(STATICDIR)
1398 $(LIB32) $(LIB_FLAGS) -out:$@ @Extensions_static \
1401 $(XCOPY) $(PERLSTATICLIB) $(COREDIR)
1403 $(PERLEXE_RES): perlexe.rc $(PERLEXE_MANIFEST) $(PERLEXE_ICO)
1405 $(MINIDIR)\globals$(o) : $(GENERATED_HEADERS)
1407 $(UUDMAP_H) $(MG_DATA_H) : $(BITCOUNT_H)
1409 $(BITCOUNT_H) : $(GENUUDMAP)
1410 $(GENUUDMAP) $(GENERATED_HEADERS)
1412 $(GENUUDMAP) : ..\mg_raw.h
1413 ifeq ($(CCTYPE),GCC)
1414 $(LINK32) $(CFLAGS_O) -o..\generate_uudmap.exe ..\generate_uudmap.c \
1415 $(BLINK_FLAGS) $(LIBFILES)
1417 $(CC) $(CFLAGS_O) $(PDBOUT) -Fe..\generate_uudmap.exe ..\generate_uudmap.c -link $(LIBFILES) $(BLINK_FLAGS)
1423 MakePPPort : $(HAVEMINIPERL) $(CONFIGPM)
1424 $(MINIPERL) -I..\lib ..\mkppport
1426 # also known as $(HAVE_COREDIR)
1427 .coreheaders : $(CORE_H)
1428 $(XCOPY) *.h $(COREDIR)\\*.*
1429 $(RCOPY) include $(COREDIR)\\*.*
1430 $(XCOPY) ..\\*.h $(COREDIR)\\*.*
1433 perlmain$(o) : runperl.c $(CONFIGPM)
1434 $(CC) $(subst -DPERLDLL,-UPERLDLL,$(CFLAGS_O)) $(OBJOUT_FLAG)$@ $(PDBOUT) -c runperl.c
1436 perlmainst$(o) : runperl.c $(CONFIGPM)
1437 $(CC) $(CFLAGS_O) $(OBJOUT_FLAG)$@ $(PDBOUT) -c runperl.c
1439 $(PERLEXE): $(CONFIGPM) $(PERLEXE_OBJ) $(PERLEXE_RES) $(PERLIMPLIB)
1440 ifeq ($(CCTYPE),GCC)
1441 $(LINK32) -mconsole -o $@ $(BLINK_FLAGS) \
1442 $(PERLEXE_OBJ) $(PERLEXE_RES) $(PERLIMPLIB) $(LIBFILES)
1444 $(LINK32) -out:$@ $(BLINK_FLAGS) \
1445 $(PERLEXE_OBJ) $(PERLEXE_RES) $(PERLIMPLIB) $(LIBFILES) $(SETARGV_OBJ)
1448 copy $(PERLEXE) $(WPERLEXE)
1449 $(MINIPERL) -I..\lib bin\exetype.pl $(WPERLEXE) WINDOWS
1451 $(PERLEXESTATIC): $(PERLSTATICLIB) $(CONFIGPM) $(PERLEXEST_OBJ) $(PERLEXE_RES)
1452 ifeq ($(CCTYPE),GCC)
1453 $(LINK32) -mconsole -o $@ $(BLINK_FLAGS) \
1454 $(PERLEXEST_OBJ) $(PERLEXE_RES) $(PERLSTATICLIB) $(LIBFILES)
1456 $(LINK32) -out:$@ $(BLINK_FLAGS) \
1457 $(PERLEXEST_OBJ) $(PERLEXE_RES) $(PERLSTATICLIB) $(LIBFILES) $(SETARGV_OBJ)
1461 #-------------------------------------------------------------------------------
1462 # There's no direct way to mark a dependency on
1463 # DynaLoader.pm, so this will have to do
1465 #most of deps of this target are in DYNALOADER and therefore omitted here
1466 Extensions : $(PERLDEP) $(DYNALOADER) $(GLOBEXE) MakePPPort
1467 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(PLMAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --dynamic !Unicode/Normalize
1469 Extensions_normalize : $(PERLDEP) $(DYNALOADER) $(GLOBEXE) $(UNIDATAFILES)
1470 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(PLMAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --dynamic +Unicode/Normalize
1472 Extensions_reonly : $(PERLDEP) $(DYNALOADER)
1473 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(PLMAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --dynamic +re
1475 Extensions_static : ..\make_ext.pl list_static_libs.pl $(CONFIGPM) $(GLOBEXE) $(HAVE_COREDIR) MakePPPort
1476 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(PLMAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --static
1477 $(MINIPERL) -I..\lib list_static_libs.pl > Extensions_static
1479 Extensions_nonxs : ..\make_ext.pl ..\pod\perlfunc.pod $(CONFIGPM) $(GLOBEXE)
1480 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(PLMAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --nonxs !libs
1482 #lib must be built, it can't be buildcustomize.pl-ed, and is required for XS building
1483 $(DYNALOADER) : ..\make_ext.pl $(CONFIGPM) $(HAVE_COREDIR)
1484 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(PLMAKE)" --dir=$(EXTDIR) --dir=$(DISTDIR) --dynaloader lib
1487 -if exist $(MINIPERL) $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(PLMAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --all --target=clean
1489 Extensions_realclean :
1490 -if exist $(MINIPERL) $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(PLMAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --all --target=realclean
1492 # all PE files need to be built by the time this target runs, PP files can still
1493 # be running in parallel like UNIDATAFILES, this target a placeholder for the
1495 ifeq ($(BUILD_STATIC),define)
1496 rebasePE : Extensions $(PERLDLL) Extensions_normalize $(PERLEXE) $(PERLEXESTATIC)
1498 rebasePE : Extensions $(PERLDLL) Extensions_normalize $(PERLEXE)
1502 #-------------------------------------------------------------------------------
1504 doc: $(PERLEXE) $(PERLDLL) ..\pod\perltoc.pod
1505 $(PERLEXE) -I..\lib ..\installhtml --podroot=.. --htmldir=$(HTMLDIR) \
1506 --podpath=pod:lib:utils --htmlroot="file://$(subst :,|,$(INST_HTML))"\
1509 ..\utils\Makefile: $(CONFIGPM) ..\utils\Makefile.PL
1510 $(MINIPERL) -I..\lib ..\utils\Makefile.PL ..
1512 # Note that this next section is parsed (and regenerated) by pod/buildtoc
1513 # so please check that script before making structural changes here
1514 utils: $(HAVEMINIPERL) ..\utils\Makefile
1515 cd ..\utils && $(PLMAKE) PERL=$(MINIPERL)
1516 copy ..\README.aix ..\pod\perlaix.pod
1517 copy ..\README.amiga ..\pod\perlamiga.pod
1518 copy ..\README.android ..\pod\perlandroid.pod
1519 copy ..\README.bs2000 ..\pod\perlbs2000.pod
1520 copy ..\README.ce ..\pod\perlce.pod
1521 copy ..\README.cn ..\pod\perlcn.pod
1522 copy ..\README.cygwin ..\pod\perlcygwin.pod
1523 copy ..\README.dos ..\pod\perldos.pod
1524 copy ..\README.freebsd ..\pod\perlfreebsd.pod
1525 copy ..\README.haiku ..\pod\perlhaiku.pod
1526 copy ..\README.hpux ..\pod\perlhpux.pod
1527 copy ..\README.hurd ..\pod\perlhurd.pod
1528 copy ..\README.irix ..\pod\perlirix.pod
1529 copy ..\README.jp ..\pod\perljp.pod
1530 copy ..\README.ko ..\pod\perlko.pod
1531 copy ..\README.linux ..\pod\perllinux.pod
1532 copy ..\README.macos ..\pod\perlmacos.pod
1533 copy ..\README.macosx ..\pod\perlmacosx.pod
1534 copy ..\README.netware ..\pod\perlnetware.pod
1535 copy ..\README.openbsd ..\pod\perlopenbsd.pod
1536 copy ..\README.os2 ..\pod\perlos2.pod
1537 copy ..\README.os390 ..\pod\perlos390.pod
1538 copy ..\README.os400 ..\pod\perlos400.pod
1539 copy ..\README.plan9 ..\pod\perlplan9.pod
1540 copy ..\README.qnx ..\pod\perlqnx.pod
1541 copy ..\README.riscos ..\pod\perlriscos.pod
1542 copy ..\README.solaris ..\pod\perlsolaris.pod
1543 copy ..\README.symbian ..\pod\perlsymbian.pod
1544 copy ..\README.synology ..\pod\perlsynology.pod
1545 copy ..\README.tru64 ..\pod\perltru64.pod
1546 copy ..\README.tw ..\pod\perltw.pod
1547 copy ..\README.vos ..\pod\perlvos.pod
1548 copy ..\README.win32 ..\pod\perlwin32.pod
1549 copy ..\pod\perldelta.pod ..\pod\perl5254delta.pod
1550 $(MINIPERL) -I..\lib $(PL2BAT) $(UTILS)
1551 $(MINIPERL) -I..\lib ..\autodoc.pl ..
1552 $(MINIPERL) -I..\lib ..\pod\perlmodlib.PL -q ..
1554 ..\pod\perltoc.pod: $(PERLEXE) $(PERLDLL) Extensions Extensions_nonxs Extensions_normalize utils
1555 $(PERLEXE) -f ..\pod\buildtoc -q
1557 # Note that the pod cleanup in this next section is parsed (and regenerated
1558 # by pod/buildtoc so please check that script before making changes here
1560 distclean: realclean
1561 -del /f $(MINIPERL) $(PERLEXE) $(PERLDLL) $(GLOBEXE) \
1562 $(PERLIMPLIB) ..\miniperl$(a) $(PERLEXESTATIC) $(PERLSTATICLIB)
1563 -del /f $(LIBDIR)\Encode.pm $(LIBDIR)\encoding.pm $(LIBDIR)\Errno.pm
1564 -del /f $(LIBDIR)\Config.pod $(LIBDIR)\POSIX.pod $(LIBDIR)\threads.pm
1565 -del /f $(LIBDIR)\.exists $(LIBDIR)\attributes.pm $(LIBDIR)\DynaLoader.pm
1566 -del /f $(LIBDIR)\Fcntl.pm $(LIBDIR)\IO.pm $(LIBDIR)\Opcode.pm
1567 -del /f $(LIBDIR)\ops.pm $(LIBDIR)\Safe.pm
1568 -del /f $(LIBDIR)\SDBM_File.pm $(LIBDIR)\Socket.pm $(LIBDIR)\POSIX.pm
1569 -del /f $(LIBDIR)\B.pm $(LIBDIR)\O.pm $(LIBDIR)\re.pm
1570 -del /f $(LIBDIR)\File\Glob.pm
1571 -del /f $(LIBDIR)\Storable.pm
1572 -del /f $(LIBDIR)\Sys\Hostname.pm
1573 -del /f $(LIBDIR)\Time\HiRes.pm
1574 -del /f $(LIBDIR)\Unicode\Normalize.pm
1575 -del /f $(LIBDIR)\Math\BigInt\FastCalc.pm
1576 -del /f $(LIBDIR)\Win32.pm
1577 -del /f $(LIBDIR)\Win32CORE.pm
1578 -del /f $(LIBDIR)\Win32API\File.pm
1579 -del /f $(LIBDIR)\Win32API\File\cFile.pc
1580 -del /f $(LIBDIR)\buildcustomize.pl
1581 -del /f $(DISTDIR)\XSLoader\XSLoader.pm
1583 -if exist $(LIBDIR)\App rmdir /s /q $(LIBDIR)\App
1584 -if exist $(LIBDIR)\Archive rmdir /s /q $(LIBDIR)\Archive
1585 -if exist $(LIBDIR)\Attribute rmdir /s /q $(LIBDIR)\Attribute
1586 -if exist $(LIBDIR)\autodie rmdir /s /q $(LIBDIR)\autodie
1587 -if exist $(LIBDIR)\Carp rmdir /s /q $(LIBDIR)\Carp
1588 -if exist $(LIBDIR)\Compress rmdir /s /q $(LIBDIR)\Compress
1589 -if exist $(LIBDIR)\Config\Perl rmdir /s /q $(LIBDIR)\Config\Perl
1590 -if exist $(LIBDIR)\CPAN rmdir /s /q $(LIBDIR)\CPAN
1591 -if exist $(LIBDIR)\Data rmdir /s /q $(LIBDIR)\Data
1592 -if exist $(LIBDIR)\Devel rmdir /s /q $(LIBDIR)\Devel
1593 -if exist $(LIBDIR)\Digest rmdir /s /q $(LIBDIR)\Digest
1594 -if exist $(LIBDIR)\Encode rmdir /s /q $(LIBDIR)\Encode
1595 -if exist $(LIBDIR)\encoding rmdir /s /q $(LIBDIR)\encoding
1596 -if exist $(LIBDIR)\Exporter rmdir /s /q $(LIBDIR)\Exporter
1597 -if exist $(LIBDIR)\ExtUtils\CBuilder rmdir /s /q $(LIBDIR)\ExtUtils\CBuilder
1598 -if exist $(LIBDIR)\ExtUtils\Command rmdir /s /q $(LIBDIR)\ExtUtils\Command
1599 -if exist $(LIBDIR)\ExtUtils\Constant rmdir /s /q $(LIBDIR)\ExtUtils\Constant
1600 -if exist $(LIBDIR)\ExtUtils\Liblist rmdir /s /q $(LIBDIR)\ExtUtils\Liblist
1601 -if exist $(LIBDIR)\ExtUtils\MakeMaker rmdir /s /q $(LIBDIR)\ExtUtils\MakeMaker
1602 -if exist $(LIBDIR)\ExtUtils\ParseXS rmdir /s /q $(LIBDIR)\ExtUtils\ParseXS
1603 -if exist $(LIBDIR)\ExtUtils\Typemaps rmdir /s /q $(LIBDIR)\ExtUtils\Typemaps
1604 -if exist $(LIBDIR)\File\Spec rmdir /s /q $(LIBDIR)\File\Spec
1605 -if exist $(LIBDIR)\Filter rmdir /s /q $(LIBDIR)\Filter
1606 -if exist $(LIBDIR)\Hash rmdir /s /q $(LIBDIR)\Hash
1607 -if exist $(LIBDIR)\HTTP rmdir /s /q $(LIBDIR)\HTTP
1608 -if exist $(LIBDIR)\I18N rmdir /s /q $(LIBDIR)\I18N
1609 -if exist $(LIBDIR)\inc rmdir /s /q $(LIBDIR)\inc
1610 -if exist $(LIBDIR)\IO rmdir /s /q $(LIBDIR)\IO
1611 -if exist $(LIBDIR)\IPC rmdir /s /q $(LIBDIR)\IPC
1612 -if exist $(LIBDIR)\JSON rmdir /s /q $(LIBDIR)\JSON
1613 -if exist $(LIBDIR)\List rmdir /s /q $(LIBDIR)\List
1614 -if exist $(LIBDIR)\Locale rmdir /s /q $(LIBDIR)\Locale
1615 -if exist $(LIBDIR)\Math rmdir /s /q $(LIBDIR)\Math
1616 -if exist $(LIBDIR)\Memoize rmdir /s /q $(LIBDIR)\Memoize
1617 -if exist $(LIBDIR)\MIME rmdir /s /q $(LIBDIR)\MIME
1618 -if exist $(LIBDIR)\Module rmdir /s /q $(LIBDIR)\Module
1619 -if exist $(LIBDIR)\Net\FTP rmdir /s /q $(LIBDIR)\Net\FTP
1620 -if exist $(LIBDIR)\Params rmdir /s /q $(LIBDIR)\Params
1621 -if exist $(LIBDIR)\Parse rmdir /s /q $(LIBDIR)\Parse
1622 -if exist $(LIBDIR)\Perl rmdir /s /q $(LIBDIR)\Perl
1623 -if exist $(LIBDIR)\PerlIO rmdir /s /q $(LIBDIR)\PerlIO
1624 -if exist $(LIBDIR)\Pod\Perldoc rmdir /s /q $(LIBDIR)\Pod\Perldoc
1625 -if exist $(LIBDIR)\Pod\Simple rmdir /s /q $(LIBDIR)\Pod\Simple
1626 -if exist $(LIBDIR)\Pod\Text rmdir /s /q $(LIBDIR)\Pod\Text
1627 -if exist $(LIBDIR)\Scalar rmdir /s /q $(LIBDIR)\Scalar
1628 -if exist $(LIBDIR)\Search rmdir /s /q $(LIBDIR)\Search
1629 -if exist $(LIBDIR)\Sub rmdir /s /q $(LIBDIR)\Sub
1630 -if exist $(LIBDIR)\Sys rmdir /s /q $(LIBDIR)\Sys
1631 -if exist $(LIBDIR)\TAP rmdir /s /q $(LIBDIR)\TAP
1632 -if exist $(LIBDIR)\Term rmdir /s /q $(LIBDIR)\Term
1633 -if exist $(LIBDIR)\Test rmdir /s /q $(LIBDIR)\Test
1634 -if exist $(LIBDIR)\Test2 rmdir /s /q $(LIBDIR)\Test
1635 -if exist $(LIBDIR)\Text rmdir /s /q $(LIBDIR)\Text
1636 -if exist $(LIBDIR)\Thread rmdir /s /q $(LIBDIR)\Thread
1637 -if exist $(LIBDIR)\threads rmdir /s /q $(LIBDIR)\threads
1638 -if exist $(LIBDIR)\Tie\Hash rmdir /s /q $(LIBDIR)\Tie\Hash
1639 -if exist $(LIBDIR)\Unicode\Collate rmdir /s /q $(LIBDIR)\Unicode\Collate
1640 -if exist $(LIBDIR)\Unicode\Collate\Locale rmdir /s /q $(LIBDIR)\Unicode\Collate\Locale
1641 -if exist $(LIBDIR)\version rmdir /s /q $(LIBDIR)\version
1642 -if exist $(LIBDIR)\VMS rmdir /s /q $(LIBDIR)\VMS
1643 -if exist $(LIBDIR)\Win32API rmdir /s /q $(LIBDIR)\Win32API
1644 -if exist $(LIBDIR)\XS rmdir /s /q $(LIBDIR)\XS
1645 -cd $(PODDIR) && del /f *.html *.bat roffitall \
1646 perl5254delta.pod perlaix.pod perlamiga.pod perlandroid.pod \
1647 perlapi.pod perlbs2000.pod perlce.pod perlcn.pod perlcygwin.pod \
1648 perldos.pod perlfreebsd.pod perlhaiku.pod perlhpux.pod \
1649 perlhurd.pod perlintern.pod perlirix.pod perljp.pod perlko.pod \
1650 perllinux.pod perlmacos.pod perlmacosx.pod perlmodlib.pod \
1651 perlnetware.pod perlopenbsd.pod perlos2.pod perlos390.pod \
1652 perlos400.pod perlplan9.pod perlqnx.pod perlriscos.pod \
1653 perlsolaris.pod perlsymbian.pod perlsynology.pod perltoc.pod \
1654 perltru64.pod perltw.pod perluniprops.pod perlvos.pod \
1656 -cd ..\utils && del /f h2ph splain perlbug pl2pm c2ph pstruct h2xs \
1657 perldoc perlivp libnetcfg enc2xs encguess piconv cpan *.bat \
1658 xsubpp pod2html instmodsh json_pp prove ptar ptardiff ptargrep shasum corelist zipdetails
1659 -del /f ..\config.sh perlmain.c dlutils.c config.h.new \
1662 -del /f ..\lib\Config_git.pl
1665 -del /f $(PERLEXE_RES) perl.base
1666 -cd .. && del /s *$(a) *.map *.pdb *.ilk *.bs *$(o) .exists pm_to_blib ppport.h
1667 -cd $(EXTDIR) && del /s *.def Makefile Makefile.old
1668 -cd $(DISTDIR) && del /s *.def Makefile Makefile.old
1669 -cd $(CPANDIR) && del /s *.def Makefile Makefile.old
1670 -del /s ..\utils\Makefile
1671 -if exist $(AUTODIR) rmdir /s /q $(AUTODIR)
1672 -if exist $(COREDIR) rmdir /s /q $(COREDIR)
1673 -if exist pod2htmd.tmp del pod2htmd.tmp
1674 -if exist $(HTMLDIR) rmdir /s /q $(HTMLDIR)
1675 -del /f ..\t\test_state
1677 install : all installbare installhtml
1679 installbare : utils ..\pod\perltoc.pod
1680 $(PERLEXE) ..\installperl
1681 if exist $(WPERLEXE) $(XCOPY) $(WPERLEXE) $(INST_BIN)\$(NULL)
1682 if exist $(PERLEXESTATIC) $(XCOPY) $(PERLEXESTATIC) $(INST_BIN)\$(NULL)
1683 $(XCOPY) $(GLOBEXE) $(INST_BIN)\$(NULL)
1684 if exist ..\perl*.pdb $(XCOPY) ..\perl*.pdb $(INST_BIN)\$(NULL)
1685 $(XCOPY) "bin\*.bat" $(INST_SCRIPT)\$(NULL)
1688 $(RCOPY) $(HTMLDIR)\*.* $(INST_HTML)\$(NULL)
1690 inst_lib : $(CONFIGPM)
1691 $(RCOPY) ..\lib $(INST_LIB)\$(NULL)
1693 $(UNIDATAFILES) : ..\pod\perluniprops.pod
1695 ..\pod\perluniprops.pod: ..\lib\unicore\mktables $(CONFIGPM)
1696 $(MINIPERL) -I..\lib ..\lib\unicore\mktables -C ..\lib\unicore -P ..\pod -maketest -makelist -p
1698 minitest : $(HAVEMINIPERL) $(GLOBEXE) $(CONFIGPM) $(UNIDATAFILES) utils
1699 $(XCOPY) $(MINIPERL) ..\t\$(NULL)
1700 if exist ..\t\perl.exe del /f ..\t\perl.exe
1701 rename ..\t\miniperl.exe perl.exe
1702 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1703 attrib -r "..\t\*.*"
1705 $(MINIPERL) -I..\lib harness base/*.t comp/*.t cmd/*.t io/*.t opbasic/*.t op/*.t pragma/*.t
1707 test-prep : all utils ..\pod\perltoc.pod $(TESTPREPGCC)
1708 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1709 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1710 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1711 # If building with gcc versions 4.x.x or greater, then
1712 # the GCC helper DLL will also need copied to the test directory.
1713 # The name of the dll can change, depending upon which vendor has supplied
1714 # your compiler, and upon the values of "x".
1715 # libstdc++-6.dll is copied if it exists as it, too, may then be needed.
1716 # Without this copying, the op/taint.t test script will fail.
1718 ifeq ($(CCTYPE),GCC)
1721 if exist $(CCDLLDIR)\libgcc_s_seh-1.dll $(XCOPY) $(CCDLLDIR)\libgcc_s_seh-1.dll ..\t\$(NULL)
1722 if exist $(CCDLLDIR)\libgcc_s_sjlj-1.dll $(XCOPY) $(CCDLLDIR)\libgcc_s_sjlj-1.dll ..\t\$(NULL)
1723 if exist $(CCDLLDIR)\libgcc_s_dw2-1.dll $(XCOPY) $(CCDLLDIR)\libgcc_s_dw2-1.dll ..\t\$(NULL)
1724 if exist $(CCDLLDIR)\libstdc++-6.dll $(XCOPY) $(CCDLLDIR)\libstdc++-6.dll ..\t\$(NULL)
1725 if exist $(CCDLLDIR)\libwinpthread-1.dll $(XCOPY) $(CCDLLDIR)\libwinpthread-1.dll ..\t\$(NULL)
1730 set PERL_STATIC_EXT=$(STATIC_EXT) && \
1731 cd ..\t && perl.exe harness $(TEST_SWITCHES) $(TEST_FILES)
1733 test_porting : test-prep
1734 set PERL_STATIC_EXT=$(STATIC_EXT) && \
1735 cd ..\t && perl.exe harness $(TEST_SWITCHES) porting\*.t ..\lib\diagnostics.t
1737 test-reonly : reonly utils
1738 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1739 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1740 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1741 cd ..\t && perl.exe harness $(OPT) -re \bpat\\/ $(EXTRA)
1746 test-notty : test-prep
1747 set PERL_STATIC_EXT=$(STATIC_EXT) && \
1748 set PERL_SKIP_TTY_TEST=1 && \
1749 cd ..\t && perl.exe harness $(TEST_SWITCHES) $(TEST_FILES)
1752 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1753 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1754 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1755 set PERL_STATIC_EXT=$(STATIC_EXT) && \
1756 cd ..\t && perl.exe harness $(TEST_SWITCHES) $(TEST_FILES)
1759 -@erase miniperlmain$(o)
1761 -@erase perlglob$(o)
1762 -@erase perlmain$(o)
1763 -@erase perlmainst$(o)
1765 -@erase /f ..\git_version.h
1769 -@erase $(PERLEXESTATIC)
1770 -@erase $(PERLSTATICLIB)
1773 -@erase $(GENUUDMAP) $(GENUUDMAP_OBJ) $(GENERATED_HEADERS)
1774 -@erase .coreheaders
1775 -if exist $(MINIDIR) rmdir /s /q $(MINIDIR)
1776 -if exist $(UNIDATADIR1) rmdir /s /q $(UNIDATADIR1)
1777 -if exist $(UNIDATADIR2) rmdir /s /q $(UNIDATADIR2)
1778 -@erase $(UNIDATAFILES)
1779 -@erase $(WIN32_OBJ)
1781 -@erase ..\*$(o) ..\*$(a) ..\*.exp *$(o) *$(a) *.exp *.res
1782 -@erase ..\t\*.exe ..\t\*.dll ..\t\*.bat
1784 -@erase *.pdb ..\*.pdb
1785 -@erase Extensions_static
1787 clean : Extensions_clean _clean
1789 realclean : Extensions_realclean _clean
1791 # Handy way to run perlbug -ok without having to install and run the
1792 # installed perlbug. We don't re-run the tests here - we trust the user.
1793 # Please *don't* use this unless all tests pass.
1794 # If you want to report test failures, use "gmake nok" instead.
1795 ok: utils $(PERLEXE) $(PERLDLL) Extensions_nonxs Extensions
1796 $(PERLEXE) ..\utils\perlbug -ok -s "(UNINSTALLED)"
1798 okfile: utils $(PERLEXE) $(PERLDLL) Extensions_nonxs Extensions
1799 $(PERLEXE) ..\utils\perlbug -ok -s "(UNINSTALLED)" -F perl.ok
1801 nok: utils $(PERLEXE) $(PERLDLL) Extensions_nonxs Extensions
1802 $(PERLEXE) ..\utils\perlbug -nok -s "(UNINSTALLED)"
1804 nokfile: utils $(PERLEXE) $(PERLDLL) Extensions_nonxs Extensions
1805 $(PERLEXE) ..\utils\perlbug -nok -s "(UNINSTALLED)" -F perl.nok