This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Configure: note that the infnan tests may crash.
[perl5.git] / win32 / GNUmakefile
1 #
2 # Makefile to build perl on Windows using GMAKE.
3 # Supported compilers:
4 #       Microsoft Visual C++ 6.0 or later
5 #       MinGW with gcc-3.4.5 or later
6 #       Windows SDK 64-bit compiler and tools
7 #
8 # This is set up to build a perl.exe that runs off a shared library
9 # (perl525.dll).  Also makes individual DLLs for the XS extensions.
10 #
11 # The easiest way to customize the build process is to use parameters like this:
12 #
13 # c:\dev\perlsrc\win32> gmake INST_TOP=c:\sw\perl CCHOME=c:\sw\mingw USE_64_BIT_INT=define
14
15
16 ##
17 ## Make sure you read README.win32 *before* you mess with anything here!
18 ##
19
20 #
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
23 #
24 SHELL := cmd.exe
25
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
30 GCCBIN := gcc
31
32 ifeq ($(GCCBIN),x86_64-w64-mingw32-gcc)
33 GCCCROSS := x86_64-w64-mingw32
34 endif
35 ifeq ($(GCCBIN),i686-w64-mingw32-gcc)
36 GCCCROSS := i686-w64-mingw32
37 endif
38
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)
43
44 ##
45 ## Build configuration.  Edit the values below to suit your needs.
46 ##
47
48 #
49 # Set these to wherever you want "gmake install" to put your
50 # newly built perl.
51 #
52 INST_DRV := c:
53 INST_TOP := $(INST_DRV)\perl
54
55 #
56 # Uncomment if you want to build a 32-bit Perl using a 32-bit compiler
57 # on a 64-bit version of Windows.
58 #
59 #WIN64          := undef
60
61 #
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.
69 #
70 #INST_VER       := \5.25.4
71
72 #
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.
80 #
81 #INST_ARCH      := \$(ARCHNAME)
82
83 #
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.
88 #
89 #USE_SITECUST   := define
90
91 #
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.
95 #
96 USE_MULTI       := define
97
98 #
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.
102 #
103 USE_ITHREADS    := define
104
105 #
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.
109 #
110 USE_IMP_SYS     := define
111
112 #
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.
118 #
119 USE_PERLIO      := define
120
121 #
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.
125 #
126 USE_LARGE_FILES := define
127
128 #
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.
133 #
134 #USE_64_BIT_INT := define
135
136 #
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.
139 #
140 #USE_LONG_DOUBLE :=define
141
142 #
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
145 # the Registry.
146 #
147 #USE_NO_REGISTRY := define
148
149 #
150 # uncomment exactly one of the following
151 #
152 # Visual C++ 6.0 (aka Visual C++ 98)
153 #CCTYPE         := MSVC60
154 # Visual C++ .NET 2002/2003 (aka Visual C++ 7.0/7.1) (full version)
155 #CCTYPE         := MSVC70
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)
161 #CCTYPE         := MSVC80
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)
165 #CCTYPE         := MSVC90
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)
169 #CCTYPE         := MSVC100
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)
173 #CCTYPE         := MSVC110
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)
177 #CCTYPE         := MSVC120
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
181 CCTYPE          := GCC
182
183 #
184 # If you are using Intel C++ Compiler uncomment this
185 #
186 #__ICC          := define
187
188 #
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.
192 #
193 #CFG            := Debug
194
195 #
196 # uncomment to enable linking with setargv.obj under the Visual C
197 # compiler. Setting this options enables perl to expand wildcards in
198 # arguments, but it may be harder to use alternate methods like
199 # File::DosGlob that are more powerful.  This option is supported only with
200 # Visual C.
201 #
202 #USE_SETARGV    := define
203
204 #
205 # set this if you wish to use perl's malloc
206 # WARNING: Turning this on/off WILL break binary compatibility with extensions
207 # you may have compiled with/without it.  Be prepared to recompile all
208 # extensions if you change the default.  Currently, this cannot be enabled
209 # if you ask for USE_IMP_SYS above.
210 #
211 #PERL_MALLOC    := define
212
213 #
214 # set this to enable debugging mstats
215 # This must be enabled to use the Devel::Peek::mstat() function.  This cannot
216 # be enabled without PERL_MALLOC as well.
217 #
218 #DEBUG_MSTATS   := define
219
220 #
221 # set this to additionally provide a statically linked perl-static.exe.
222 # Note that dynamic loading will not work with this perl, so you must
223 # include required modules statically using the STATIC_EXT or ALL_STATIC
224 # variables below. A static library perl525s.lib will also be created.
225 # Ordinary perl.exe is not affected by this option.
226 #
227 #BUILD_STATIC   := define
228
229 #
230 # in addition to BUILD_STATIC the option ALL_STATIC makes *every*
231 # extension get statically built
232 # This will result in a very large perl executable, but the main purpose
233 # is to have proper linking set so as to be able to create miscellaneous
234 # executables with different built-in extensions
235 #
236 #ALL_STATIC     := define
237
238 #
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
243 # not be quoted)
244 #
245 ifeq ($(CCTYPE),GCC)
246 CCHOME          := C:\MinGW
247 else
248 CCHOME          := $(MSVCDIR)
249 endif
250
251 #
252 # Following sets $Config{incpath} and $Config{libpth}
253 #
254
255 ifneq ($(GCCCROSS),)
256 CCINCDIR := $(CCHOME)\$(GCCCROSS)\include
257 CCLIBDIR := $(CCHOME)\$(GCCCROSS)\lib
258 CCDLLDIR := $(CCLIBDIR)
259 ARCHPREFIX := $(GCCCROSS)-
260 else
261 CCINCDIR := $(CCHOME)\include
262 CCLIBDIR := $(CCHOME)\lib
263 CCDLLDIR := $(CCHOME)\bin
264 ARCHPREFIX :=
265 endif
266
267 #
268 # Additional compiler flags can be specified here.
269 #
270 BUILDOPT        := $(BUILDOPTEXTRA)
271
272 #
273 # This should normally be disabled.  Enabling it will disable the File::Glob
274 # implementation of CORE::glob.
275 #
276 #BUILDOPT       += -DPERL_EXTERNAL_GLOB
277
278 #
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).
282 #
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.
287 #
288 BUILDOPT        += -DPERL_TEXTMODE_SCRIPTS
289
290 #
291 # specify semicolon-separated list of extra directories that modules will
292 # look for libraries (spaces in path names need not be quoted)
293 #
294 EXTRALIBDIRS    :=
295
296 #
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)
299 #
300 #EMAIL          :=
301
302 ##
303 ## Build configuration ends.
304 ##
305
306 ##################### CHANGE THESE ONLY IF YOU MUST #####################
307
308 PERL_MALLOC     ?= undef
309 DEBUG_MSTATS    ?= undef
310
311 USE_SITECUST    ?= undef
312 USE_MULTI       ?= undef
313 USE_ITHREADS    ?= undef
314 USE_IMP_SYS     ?= undef
315 USE_PERLIO      ?= undef
316 USE_LARGE_FILES ?= undef
317 USE_64_BIT_INT  ?= undef
318 USE_LONG_DOUBLE ?= undef
319 USE_NO_REGISTRY ?= undef
320
321 ifeq ($(USE_IMP_SYS),define)
322 PERL_MALLOC     = undef
323 endif
324
325 ifeq ($(PERL_MALLOC),undef)
326 DEBUG_MSTATS    = undef
327 endif
328
329 ifeq ($(DEBUG_MSTATS),define)
330 BUILDOPT        += -DPERL_DEBUGGING_MSTATS
331 endif
332
333 ifeq ("$(USE_IMP_SYS) $(USE_MULTI)","define undef")
334 USE_MULTI       = define
335 endif
336
337 ifeq ("$(USE_ITHREADS) $(USE_MULTI)","define undef")
338 USE_MULTI       = define
339 endif
340
341 ifeq ($(USE_SITECUST),define)
342 BUILDOPT        += -DUSE_SITECUSTOMIZE
343 endif
344
345 ifneq ($(USE_MULTI),undef)
346 BUILDOPT        += -DPERL_IMPLICIT_CONTEXT
347 endif
348
349 ifneq ($(USE_IMP_SYS),undef)
350 BUILDOPT        += -DPERL_IMPLICIT_SYS
351 endif
352
353 ifeq ($(USE_NO_REGISTRY),define)
354 BUILDOPT        += -DWIN32_NO_REGISTRY
355 endif
356
357 ifeq ($(CCTYPE),GCC)
358 ifeq ($(GCCTARGET),x86_64-w64-mingw32)
359 WIN64 := define
360 PROCESSOR_ARCHITECTURE := x64
361 endif
362 ifeq ($(GCCTARGET),i686-w64-mingw32)
363 WIN64 := undef
364 PROCESSOR_ARCHITECTURE := x86
365 endif
366 endif
367
368 PROCESSOR_ARCHITECTURE  ?= x86
369
370 ifeq ($(WIN64),undef)
371 PROCESSOR_ARCHITECTURE  = x86
372 endif
373
374 ifeq ($(WIN64),)
375 # When we are running from a 32bit cmd.exe on AMD64 then
376 # PROCESSOR_ARCHITECTURE is set to x86 and PROCESSOR_ARCHITEW6432
377 # is set to AMD64
378 ifneq ($(PROCESSOR_ARCHITEW6432),)
379 PROCESSOR_ARCHITECTURE  = $(PROCESSOR_ARCHITEW6432)
380 WIN64                   = define
381 else ifeq ($(PROCESSOR_ARCHITECTURE),AMD64)
382 WIN64                   = define
383 else ifeq ($(PROCESSOR_ARCHITECTURE),IA64)
384 WIN64                   = define
385 else
386 WIN64                   = undef
387 endif
388 endif
389
390 ifeq ($(WIN64),define)
391 USE_64_BIT_INT  = define
392 endif
393
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")
398 CCTYPE          = SDK2003SP1
399 endif
400
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
405 endif
406
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
411 endif
412
413 ARCHITECTURE = $(PROCESSOR_ARCHITECTURE)
414 ifeq ($(ARCHITECTURE),AMD64)
415 ARCHITECTURE    = x64
416 endif
417 ifeq ($(ARCHITECTURE),IA64)
418 ARCHITECTURE    = ia64
419 endif
420
421 ifeq ($(USE_MULTI),define)
422 ARCHNAME        = MSWin32-$(ARCHITECTURE)-multi
423 else
424 ifeq ($(USE_PERLIO),define)
425 ARCHNAME        = MSWin32-$(ARCHITECTURE)-perlio
426 else
427 ARCHNAME        = MSWin32-$(ARCHITECTURE)
428 endif
429 endif
430
431 ifeq ($(USE_PERLIO),define)
432 BUILDOPT        += -DUSE_PERLIO
433 endif
434
435 ifeq ($(USE_ITHREADS),define)
436 ARCHNAME        := $(ARCHNAME)-thread
437 endif
438
439 ifneq ($(WIN64),define)
440 ifeq ($(USE_64_BIT_INT),define)
441 ARCHNAME        := $(ARCHNAME)-64int
442 endif
443 endif
444
445 ifeq ($(USE_LONG_DOUBLE),define)
446 ARCHNAME        := $(ARCHNAME)-ld
447 endif
448
449 ARCHDIR         = ..\lib\$(ARCHNAME)
450 COREDIR         = ..\lib\CORE
451 AUTODIR         = ..\lib\auto
452 LIBDIR          = ..\lib
453 EXTDIR          = ..\ext
454 DISTDIR         = ..\dist
455 CPANDIR         = ..\cpan
456 PODDIR          = ..\pod
457 HTMLDIR         = .\html
458
459 #
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
466
467 #
468 # Programs to compile, build .lib files and link
469 #
470
471 MINIBUILDOPT    :=
472
473 ifeq ($(CCTYPE),GCC)
474
475 CC              = $(ARCHPREFIX)gcc
476 LINK32          = $(ARCHPREFIX)g++
477 LIB32           = $(ARCHPREFIX)ar rc
478 IMPLIB          = $(ARCHPREFIX)dlltool
479 RSC             = $(ARCHPREFIX)windres
480
481 ifeq ($(USE_LONG_DOUBLE),define)
482 BUILDOPT        += -D__USE_MINGW_ANSI_STDIO
483 MINIBUILDOPT    += -D__USE_MINGW_ANSI_STDIO
484 endif
485
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
488 #
489 GCCWRAPV := $(shell if "$(GCCVER1)"=="4" (if "$(GCCVER2)" geq "3" echo define) else if "$(GCCVER1)" geq "5" (echo define))
490
491 ifeq ($(GCCWRAPV),define)
492 BUILDOPT        += -fwrapv
493 MINIBUILDOPT    += -fwrapv
494 endif
495
496 i = .i
497 o = .o
498 a = .a
499
500 #
501 # Options
502 #
503
504 INCLUDES        = -I.\include -I. -I..
505 DEFINES         = -DWIN32
506 ifeq ($(WIN64),define)
507 DEFINES         += -DWIN64 -DCONSERVATIVE
508 endif
509 LOCDEFS         = -DPERLDLL -DPERL_CORE
510 CXX_FLAG        = -xc++
511 LIBC            =
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
515
516 ifeq ($(CFG),Debug)
517 OPTIMIZE        = -g -O2 -DDEBUGGING
518 LINK_DBG        = -g
519 else
520 OPTIMIZE        = -s -O2
521 LINK_DBG        = -s
522 endif
523
524 EXTRACFLAGS     =
525 CFLAGS          = $(EXTRACFLAGS) $(INCLUDES) $(DEFINES) $(LOCDEFS) $(OPTIMIZE)
526 LINK_FLAGS      = $(LINK_DBG) -L"$(INST_COREDIR)" -L"$(CCLIBDIR)"
527 OBJOUT_FLAG     = -o
528 EXEOUT_FLAG     = -o
529 LIBOUT_FLAG     =
530 PDBOUT          =
531
532 BUILDOPT        += -fno-strict-aliasing -mms-bitfields
533 MINIBUILDOPT    += -fno-strict-aliasing
534
535 TESTPREPGCC     = test-prep-gcc
536
537 else
538
539 o = .obj
540
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
548 MINIDELAYLOAD   =
549 else
550 DELAYLOAD       = -DELAYLOAD:ws2_32.dll delayimp.lib
551 #miniperl never does any registry lookups
552 MINIDELAYLOAD   = -DELAYLOAD:advapi32.dll
553 endif
554 endif
555
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
565
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)
569 PREMSVC80       = define
570 else ifeq ($(CCTYPE),MSVC70)
571 PREMSVC80       = define
572 else ifeq ($(CCTYPE),MSVC70FREE)
573 PREMSVC80       = define
574 else
575 PREMSVC80       = undef
576 endif
577
578 ifneq ($(__ICC),define)
579 CC              = cl
580 LINK32          = link
581 else
582 CC              = icl
583 LINK32          = xilink
584 endif
585 LIB32           = $(LINK32) -lib
586 RSC             = rc
587
588 #
589 # Options
590 #
591
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
596 CXX_FLAG        = -TP -EHsc
597
598 LIBC            = msvcrt.lib
599
600 ifeq ($(CFG),Debug)
601 OPTIMIZE        = -Od -MD -Zi -DDEBUGGING
602 LINK_DBG        = -debug
603 else ifeq ($(CFG),DebugSymbols)
604 OPTIMIZE        = -Od -MD -Zi
605 LINK_DBG        = -debug
606 else ifeq ($(CFG),DebugFull)
607 LIBC            = msvcrtd.lib
608 OPTIMIZE        = -Od -MDd -Zi -D_DEBUG -DDEBUGGING
609 LINK_DBG        = -debug
610 else
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)
623 OPTIMIZE        += -GL
624 LINK_DBG        += -ltcg
625 LIB_FLAGS       = -ltcg
626 endif
627 endif
628
629 ifeq ($(WIN64),define)
630 DEFINES         += -DWIN64 -DCONSERVATIVE
631 OPTIMIZE        += -fp:precise
632 endif
633
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
638 endif
639
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
651 endif
652 endif
653
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
658
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
665 endif
666
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
673 endif
674
675 LIBFILES        = $(LIBBASEFILES) $(LIBC)
676
677 EXTRACFLAGS     = -nologo -GF -W3
678 ifeq ($(__ICC),define)
679 EXTRACFLAGS     += -Qstd=c99
680 endif
681 ifeq ($(USE_CPLUSPLUS),define)
682 EXTRACFLAGS     += $(CXX_FLAG)
683 endif
684 CFLAGS          = $(EXTRACFLAGS) $(INCLUDES) $(DEFINES) $(LOCDEFS) \
685                 $(PCHFLAGS) $(OPTIMIZE)
686 LINK_FLAGS      = -nologo -nodefaultlib $(LINK_DBG) \
687                 -libpath:"$(INST_COREDIR)" \
688                 -machine:$(PROCESSOR_ARCHITECTURE)
689 LIB_FLAGS       += -nologo
690 OBJOUT_FLAG     = -Fo
691 EXEOUT_FLAG     = -Fe
692 LIBOUT_FLAG     = /out:
693 PDBOUT          = -Fd$(*).pdb
694 TESTPREPGCC     =
695
696 endif
697
698 CFLAGS_O        = $(CFLAGS) $(BUILDOPT)
699
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='*'"
702 else
703 RSC_FLAGS       = -DINCLUDE_MANIFEST
704 endif
705
706
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
710 # building cmd lines
711
712 ifeq ($(CCTYPE),MSVC120)
713 ifeq ($(WIN64),define)
714 LINK_FLAGS      += -subsystem:console,"5.02"
715 else
716 LINK_FLAGS      += -subsystem:console,"5.01"
717 endif
718
719 else ifeq ($(CCTYPE),MSVC120FREE)
720 ifeq ($(WIN64),define)
721 LINK_FLAGS      += -subsystem:console,"5.02"
722 else
723 LINK_FLAGS      += -subsystem:console,"5.01"
724 endif
725
726 else ifeq ($(CCTYPE),MSVC140)
727 ifeq ($(WIN64),define)
728 LINK_FLAGS      += -subsystem:console,"5.02"
729 else
730 LINK_FLAGS      += -subsystem:console,"5.01"
731 endif
732
733 else ifeq ($(CCTYPE),MSVC140FREE)
734 ifeq ($(WIN64),define)
735 LINK_FLAGS      += -subsystem:console,"5.02"
736 else
737 LINK_FLAGS      += -subsystem:console,"5.01"
738 endif
739
740 else ifneq ($(CCTYPE),GCC)
741 PRIV_LINK_FLAGS += -subsystem:console
742 endif
743
744 BLINK_FLAGS     = $(PRIV_LINK_FLAGS) $(LINK_FLAGS)
745
746 #################### do not edit below this line #######################
747 ############# NO USER-SERVICEABLE PARTS BEYOND THIS POINT ##############
748
749 #prevent -j from reaching EUMM/make_ext.pl/"sub makes", Win32 EUMM not parallel
750 #compatible yet
751 unexport MAKEFLAGS
752
753 a ?= .lib
754
755 .SUFFIXES : .c .i $(o) .dll $(a) .exe .rc .res
756
757 %$(o): %.c
758         $(CC) -c -I$(<D) $(CFLAGS_O) $(OBJOUT_FLAG)$@ $(PDBOUT) $<
759
760 %.i: %.c
761         $(CC) -c -I$(<D) $(CFLAGS_O) -E $< >$@
762
763 %.c: %.y
764         $(NOOP)
765
766 %.dll: %$(o)
767         $(LINK32) -o $@ $(BLINK_FLAGS) $< $(LIBFILES)
768         $(IMPLIB) --input-def $(*F).def --output-lib $(*F).a $@
769
770 %.res: %.rc
771 ifeq ($(CCTYPE),GCC)
772         $(RSC) --use-temp-file --include-dir=. --include-dir=.. -O COFF -D INCLUDE_MANIFEST -i $< -o $@
773 else
774         $(RSC) -i.. -DINCLUDE_MANIFEST $<
775 endif
776
777 #
778 # various targets
779
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
782 #miniperl alone
783 MINIPERL        = ..\miniperl.exe
784 HAVEMINIPERL    = ..\lib\buildcustomize.pl
785 MINIDIR         = mini
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)
794 PERLSTATIC      = static
795 else
796 ifeq ($(ALL_STATIC),define)
797 PERLSTATIC      = static
798 else
799 PERLSTATIC      =
800 endif
801 endif
802
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
808
809 # Directories of Unicode data files generated by mktables
810 UNIDATADIR1     = ..\lib\unicore\To
811 UNIDATADIR2     = ..\lib\unicore\lib
812
813 PERLEXE_MANIFEST= .\perlexe.manifest
814 PERLEXE_ICO     = .\perlexe.ico
815 PERLEXE_RES     = .\perlexe.res
816 PERLDLL_RES     =
817
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
821 # from the .dll
822 PERLDEP = $(PERLIMPLIB)
823
824
825 PL2BAT          = bin\pl2bat.pl
826
827 UTILS           =                       \
828                 ..\utils\h2ph           \
829                 ..\utils\splain         \
830                 ..\utils\perlbug        \
831                 ..\utils\pl2pm          \
832                 ..\utils\c2ph           \
833                 ..\utils\pstruct        \
834                 ..\utils\h2xs           \
835                 ..\utils\perldoc        \
836                 ..\utils\perlivp        \
837                 ..\utils\libnetcfg      \
838                 ..\utils\enc2xs         \
839                 ..\utils\encguess       \
840                 ..\utils\piconv         \
841                 ..\utils\corelist       \
842                 ..\utils\cpan           \
843                 ..\utils\xsubpp         \
844                 ..\utils\pod2html       \
845                 ..\utils\prove          \
846                 ..\utils\ptar           \
847                 ..\utils\ptardiff       \
848                 ..\utils\ptargrep       \
849                 ..\utils\zipdetails     \
850                 ..\utils\shasum         \
851                 ..\utils\instmodsh      \
852                 ..\utils\json_pp        \
853                 bin\exetype.pl          \
854                 bin\runperl.pl          \
855                 bin\pl2bat.pl           \
856                 bin\perlglob.pl         \
857                 bin\search.pl
858
859 ifeq ($(CCTYPE),GCC)
860
861 CFGSH_TMPL      = config.gc
862 CFGH_TMPL       = config_H.gc
863 PERLIMPLIB      = $(COREDIR)\libperl525$(a)
864 PERLIMPLIBBASE  = libperl525$(a)
865 PERLSTATICLIB   = ..\libperl525s$(a)
866 INT64           = long long
867
868 else
869
870 CFGSH_TMPL      = config.vc
871 CFGH_TMPL       = config_H.vc
872 INT64           = __int64
873
874 endif
875
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
883
884 # don't let "gmake -n all" try to run "miniperl.exe make_ext.pl"
885 PLMAKE          = gmake
886
887 XCOPY           = xcopy /f /r /i /d /y
888 RCOPY           = xcopy /f /r /i /e /d /y
889 NOOP            = @rem
890
891 #first ones are arrange in compile time order for faster parallel building
892 #see #123867 for details
893 MICROCORE_SRC   =               \
894                 ..\toke.c       \
895                 ..\regcomp.c    \
896                 ..\regexec.c    \
897                 ..\op.c         \
898                 ..\sv.c         \
899                 ..\pp.c         \
900                 ..\pp_ctl.c     \
901                 ..\pp_sys.c     \
902                 ..\pp_pack.c    \
903                 ..\pp_hot.c     \
904                 ..\gv.c         \
905                 ..\perl.c       \
906                 ..\utf8.c       \
907                 ..\dump.c       \
908                 ..\hv.c         \
909                 ..\av.c         \
910                 ..\caretx.c     \
911                 ..\deb.c        \
912                 ..\doio.c       \
913                 ..\doop.c       \
914                 ..\dquote.c     \
915                 ..\globals.c    \
916                 ..\mro_core.c   \
917                 ..\locale.c     \
918                 ..\keywords.c   \
919                 ..\mathoms.c    \
920                 ..\mg.c         \
921                 ..\numeric.c    \
922                 ..\pad.c        \
923                 ..\perlapi.c    \
924                 ..\perly.c      \
925                 ..\pp_sort.c    \
926                 ..\reentr.c     \
927                 ..\run.c        \
928                 ..\scope.c      \
929                 ..\taint.c      \
930                 ..\time64.c     \
931                 ..\universal.c  \
932                 ..\util.c
933
934 EXTRACORE_SRC   += perllib.c
935
936 ifeq ($(PERL_MALLOC),define)
937 EXTRACORE_SRC   += ..\malloc.c
938 endif
939
940 EXTRACORE_SRC   += ..\perlio.c
941
942 WIN32_SRC       =               \
943                 .\win32.c       \
944                 .\win32sck.c    \
945                 .\win32thread.c \
946                 .\fcrypt.c
947
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
952 #endif
953
954 CORE_NOCFG_H    =               \
955                 ..\av.h         \
956                 ..\cop.h        \
957                 ..\cv.h         \
958                 ..\dosish.h     \
959                 ..\embed.h      \
960                 ..\form.h       \
961                 ..\gv.h         \
962                 ..\handy.h      \
963                 ..\hv.h         \
964                 ..\hv_func.h    \
965                 ..\iperlsys.h   \
966                 ..\mg.h         \
967                 ..\nostdio.h    \
968                 ..\op.h         \
969                 ..\opcode.h     \
970                 ..\perl.h       \
971                 ..\perlapi.h    \
972                 ..\perlsdio.h   \
973                 ..\perly.h      \
974                 ..\pp.h         \
975                 ..\proto.h      \
976                 ..\regcomp.h    \
977                 ..\regexp.h     \
978                 ..\scope.h      \
979                 ..\sv.h         \
980                 ..\thread.h     \
981                 ..\unixish.h    \
982                 ..\utf8.h       \
983                 ..\util.h       \
984                 ..\warnings.h   \
985                 ..\XSUB.h       \
986                 ..\EXTERN.h     \
987                 ..\perlvars.h   \
988                 ..\intrpvar.h   \
989                 .\include\dirent.h      \
990                 .\include\netdb.h       \
991                 .\include\sys\errno2.h  \
992                 .\include\sys\socket.h  \
993                 .\win32.h
994
995 CORE_H          = $(CORE_NOCFG_H) .\config.h ..\git_version.h
996
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)
1001 #a stub ppport.h must be generated so building XS modules, .c->.obj wise, will
1002 #work, so this target also represents creating the COREDIR and filling it
1003 HAVE_COREDIR    = $(COREDIR)\ppport.h
1004
1005 MICROCORE_OBJ   = $(MICROCORE_SRC:.c=$(o))
1006 CORE_OBJ        = $(MICROCORE_OBJ) $(EXTRACORE_SRC:.c=$(o))
1007 WIN32_OBJ       = $(WIN32_SRC:.c=$(o))
1008
1009 MINICORE_OBJ    = $(subst ..\,mini\,$(MICROCORE_OBJ))   \
1010                   $(MINIDIR)\miniperlmain$(o)   \
1011                   $(MINIDIR)\perlio$(o)
1012 MINIWIN32_OBJ   = $(subst .\,mini\,$(WIN32_OBJ))
1013 MINI_OBJ        = $(MINICORE_OBJ) $(MINIWIN32_OBJ)
1014 DLL_OBJ         = $(DYNALOADER)
1015
1016 PERLDLL_OBJ     = $(CORE_OBJ)
1017 PERLEXE_OBJ     = perlmain$(o)
1018 PERLEXEST_OBJ   = perlmainst$(o)
1019
1020 PERLDLL_OBJ     += $(WIN32_OBJ) $(DLL_OBJ)
1021
1022 ifneq ($(USE_SETARGV),)
1023 SETARGV_OBJ     = setargv$(o)
1024 endif
1025
1026 ifeq ($(ALL_STATIC),define)
1027 # some exclusions, unfortunately, until fixed:
1028 #  - MakeMaker isn't capable enough for SDBM_File (small bug)
1029 STATIC_EXT      = * !SDBM_File
1030 else
1031 # specify static extensions here, for example:
1032 # (be sure to include Win32CORE to load Win32 on demand)
1033 #STATIC_EXT     = Win32CORE Cwd Compress/Raw/Zlib
1034 STATIC_EXT      = Win32CORE
1035 endif
1036
1037 DYNALOADER      = ..\DynaLoader$(o)
1038
1039 # vars must be separated by "\t+~\t+", since we're using the tempfile
1040 # version of config_sh.pl (we were overflowing someone's buffer by
1041 # trying to fit them all on the command line)
1042 #       -- BKS 10-17-1999
1043 CFG_VARS        =                                       \
1044                 "INST_TOP=$(INST_TOP)"                  \
1045                 "INST_VER=$(INST_VER)"                  \
1046                 "INST_ARCH=$(INST_ARCH)"                \
1047                 "archname=$(ARCHNAME)"                  \
1048                 "cc=$(CC)"                              \
1049                 "ld=$(LINK32)"                          \
1050                 "ccflags=$(subst ",\",$(EXTRACFLAGS) $(OPTIMIZE) $(DEFINES) $(BUILDOPT))" \
1051                 "usecplusplus=$(USE_CPLUSPLUS)"         \
1052                 "cf_email=$(EMAIL)"                     \
1053                 "d_mymalloc=$(PERL_MALLOC)"             \
1054                 "libs=$(LIBFILES)"                      \
1055                 "incpath=$(subst ",\",$(CCINCDIR))"                     \
1056                 "libperl=$(subst ",\",$(PERLIMPLIBBASE))"               \
1057                 "libpth=$(subst ",\",$(CCLIBDIR);$(EXTRALIBDIRS))"      \
1058                 "libc=$(LIBC)"                          \
1059                 "make=$(PLMAKE)"                                \
1060                 "_o=$(o)"                               \
1061                 "obj_ext=$(o)"                          \
1062                 "_a=$(a)"                               \
1063                 "lib_ext=$(a)"                          \
1064                 "static_ext=$(STATIC_EXT)"              \
1065                 "usethreads=$(USE_ITHREADS)"            \
1066                 "useithreads=$(USE_ITHREADS)"           \
1067                 "usemultiplicity=$(USE_MULTI)"          \
1068                 "useperlio=$(USE_PERLIO)"               \
1069                 "use64bitint=$(USE_64_BIT_INT)"         \
1070                 "uselongdouble=$(USE_LONG_DOUBLE)"      \
1071                 "uselargefiles=$(USE_LARGE_FILES)"      \
1072                 "usesitecustomize=$(USE_SITECUST)"      \
1073                 "LINK_FLAGS=$(subst ",\",$(LINK_FLAGS))"\
1074                 "optimize=$(subst ",\",$(OPTIMIZE))"    \
1075                 "ARCHPREFIX=$(ARCHPREFIX)"              \
1076                 "WIN64=$(WIN64)"
1077
1078 #
1079 # Top targets
1080 #
1081
1082 .PHONY: all info
1083
1084 all : info rebasePE Extensions_nonxs $(PERLSTATIC)
1085
1086 info :
1087         @echo # GCCBIN=$(GCCBIN)
1088         @echo # GCCVER=$(GCCVER1).$(GCCVER2).$(GCCVER3)
1089         @echo # GCCTARGET=$(GCCTARGET)
1090         @echo # GCCCROSS=$(GCCCROSS)
1091         @echo # WIN64=$(WIN64)
1092         @echo # ARCHITECTURE=$(ARCHITECTURE)
1093         @echo # ARCHNAME=$(ARCHNAME)
1094         @echo # MAKE=$(PLMAKE)
1095 ifeq ($(GCCTARGET),)
1096         @echo Unable to detect gcc and/or architecture!
1097         @exit 1
1098 endif
1099
1100
1101 ..\regcomp$(o) : ..\regnodes.h ..\regcharclass.h
1102
1103 ..\regexec$(o) : ..\regnodes.h ..\regcharclass.h
1104
1105 reonly : ..\regnodes.h .\config.h ..\git_version.h $(GLOBEXE) $(HAVEMINIPERL)\
1106         $(CONFIGPM) $(UNIDATAFILES) $(PERLEXE)                          \
1107         Extensions_reonly
1108
1109 static: $(PERLEXESTATIC)
1110
1111 #----------------------------------------------------------------
1112
1113 $(GLOBEXE) : perlglob.c
1114 ifeq ($(CCTYPE),GCC)
1115         $(LINK32) $(OPTIMIZE) $(BLINK_FLAGS) -mconsole -o $@ perlglob.c $(LIBFILES)
1116 else
1117         $(CC) $(OPTIMIZE) $(PDBOUT) -Fe$@ perlglob.c -link $(BLINK_FLAGS) \
1118         setargv$(o) $(LIBFILES) && $(EMBED_EXE_MANI)
1119 endif
1120
1121 ..\git_version.h : $(HAVEMINIPERL) ..\make_patchnum.pl
1122         $(MINIPERL) -I..\lib ..\make_patchnum.pl
1123
1124 # make sure that we recompile perl.c if the git version changes
1125 ..\perl$(o) : ..\git_version.h
1126
1127 ..\config.sh : $(CFGSH_TMPL) config_sh.PL FindExt.pm $(HAVEMINIPERL)
1128         $(MINIPERL) -I..\lib config_sh.PL $(CFG_VARS) $(CFGSH_TMPL) > ..\config.sh
1129
1130 # This target is for when changes to the main config.sh happen.
1131 # Edit config.gc, then make perl using GCC in a minimal configuration (i.e.
1132 # with MULTI, ITHREADS, IMP_SYS, LARGE_FILES and PERLIO off), then make
1133 # this target to regenerate config_H.gc.
1134 regen_config_h:
1135         $(MINIPERL) -I..\lib config_sh.PL $(CFG_VARS) $(CFGSH_TMPL) > ..\config.sh
1136         $(MINIPERL) -I..\lib ..\configpm --chdir=..
1137         -del /f $(CFGH_TMPL)
1138         -$(MINIPERL) -I..\lib config_h.PL "ARCHPREFIX=$(ARCHPREFIX)"
1139         rename config.h $(CFGH_TMPL)
1140
1141 $(CONFIGPM): ..\config.sh config_h.PL
1142         $(MINIPERL) -I..\lib ..\configpm --chdir=..
1143         -$(MINIPERL) -I..\lib config_h.PL "ARCHPREFIX=$(ARCHPREFIX)"
1144
1145 .\config.h : $(CONFIGPM)
1146
1147 # See the comment in Makefile.SH explaining this seemingly cranky ordering
1148 ..\lib\buildcustomize.pl : $(MINI_OBJ) ..\write_buildcustomize.pl
1149 ifeq ($(CCTYPE),GCC)
1150         $(LINK32) -mconsole -o $(MINIPERL) $(BLINK_FLAGS) $(MINI_OBJ) $(LIBFILES)
1151 else
1152         $(LINK32) -out:$(MINIPERL) $(BLINK_FLAGS) \
1153             $(DELAYLOAD) $(MINIDELAYLOAD) $(LIBFILES) $(MINI_OBJ)
1154         $(subst $@,$(MINIPERL),$(EMBED_EXE_MANI))
1155
1156 endif
1157         $(MINIPERL) -I..\lib -f ..\write_buildcustomize.pl ..
1158
1159 #convinence target, get a working miniperl
1160 mp : $(CONFIGPM)
1161
1162 $(MINIDIR)\.exists : $(CFGH_TMPL)
1163         if not exist "$(MINIDIR)" mkdir "$(MINIDIR)"
1164 #
1165 # Copy the template config.h and set configurables at the end of it
1166 # as per the options chosen and compiler used.
1167 # Note: This config.h is only used to build miniperl.exe anyway, but
1168 # it's as well to have its options correct to be sure that it builds
1169 # and so that it's "-V" options are correct for use by makedef.pl. The
1170 # real config.h used to build perl.exe is generated from the top-level
1171 # config_h.SH by config_h.PL (run by miniperl.exe).
1172 #
1173 # MINIDIR generates config.h so miniperl.exe is not rebuilt when the 2nd
1174 # config.h is generated in CONFIGPM target, see also the comments for $(MINI_OBJ).
1175         copy $(CFGH_TMPL) config.h
1176         @(echo.&& \
1177         echo #ifndef _config_h_footer_&& \
1178         echo #define _config_h_footer_&& \
1179         echo #undef Off_t&& \
1180         echo #undef LSEEKSIZE&& \
1181         echo #undef Off_t_size&& \
1182         echo #undef PTRSIZE&& \
1183         echo #undef SSize_t&& \
1184         echo #undef HAS_ATOLL&& \
1185         echo #undef HAS_STRTOLL&& \
1186         echo #undef HAS_STRTOULL&& \
1187         echo #undef Size_t_size&& \
1188         echo #undef IVTYPE&& \
1189         echo #undef UVTYPE&& \
1190         echo #undef IVSIZE&& \
1191         echo #undef UVSIZE&& \
1192         echo #undef NV_PRESERVES_UV&& \
1193         echo #undef NV_PRESERVES_UV_BITS&& \
1194         echo #undef IVdf&& \
1195         echo #undef UVuf&& \
1196         echo #undef UVof&& \
1197         echo #undef UVxf&& \
1198         echo #undef UVXf&& \
1199         echo #undef USE_64_BIT_INT&& \
1200         echo #undef Gconvert&& \
1201         echo #undef HAS_FREXPL&& \
1202         echo #undef HAS_ISNANL&& \
1203         echo #undef HAS_MODFL&& \
1204         echo #undef HAS_MODFL_PROTO&& \
1205         echo #undef HAS_SQRTL&& \
1206         echo #undef HAS_STRTOLD&& \
1207         echo #undef PERL_PRIfldbl&& \
1208         echo #undef PERL_PRIgldbl&& \
1209         echo #undef PERL_PRIeldbl&& \
1210         echo #undef PERL_SCNfldbl&& \
1211         echo #undef NVTYPE&& \
1212         echo #undef NVSIZE&& \
1213         echo #undef LONG_DOUBLESIZE&& \
1214         echo #undef NV_OVERFLOWS_INTEGERS_AT&& \
1215         echo #undef NVef&& \
1216         echo #undef NVff&& \
1217         echo #undef NVgf&& \
1218         echo #undef USE_LONG_DOUBLE)>> config.h
1219 ifeq ($(USE_LARGE_FILES),define)
1220         @(echo #define Off_t $(INT64)&& \
1221         echo #define LSEEKSIZE ^8&& \
1222         echo #define Off_t_size ^8)>> config.h
1223 else
1224         @(echo #define Off_t long&& \
1225         echo #define LSEEKSIZE ^4&& \
1226         echo #define Off_t_size ^4)>> config.h
1227 endif
1228 ifeq ($(WIN64),define)
1229         @(echo #define PTRSIZE ^8&& \
1230         echo #define SSize_t $(INT64)&& \
1231         echo #define HAS_ATOLL&& \
1232         echo #define HAS_STRTOLL&& \
1233         echo #define HAS_STRTOULL&& \
1234         echo #define Size_t_size ^8)>> config.h
1235 else
1236         @(echo #define PTRSIZE ^4&& \
1237         echo #define SSize_t int&& \
1238         echo #undef HAS_ATOLL&& \
1239         echo #undef HAS_STRTOLL&& \
1240         echo #undef HAS_STRTOULL&& \
1241         echo #define Size_t_size ^4)>> config.h
1242 endif
1243 ifeq ($(USE_64_BIT_INT),define)
1244         @(echo #define IVTYPE $(INT64)&& \
1245         echo #define UVTYPE unsigned $(INT64)&& \
1246         echo #define IVSIZE ^8&& \
1247         echo #define UVSIZE ^8)>> config.h
1248 ifeq ($(USE_LONG_DOUBLE),define)
1249         @(echo #define NV_PRESERVES_UV&& \
1250         echo #define NV_PRESERVES_UV_BITS 64)>> config.h
1251 else
1252         @(echo #undef NV_PRESERVES_UV&& \
1253         echo #define NV_PRESERVES_UV_BITS 53)>> config.h
1254 endif
1255         @(echo #define IVdf "I64d"&& \
1256         echo #define UVuf "I64u"&& \
1257         echo #define UVof "I64o"&& \
1258         echo #define UVxf "I64x"&& \
1259         echo #define UVXf "I64X"&& \
1260         echo #define USE_64_BIT_INT)>> config.h
1261 else
1262         @(echo #define IVTYPE long&& \
1263         echo #define UVTYPE unsigned long&& \
1264         echo #define IVSIZE ^4&& \
1265         echo #define UVSIZE ^4&& \
1266         echo #define NV_PRESERVES_UV&& \
1267         echo #define NV_PRESERVES_UV_BITS 32&& \
1268         echo #define IVdf "ld"&& \
1269         echo #define UVuf "lu"&& \
1270         echo #define UVof "lo"&& \
1271         echo #define UVxf "lx"&& \
1272         echo #define UVXf "lX"&& \
1273         echo #undef USE_64_BIT_INT)>> config.h
1274 endif
1275 ifeq ($(USE_LONG_DOUBLE),define)
1276         @(echo #define Gconvert^(x,n,t,b^) sprintf^(^(b^),"%%.*""Lg",^(n^),^(x^)^)&& \
1277         echo #define HAS_FREXPL&& \
1278         echo #define HAS_ISNANL&& \
1279         echo #define HAS_MODFL&& \
1280         echo #define HAS_MODFL_PROTO&& \
1281         echo #define HAS_SQRTL&& \
1282         echo #define HAS_STRTOLD&& \
1283         echo #define PERL_PRIfldbl "Lf"&& \
1284         echo #define PERL_PRIgldbl "Lg"&& \
1285         echo #define PERL_PRIeldbl "Le"&& \
1286         echo #define PERL_SCNfldbl "Lf"&& \
1287         echo #define NVTYPE long double)>> config.h
1288 ifeq ($(WIN64),define)
1289         @(echo #define NVSIZE ^16&& \
1290         echo #define LONG_DOUBLESIZE ^16)>> config.h
1291 else
1292         @(echo #define NVSIZE ^12&& \
1293         echo #define LONG_DOUBLESIZE ^12)>> config.h
1294 endif
1295         @(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&& \
1296         echo #define NVef "Le"&& \
1297         echo #define NVff "Lf"&& \
1298         echo #define NVgf "Lg"&& \
1299         echo #define USE_LONG_DOUBLE)>> config.h
1300 else
1301         @(echo #define Gconvert^(x,n,t,b^) sprintf^(^(b^),"%%.*g",^(n^),^(x^)^)&& \
1302         echo #undef HAS_FREXPL&& \
1303         echo #undef HAS_ISNANL&& \
1304         echo #undef HAS_MODFL&& \
1305         echo #undef HAS_MODFL_PROTO&& \
1306         echo #undef HAS_SQRTL&& \
1307         echo #undef HAS_STRTOLD&& \
1308         echo #undef PERL_PRIfldbl&& \
1309         echo #undef PERL_PRIgldbl&& \
1310         echo #undef PERL_PRIeldbl&& \
1311         echo #undef PERL_SCNfldbl&& \
1312         echo #define NVTYPE double&& \
1313         echo #define NVSIZE ^8&& \
1314         echo #define LONG_DOUBLESIZE ^8&& \
1315         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&& \
1316         echo #define NVef "e"&& \
1317         echo #define NVff "f"&& \
1318         echo #define NVgf "g"&& \
1319         echo #undef USE_LONG_DOUBLE)>> config.h
1320 endif
1321 ifeq ($(USE_CPLUSPLUS),define)
1322         @(echo #define USE_CPLUSPLUS&& \
1323         echo #endif)>> config.h
1324 else
1325         @(echo #undef USE_CPLUSPLUS&& \
1326         echo #endif)>> config.h
1327 endif
1328 #separate line since this is sentinal that this target is done
1329         rem. > $(MINIDIR)\.exists
1330
1331 $(MINICORE_OBJ) : $(CORE_NOCFG_H)
1332         $(CC) -c $(CFLAGS) $(MINIBUILDOPT) -DPERL_EXTERNAL_GLOB -DPERL_IS_MINIPERL $(OBJOUT_FLAG)$@ $(PDBOUT) ..\$(*F).c
1333
1334 $(MINIWIN32_OBJ) : $(CORE_NOCFG_H)
1335         $(CC) -c $(CFLAGS) $(MINIBUILDOPT) -DPERL_IS_MINIPERL $(OBJOUT_FLAG)$@ $(PDBOUT) $(*F).c
1336
1337 # -DPERL_IMPLICIT_SYS needs C++ for perllib.c
1338 # rules wrapped in .IFs break Win9X build (we end up with unbalanced []s unless
1339 # unless the .IF is true), so instead we use a .ELSE with the default.
1340 # This is the only file that depends on perlhost.h, vmem.h, and vdir.h
1341
1342 perllib$(o)     : perllib.c perllibst.h .\perlhost.h .\vdir.h .\vmem.h
1343 ifeq ($(USE_IMP_SYS),define)
1344         $(CC) -c -I. $(CFLAGS_O) $(CXX_FLAG) $(OBJOUT_FLAG)$@ $(PDBOUT) perllib.c
1345 else
1346         $(CC) -c -I. $(CFLAGS_O) $(OBJOUT_FLAG)$@ $(PDBOUT) perllib.c
1347 endif
1348
1349 # 1. we don't want to rebuild miniperl.exe when config.h changes
1350 # 2. we don't want to rebuild miniperl.exe with non-default config.h
1351 # 3. we can't have miniperl.exe depend on git_version.h, as miniperl creates it
1352 $(MINI_OBJ)     : $(MINIDIR)\.exists $(CORE_NOCFG_H)
1353
1354 $(WIN32_OBJ)    : $(CORE_H)
1355
1356 $(CORE_OBJ)     : $(CORE_H)
1357
1358 $(DLL_OBJ)      : $(CORE_H)
1359
1360
1361 perllibst.h : $(HAVEMINIPERL) $(CONFIGPM) create_perllibst_h.pl
1362         $(MINIPERL) -I..\lib create_perllibst_h.pl
1363
1364 perldll.def : $(HAVEMINIPERL) $(CONFIGPM) ..\embed.fnc ..\makedef.pl
1365         $(MINIPERL) -I..\lib -w ..\makedef.pl PLATFORM=win32 $(OPTIMIZE) $(DEFINES) \
1366         $(BUILDOPT) CCTYPE=$(CCTYPE) TARG_DIR=..\ > perldll.def
1367
1368 $(PERLEXPLIB) : $(PERLIMPLIB)
1369
1370 $(PERLIMPLIB) : perldll.def
1371 ifeq ($(CCTYPE),GCC)
1372         $(IMPLIB) -k -d perldll.def -l $(PERLIMPLIB) -e $(PERLEXPLIB)
1373 else
1374         lib -def:perldll.def -machine:$(ARCHITECTURE) /OUT:$(PERLIMPLIB)
1375 endif
1376
1377 $(PERLDLL): $(PERLEXPLIB) $(PERLDLL_OBJ) $(PERLDLL_RES) Extensions_static
1378 ifeq ($(CCTYPE),GCC)
1379         $(LINK32) -mdll -o $@ $(BLINK_FLAGS) \
1380            $(PERLDLL_OBJ) $(shell type Extensions_static) $(LIBFILES) $(PERLEXPLIB)
1381 else
1382         $(LINK32) -dll -out:$@ $(BLINK_FLAGS) \
1383             @Extensions_static \
1384             -base:0x28000000 $(DELAYLOAD) $(LIBFILES) \
1385             $(PERLDLL_RES) $(PERLDLL_OBJ) $(PERLEXPLIB)
1386         $(EMBED_DLL_MANI)
1387 endif
1388
1389 $(PERLSTATICLIB): $(PERLDLL_OBJ) Extensions_static
1390 ifeq ($(CCTYPE),GCC)
1391         $(LIB32) $(LIB_FLAGS) $@ $(PERLDLL_OBJ)
1392         if exist $(STATICDIR) rmdir /s /q $(STATICDIR)
1393         for %%i in ($(shell type Extensions_static)) do \
1394                 @mkdir $(STATICDIR) && cd $(STATICDIR) && \
1395                 $(ARCHPREFIX)ar x ..\%%i && \
1396                 $(ARCHPREFIX)ar q ..\$@ *$(o) && \
1397                 cd .. && rmdir /s /q $(STATICDIR)
1398 else
1399         $(LIB32) $(LIB_FLAGS) -out:$@ @Extensions_static \
1400             $(PERLDLL_OBJ)
1401 endif
1402         $(XCOPY) $(PERLSTATICLIB) $(COREDIR)
1403
1404 $(PERLEXE_RES): perlexe.rc $(PERLEXE_MANIFEST) $(PERLEXE_ICO)
1405
1406 $(MINIDIR)\globals$(o) : $(GENERATED_HEADERS)
1407
1408 $(UUDMAP_H) $(MG_DATA_H) : $(BITCOUNT_H)
1409
1410 $(BITCOUNT_H) : $(GENUUDMAP)
1411         $(GENUUDMAP) $(GENERATED_HEADERS)
1412
1413 $(GENUUDMAP) : ..\mg_raw.h
1414 ifeq ($(CCTYPE),GCC)
1415         $(LINK32) $(CFLAGS_O) -o..\generate_uudmap.exe ..\generate_uudmap.c \
1416         $(BLINK_FLAGS) $(LIBFILES)
1417 else
1418         $(CC) $(CFLAGS_O) $(PDBOUT) -Fe..\generate_uudmap.exe ..\generate_uudmap.c -link $(LIBFILES) $(BLINK_FLAGS)
1419         $(EMBED_EXE_MANI)
1420 endif
1421
1422 #This generates a stub ppport.h & creates & fills /lib/CORE to allow for XS
1423 #building .c->.obj wise (linking is a different thing). This target is AKA
1424 #$(HAVE_COREDIR).
1425 $(COREDIR)\ppport.h : $(CORE_H)
1426         $(XCOPY) *.h $(COREDIR)\\*.*
1427         $(RCOPY) include $(COREDIR)\\*.*
1428         $(XCOPY) ..\\*.h $(COREDIR)\\*.*
1429         rem. > $@
1430
1431 perlmain$(o) : runperl.c $(CONFIGPM)
1432         $(CC) $(subst -DPERLDLL,-UPERLDLL,$(CFLAGS_O)) $(OBJOUT_FLAG)$@ $(PDBOUT) -c runperl.c
1433
1434 perlmainst$(o) : runperl.c $(CONFIGPM)
1435         $(CC) $(CFLAGS_O) $(OBJOUT_FLAG)$@ $(PDBOUT) -c runperl.c
1436
1437 $(PERLEXE): $(CONFIGPM) $(PERLEXE_OBJ) $(PERLEXE_RES) $(PERLIMPLIB)
1438 ifeq ($(CCTYPE),GCC)
1439         $(LINK32) -mconsole -o $@ $(BLINK_FLAGS)  \
1440             $(PERLEXE_OBJ) $(PERLEXE_RES) $(PERLIMPLIB) $(LIBFILES)
1441 else
1442         $(LINK32) -out:$@ $(BLINK_FLAGS) \
1443             $(PERLEXE_OBJ) $(PERLEXE_RES) $(PERLIMPLIB) $(LIBFILES) $(SETARGV_OBJ)
1444         $(EMBED_EXE_MANI)
1445 endif
1446         copy $(PERLEXE) $(WPERLEXE)
1447         $(MINIPERL) -I..\lib bin\exetype.pl $(WPERLEXE) WINDOWS
1448
1449 $(PERLEXESTATIC): $(PERLSTATICLIB) $(CONFIGPM) $(PERLEXEST_OBJ) $(PERLEXE_RES)
1450 ifeq ($(CCTYPE),GCC)
1451         $(LINK32) -mconsole -o $@ $(BLINK_FLAGS) \
1452             $(PERLEXEST_OBJ) $(PERLEXE_RES) $(PERLSTATICLIB) $(LIBFILES)
1453 else
1454         $(LINK32) -out:$@ $(BLINK_FLAGS) \
1455             $(PERLEXEST_OBJ) $(PERLEXE_RES) $(PERLSTATICLIB) $(LIBFILES) $(SETARGV_OBJ)
1456         $(EMBED_EXE_MANI)
1457 endif
1458
1459 #-------------------------------------------------------------------------------
1460 # There's no direct way to mark a dependency on
1461 # DynaLoader.pm, so this will have to do
1462
1463 #most of deps of this target are in DYNALOADER and therefore omitted here
1464 Extensions : $(PERLDEP) $(DYNALOADER) $(GLOBEXE)
1465         $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(PLMAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --dynamic !Unicode/Normalize
1466
1467 Extensions_normalize : $(PERLDEP) $(DYNALOADER) $(GLOBEXE) $(UNIDATAFILES)
1468         $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(PLMAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --dynamic +Unicode/Normalize
1469
1470 Extensions_reonly : $(PERLDEP) $(DYNALOADER)
1471         $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(PLMAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --dynamic +re
1472
1473 Extensions_static : ..\make_ext.pl list_static_libs.pl $(CONFIGPM) $(GLOBEXE) $(HAVE_COREDIR)
1474         $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(PLMAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --static
1475         $(MINIPERL) -I..\lib list_static_libs.pl > Extensions_static
1476
1477 Extensions_nonxs : ..\make_ext.pl ..\pod\perlfunc.pod $(CONFIGPM) $(GLOBEXE)
1478         $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(PLMAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --nonxs !libs
1479
1480 #lib must be built, it can't be buildcustomize.pl-ed, and is required for XS building
1481 $(DYNALOADER) : ..\make_ext.pl $(CONFIGPM) $(HAVE_COREDIR)
1482         $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(PLMAKE)" --dir=$(EXTDIR) --dir=$(DISTDIR) --dynaloader lib
1483
1484 Extensions_clean :
1485         -if exist $(MINIPERL) $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(PLMAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --all --target=clean
1486
1487 Extensions_realclean :
1488         -if exist $(MINIPERL) $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(PLMAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --all --target=realclean
1489
1490 # all PE files need to be built by the time this target runs, PP files can still
1491 # be running in parallel like UNIDATAFILES, this target a placeholder for the
1492 # future
1493 ifeq ($(BUILD_STATIC),define)
1494 rebasePE : Extensions $(PERLDLL) Extensions_normalize $(PERLEXE) $(PERLEXESTATIC)
1495 else
1496 rebasePE : Extensions $(PERLDLL) Extensions_normalize $(PERLEXE)
1497 endif
1498         $(NOOP)
1499
1500 #-------------------------------------------------------------------------------
1501
1502 doc: $(PERLEXE) $(PERLDLL) ..\pod\perltoc.pod
1503         $(PERLEXE) -I..\lib ..\installhtml --podroot=.. --htmldir=$(HTMLDIR) \
1504             --podpath=pod:lib:utils --htmlroot="file://$(subst :,|,$(INST_HTML))"\
1505             --recurse
1506
1507 ..\utils\Makefile: $(CONFIGPM) ..\utils\Makefile.PL
1508         $(MINIPERL) -I..\lib ..\utils\Makefile.PL ..
1509
1510 # Note that this next section is parsed (and regenerated) by pod/buildtoc
1511 # so please check that script before making structural changes here
1512 utils: $(HAVEMINIPERL) ..\utils\Makefile
1513         cd ..\utils && $(PLMAKE) PERL=$(MINIPERL)
1514         copy ..\README.aix      ..\pod\perlaix.pod
1515         copy ..\README.amiga    ..\pod\perlamiga.pod
1516         copy ..\README.android  ..\pod\perlandroid.pod
1517         copy ..\README.bs2000   ..\pod\perlbs2000.pod
1518         copy ..\README.ce       ..\pod\perlce.pod
1519         copy ..\README.cn       ..\pod\perlcn.pod
1520         copy ..\README.cygwin   ..\pod\perlcygwin.pod
1521         copy ..\README.dos      ..\pod\perldos.pod
1522         copy ..\README.freebsd  ..\pod\perlfreebsd.pod
1523         copy ..\README.haiku    ..\pod\perlhaiku.pod
1524         copy ..\README.hpux     ..\pod\perlhpux.pod
1525         copy ..\README.hurd     ..\pod\perlhurd.pod
1526         copy ..\README.irix     ..\pod\perlirix.pod
1527         copy ..\README.jp       ..\pod\perljp.pod
1528         copy ..\README.ko       ..\pod\perlko.pod
1529         copy ..\README.linux    ..\pod\perllinux.pod
1530         copy ..\README.macos    ..\pod\perlmacos.pod
1531         copy ..\README.macosx   ..\pod\perlmacosx.pod
1532         copy ..\README.netware  ..\pod\perlnetware.pod
1533         copy ..\README.openbsd  ..\pod\perlopenbsd.pod
1534         copy ..\README.os2      ..\pod\perlos2.pod
1535         copy ..\README.os390    ..\pod\perlos390.pod
1536         copy ..\README.os400    ..\pod\perlos400.pod
1537         copy ..\README.plan9    ..\pod\perlplan9.pod
1538         copy ..\README.qnx      ..\pod\perlqnx.pod
1539         copy ..\README.riscos   ..\pod\perlriscos.pod
1540         copy ..\README.solaris  ..\pod\perlsolaris.pod
1541         copy ..\README.symbian  ..\pod\perlsymbian.pod
1542         copy ..\README.synology ..\pod\perlsynology.pod
1543         copy ..\README.tru64    ..\pod\perltru64.pod
1544         copy ..\README.tw       ..\pod\perltw.pod
1545         copy ..\README.vos      ..\pod\perlvos.pod
1546         copy ..\README.win32    ..\pod\perlwin32.pod
1547         copy ..\pod\perldelta.pod ..\pod\perl5254delta.pod
1548         $(MINIPERL) -I..\lib $(PL2BAT) $(UTILS)
1549         $(MINIPERL) -I..\lib ..\autodoc.pl ..
1550         $(MINIPERL) -I..\lib ..\pod\perlmodlib.PL -q ..
1551
1552 ..\pod\perltoc.pod: $(PERLEXE) $(PERLDLL) Extensions Extensions_nonxs Extensions_normalize utils
1553         $(PERLEXE) -f ..\pod\buildtoc -q
1554
1555 # Note that the pod cleanup in this next section is parsed (and regenerated
1556 # by pod/buildtoc so please check that script before making changes here
1557
1558 distclean: realclean
1559         -del /f $(MINIPERL) $(PERLEXE) $(PERLDLL) $(GLOBEXE) \
1560                 $(PERLIMPLIB) ..\miniperl$(a) $(PERLEXESTATIC) $(PERLSTATICLIB)
1561         -del /f $(LIBDIR)\Encode.pm $(LIBDIR)\encoding.pm $(LIBDIR)\Errno.pm
1562         -del /f $(LIBDIR)\Config.pod $(LIBDIR)\POSIX.pod $(LIBDIR)\threads.pm
1563         -del /f $(LIBDIR)\.exists $(LIBDIR)\attributes.pm $(LIBDIR)\DynaLoader.pm
1564         -del /f $(LIBDIR)\Fcntl.pm $(LIBDIR)\IO.pm $(LIBDIR)\Opcode.pm
1565         -del /f $(LIBDIR)\ops.pm $(LIBDIR)\Safe.pm
1566         -del /f $(LIBDIR)\SDBM_File.pm $(LIBDIR)\Socket.pm $(LIBDIR)\POSIX.pm
1567         -del /f $(LIBDIR)\B.pm $(LIBDIR)\O.pm $(LIBDIR)\re.pm
1568         -del /f $(LIBDIR)\File\Glob.pm
1569         -del /f $(LIBDIR)\Storable.pm
1570         -del /f $(LIBDIR)\Sys\Hostname.pm
1571         -del /f $(LIBDIR)\Time\HiRes.pm
1572         -del /f $(LIBDIR)\Unicode\Normalize.pm
1573         -del /f $(LIBDIR)\Math\BigInt\FastCalc.pm
1574         -del /f $(LIBDIR)\Win32.pm
1575         -del /f $(LIBDIR)\Win32CORE.pm
1576         -del /f $(LIBDIR)\Win32API\File.pm
1577         -del /f $(LIBDIR)\Win32API\File\cFile.pc
1578         -del /f $(LIBDIR)\buildcustomize.pl
1579         -del /f $(DISTDIR)\XSLoader\XSLoader.pm
1580         -del /f *.def *.map
1581         -if exist $(LIBDIR)\App rmdir /s /q $(LIBDIR)\App
1582         -if exist $(LIBDIR)\Archive rmdir /s /q $(LIBDIR)\Archive
1583         -if exist $(LIBDIR)\Attribute rmdir /s /q $(LIBDIR)\Attribute
1584         -if exist $(LIBDIR)\autodie rmdir /s /q $(LIBDIR)\autodie
1585         -if exist $(LIBDIR)\Carp rmdir /s /q $(LIBDIR)\Carp
1586         -if exist $(LIBDIR)\Compress rmdir /s /q $(LIBDIR)\Compress
1587         -if exist $(LIBDIR)\Config\Perl rmdir /s /q $(LIBDIR)\Config\Perl
1588         -if exist $(LIBDIR)\CPAN rmdir /s /q $(LIBDIR)\CPAN
1589         -if exist $(LIBDIR)\Data rmdir /s /q $(LIBDIR)\Data
1590         -if exist $(LIBDIR)\Devel rmdir /s /q $(LIBDIR)\Devel
1591         -if exist $(LIBDIR)\Digest rmdir /s /q $(LIBDIR)\Digest
1592         -if exist $(LIBDIR)\Encode rmdir /s /q $(LIBDIR)\Encode
1593         -if exist $(LIBDIR)\encoding rmdir /s /q $(LIBDIR)\encoding
1594         -if exist $(LIBDIR)\Exporter rmdir /s /q $(LIBDIR)\Exporter
1595         -if exist $(LIBDIR)\ExtUtils\CBuilder rmdir /s /q $(LIBDIR)\ExtUtils\CBuilder
1596         -if exist $(LIBDIR)\ExtUtils\Command rmdir /s /q $(LIBDIR)\ExtUtils\Command
1597         -if exist $(LIBDIR)\ExtUtils\Constant rmdir /s /q $(LIBDIR)\ExtUtils\Constant
1598         -if exist $(LIBDIR)\ExtUtils\Liblist rmdir /s /q $(LIBDIR)\ExtUtils\Liblist
1599         -if exist $(LIBDIR)\ExtUtils\MakeMaker rmdir /s /q $(LIBDIR)\ExtUtils\MakeMaker
1600         -if exist $(LIBDIR)\ExtUtils\ParseXS rmdir /s /q $(LIBDIR)\ExtUtils\ParseXS
1601         -if exist $(LIBDIR)\ExtUtils\Typemaps rmdir /s /q $(LIBDIR)\ExtUtils\Typemaps
1602         -if exist $(LIBDIR)\File\Spec rmdir /s /q $(LIBDIR)\File\Spec
1603         -if exist $(LIBDIR)\Filter rmdir /s /q $(LIBDIR)\Filter
1604         -if exist $(LIBDIR)\Hash rmdir /s /q $(LIBDIR)\Hash
1605         -if exist $(LIBDIR)\HTTP rmdir /s /q $(LIBDIR)\HTTP
1606         -if exist $(LIBDIR)\I18N rmdir /s /q $(LIBDIR)\I18N
1607         -if exist $(LIBDIR)\inc rmdir /s /q $(LIBDIR)\inc
1608         -if exist $(LIBDIR)\IO rmdir /s /q $(LIBDIR)\IO
1609         -if exist $(LIBDIR)\IPC rmdir /s /q $(LIBDIR)\IPC
1610         -if exist $(LIBDIR)\JSON rmdir /s /q $(LIBDIR)\JSON
1611         -if exist $(LIBDIR)\List rmdir /s /q $(LIBDIR)\List
1612         -if exist $(LIBDIR)\Locale rmdir /s /q $(LIBDIR)\Locale
1613         -if exist $(LIBDIR)\Math rmdir /s /q $(LIBDIR)\Math
1614         -if exist $(LIBDIR)\Memoize rmdir /s /q $(LIBDIR)\Memoize
1615         -if exist $(LIBDIR)\MIME rmdir /s /q $(LIBDIR)\MIME
1616         -if exist $(LIBDIR)\Module rmdir /s /q $(LIBDIR)\Module
1617         -if exist $(LIBDIR)\Net\FTP rmdir /s /q $(LIBDIR)\Net\FTP
1618         -if exist $(LIBDIR)\Params rmdir /s /q $(LIBDIR)\Params
1619         -if exist $(LIBDIR)\Parse rmdir /s /q $(LIBDIR)\Parse
1620         -if exist $(LIBDIR)\Perl rmdir /s /q $(LIBDIR)\Perl
1621         -if exist $(LIBDIR)\PerlIO rmdir /s /q $(LIBDIR)\PerlIO
1622         -if exist $(LIBDIR)\Pod\Perldoc rmdir /s /q $(LIBDIR)\Pod\Perldoc
1623         -if exist $(LIBDIR)\Pod\Simple rmdir /s /q $(LIBDIR)\Pod\Simple
1624         -if exist $(LIBDIR)\Pod\Text rmdir /s /q $(LIBDIR)\Pod\Text
1625         -if exist $(LIBDIR)\Scalar rmdir /s /q $(LIBDIR)\Scalar
1626         -if exist $(LIBDIR)\Search rmdir /s /q $(LIBDIR)\Search
1627         -if exist $(LIBDIR)\Sub rmdir /s /q $(LIBDIR)\Sub
1628         -if exist $(LIBDIR)\Sys rmdir /s /q $(LIBDIR)\Sys
1629         -if exist $(LIBDIR)\TAP rmdir /s /q $(LIBDIR)\TAP
1630         -if exist $(LIBDIR)\Term rmdir /s /q $(LIBDIR)\Term
1631         -if exist $(LIBDIR)\Test rmdir /s /q $(LIBDIR)\Test
1632         -if exist $(LIBDIR)\Test2 rmdir /s /q $(LIBDIR)\Test
1633         -if exist $(LIBDIR)\Text rmdir /s /q $(LIBDIR)\Text
1634         -if exist $(LIBDIR)\Thread rmdir /s /q $(LIBDIR)\Thread
1635         -if exist $(LIBDIR)\threads rmdir /s /q $(LIBDIR)\threads
1636         -if exist $(LIBDIR)\Tie\Hash rmdir /s /q $(LIBDIR)\Tie\Hash
1637         -if exist $(LIBDIR)\Unicode\Collate rmdir /s /q $(LIBDIR)\Unicode\Collate
1638         -if exist $(LIBDIR)\Unicode\Collate\Locale rmdir /s /q $(LIBDIR)\Unicode\Collate\Locale
1639         -if exist $(LIBDIR)\version rmdir /s /q $(LIBDIR)\version
1640         -if exist $(LIBDIR)\VMS rmdir /s /q $(LIBDIR)\VMS
1641         -if exist $(LIBDIR)\Win32API rmdir /s /q $(LIBDIR)\Win32API
1642         -if exist $(LIBDIR)\XS rmdir /s /q $(LIBDIR)\XS
1643         -cd $(PODDIR) && del /f *.html *.bat roffitall \
1644             perl5254delta.pod perlaix.pod perlamiga.pod perlandroid.pod \
1645             perlapi.pod perlbs2000.pod perlce.pod perlcn.pod perlcygwin.pod \
1646             perldos.pod perlfreebsd.pod perlhaiku.pod perlhpux.pod \
1647             perlhurd.pod perlintern.pod perlirix.pod perljp.pod perlko.pod \
1648             perllinux.pod perlmacos.pod perlmacosx.pod perlmodlib.pod \
1649             perlnetware.pod perlopenbsd.pod perlos2.pod perlos390.pod \
1650             perlos400.pod perlplan9.pod perlqnx.pod perlriscos.pod \
1651             perlsolaris.pod perlsymbian.pod perlsynology.pod perltoc.pod \
1652             perltru64.pod perltw.pod perluniprops.pod perlvos.pod \
1653             perlwin32.pod
1654         -cd ..\utils && del /f h2ph splain perlbug pl2pm c2ph pstruct h2xs \
1655             perldoc perlivp libnetcfg enc2xs encguess piconv cpan *.bat \
1656             xsubpp pod2html instmodsh json_pp prove ptar ptardiff ptargrep shasum corelist zipdetails
1657         -del /f ..\config.sh perlmain.c dlutils.c config.h.new \
1658             perlmainst.c
1659         -del /f $(CONFIGPM)
1660         -del /f ..\lib\Config_git.pl
1661         -del /f "bin\*.bat"
1662         -del /f perllibst.h
1663         -del /f $(PERLEXE_RES) perl.base
1664         -cd .. && del /s *$(a) *.map *.pdb *.ilk *.bs *$(o) .exists pm_to_blib ppport.h
1665         -cd $(EXTDIR) && del /s *.def Makefile Makefile.old
1666         -cd $(DISTDIR) && del /s *.def Makefile Makefile.old
1667         -cd $(CPANDIR) && del /s *.def Makefile Makefile.old
1668         -del /s ..\utils\Makefile
1669         -if exist $(AUTODIR) rmdir /s /q $(AUTODIR)
1670         -if exist $(COREDIR) rmdir /s /q $(COREDIR)
1671         -if exist pod2htmd.tmp del pod2htmd.tmp
1672         -if exist $(HTMLDIR) rmdir /s /q $(HTMLDIR)
1673         -del /f ..\t\test_state
1674
1675 install : all installbare installhtml
1676
1677 installbare : utils ..\pod\perltoc.pod
1678         $(PERLEXE) ..\installperl
1679         if exist $(WPERLEXE) $(XCOPY) $(WPERLEXE) $(INST_BIN)\$(NULL)
1680         if exist $(PERLEXESTATIC) $(XCOPY) $(PERLEXESTATIC) $(INST_BIN)\$(NULL)
1681         $(XCOPY) $(GLOBEXE) $(INST_BIN)\$(NULL)
1682         if exist ..\perl*.pdb $(XCOPY) ..\perl*.pdb $(INST_BIN)\$(NULL)
1683         $(XCOPY) "bin\*.bat" $(INST_SCRIPT)\$(NULL)
1684
1685 installhtml : doc
1686         $(RCOPY) $(HTMLDIR)\*.* $(INST_HTML)\$(NULL)
1687
1688 inst_lib : $(CONFIGPM)
1689         $(RCOPY) ..\lib $(INST_LIB)\$(NULL)
1690
1691 $(UNIDATAFILES) : ..\pod\perluniprops.pod
1692
1693 ..\pod\perluniprops.pod: ..\lib\unicore\mktables $(CONFIGPM)
1694         $(MINIPERL) -I..\lib ..\lib\unicore\mktables -C ..\lib\unicore -P ..\pod -maketest -makelist -p
1695
1696 minitest : $(HAVEMINIPERL) $(GLOBEXE) $(CONFIGPM) $(UNIDATAFILES) utils
1697         $(XCOPY) $(MINIPERL) ..\t\$(NULL)
1698         if exist ..\t\perl.exe del /f ..\t\perl.exe
1699         rename ..\t\miniperl.exe perl.exe
1700         $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1701         attrib -r "..\t\*.*"
1702         cd ..\t && \
1703         $(MINIPERL) -I..\lib harness base/*.t comp/*.t cmd/*.t io/*.t opbasic/*.t op/*.t pragma/*.t
1704
1705 test-prep : all utils ..\pod\perltoc.pod $(TESTPREPGCC)
1706         $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1707         $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1708         $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1709 # If building with gcc versions 4.x.x or greater, then
1710 # the GCC helper DLL will also need copied to the test directory.
1711 # The name of the dll can change, depending upon which vendor has supplied
1712 # your compiler, and upon the values of "x".
1713 # libstdc++-6.dll is copied if it exists as it, too, may then be needed.
1714 # Without this copying, the op/taint.t test script will fail.
1715
1716 ifeq ($(CCTYPE),GCC)
1717
1718 test-prep-gcc :
1719         if exist $(CCDLLDIR)\libgcc_s_seh-1.dll $(XCOPY) $(CCDLLDIR)\libgcc_s_seh-1.dll ..\t\$(NULL)
1720         if exist $(CCDLLDIR)\libgcc_s_sjlj-1.dll $(XCOPY) $(CCDLLDIR)\libgcc_s_sjlj-1.dll ..\t\$(NULL)
1721         if exist $(CCDLLDIR)\libgcc_s_dw2-1.dll $(XCOPY) $(CCDLLDIR)\libgcc_s_dw2-1.dll ..\t\$(NULL)
1722         if exist $(CCDLLDIR)\libstdc++-6.dll $(XCOPY) $(CCDLLDIR)\libstdc++-6.dll ..\t\$(NULL)
1723         if exist $(CCDLLDIR)\libwinpthread-1.dll $(XCOPY) $(CCDLLDIR)\libwinpthread-1.dll ..\t\$(NULL)
1724
1725 endif
1726
1727 test : test-prep
1728         set PERL_STATIC_EXT=$(STATIC_EXT) && \
1729             cd ..\t && perl.exe harness $(TEST_SWITCHES) $(TEST_FILES)
1730
1731 test_porting : test-prep
1732         set PERL_STATIC_EXT=$(STATIC_EXT) && \
1733             cd ..\t && perl.exe harness $(TEST_SWITCHES) porting\*.t ..\lib\diagnostics.t
1734
1735 test-reonly : reonly utils
1736         $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1737         $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1738         $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1739         cd ..\t && perl.exe harness $(OPT) -re \bpat\\/ $(EXTRA)
1740
1741 regen :
1742         cd .. && regen.pl
1743
1744 test-notty : test-prep
1745         set PERL_STATIC_EXT=$(STATIC_EXT) && \
1746             set PERL_SKIP_TTY_TEST=1 && \
1747             cd ..\t && perl.exe harness $(TEST_SWITCHES) $(TEST_FILES)
1748
1749 _test :
1750         $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1751         $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1752         $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1753         set PERL_STATIC_EXT=$(STATIC_EXT) && \
1754             cd ..\t && perl.exe harness $(TEST_SWITCHES) $(TEST_FILES)
1755
1756 _clean :
1757         -@erase miniperlmain$(o)
1758         -@erase $(MINIPERL)
1759         -@erase perlglob$(o)
1760         -@erase perlmain$(o)
1761         -@erase perlmainst$(o)
1762         -@erase /f config.h
1763         -@erase /f ..\git_version.h
1764         -@erase $(GLOBEXE)
1765         -@erase $(PERLEXE)
1766         -@erase $(WPERLEXE)
1767         -@erase $(PERLEXESTATIC)
1768         -@erase $(PERLSTATICLIB)
1769         -@erase $(PERLDLL)
1770         -@erase $(CORE_OBJ)
1771         -@erase $(GENUUDMAP) $(GENUUDMAP_OBJ) $(GENERATED_HEADERS)
1772         -if exist $(MINIDIR) rmdir /s /q $(MINIDIR)
1773         -if exist $(UNIDATADIR1) rmdir /s /q $(UNIDATADIR1)
1774         -if exist $(UNIDATADIR2) rmdir /s /q $(UNIDATADIR2)
1775         -@erase $(UNIDATAFILES)
1776         -@erase $(WIN32_OBJ)
1777         -@erase $(DLL_OBJ)
1778         -@erase ..\*$(o) ..\*$(a) ..\*.exp *$(o) *$(a) *.exp *.res
1779         -@erase ..\t\*.exe ..\t\*.dll ..\t\*.bat
1780         -@erase *.ilk
1781         -@erase *.pdb ..\*.pdb
1782         -@erase Extensions_static
1783
1784 clean : Extensions_clean _clean
1785
1786 realclean : Extensions_realclean _clean
1787
1788 # Handy way to run perlbug -ok without having to install and run the
1789 # installed perlbug. We don't re-run the tests here - we trust the user.
1790 # Please *don't* use this unless all tests pass.
1791 # If you want to report test failures, use "gmake nok" instead.
1792 ok: utils $(PERLEXE) $(PERLDLL) Extensions_nonxs Extensions
1793         $(PERLEXE) ..\utils\perlbug -ok -s "(UNINSTALLED)"
1794
1795 okfile: utils $(PERLEXE) $(PERLDLL) Extensions_nonxs Extensions
1796         $(PERLEXE) ..\utils\perlbug -ok -s "(UNINSTALLED)" -F perl.ok
1797
1798 nok: utils $(PERLEXE) $(PERLDLL) Extensions_nonxs Extensions
1799         $(PERLEXE) ..\utils\perlbug -nok -s "(UNINSTALLED)"
1800
1801 nokfile: utils $(PERLEXE) $(PERLDLL) Extensions_nonxs Extensions
1802         $(PERLEXE) ..\utils\perlbug -nok -s "(UNINSTALLED)" -F perl.nok
1803