This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Eliminate empty conditional branch
[perl5.git] / win32 / Makefile
CommitLineData
9e42cd94 1#
b6c85593 2# Makefile to build perl on Windows using Microsoft NMAKE.
9e42cd94 3# Supported compilers:
b6c85593 4# Microsoft Visual C++ 6.0 or later
02e200fc 5# Windows SDK 64-bit compiler and tools
9e42cd94
GS
6#
7# This is set up to build a perl.exe that runs off a shared library
d361a1e6 8# (perl529.dll). Also makes individual DLLs for the XS extensions.
9e42cd94
GS
9#
10
11##
12## Make sure you read README.win32 *before* you mess with anything here!
13##
14
15##
16## Build configuration. Edit the values below to suit your needs.
17##
18
19#
20# Set these to wherever you want "nmake install" to put your
21# newly built perl.
22#
23INST_DRV = c:
24INST_TOP = $(INST_DRV)\perl
25
26#
b86e806e
JD
27# Uncomment if you want to build a 32-bit Perl using a 32-bit compiler
28# on a 64-bit version of Windows.
890b5089 29#
b86e806e
JD
30#WIN64 = undef
31
32#
9e42cd94
GS
33# Comment this out if you DON'T want your perl installation to be versioned.
34# This means that the new installation will overwrite any files from the
35# old installation at the same INST_TOP location. Leaving it enabled is
36# the safest route, as perl adds the extra version directory to all the
37# locations it installs files to. If you disable it, an alternative
38# versioned installation can be obtained by setting INST_TOP above to a
39# path that includes an arbitrary version string.
40#
1bfbad52 41#INST_VER = \5.29.6
9e42cd94
GS
42
43#
44# Comment this out if you DON'T want your perl installation to have
45# architecture specific components. This means that architecture-
46# specific files will be installed along with the architecture-neutral
47# files. Leaving it enabled is safer and more flexible, in case you
48# want to build multiple flavors of perl and install them together in
49# the same location. Commenting it out gives you a simpler
50# installation that is easier to understand for beginners.
51#
bdb4cb88 52#INST_ARCH = \$(ARCHNAME)
9e42cd94
GS
53
54#
7ada00a0
SH
55# Uncomment this if you want perl to run
56# $Config{sitelibexp}\sitecustomize.pl
57# before anything else. This script can then be set up, for example,
58# to add additional entries to @INC.
59#
60#USE_SITECUST = define
61
62#
4fef8ef3
SH
63# uncomment to enable multiple interpreters. This is needed for fork()
64# emulation and for thread support, and is auto-enabled by USE_IMP_SYS
65# and USE_ITHREADS below.
9e42cd94 66#
bdb4cb88 67USE_MULTI = define
9e42cd94
GS
68
69#
4fef8ef3
SH
70# Interpreter cloning/threads; now reasonably complete.
71# This should be enabled to get the fork() emulation. This needs (and
72# will auto-enable) USE_MULTI above.
9e42cd94 73#
bdb4cb88 74USE_ITHREADS = define
9e42cd94
GS
75
76#
77# uncomment to enable the implicit "host" layer for all system calls
4fef8ef3
SH
78# made by perl. This is also needed to get fork(). This needs (and
79# will auto-enable) USE_MULTI above.
9e42cd94 80#
bdb4cb88 81USE_IMP_SYS = define
9e42cd94
GS
82
83#
4a9d6100
GS
84# Comment this out if you don't want to enable large file support for
85# some reason. Should normally only be changed to maintain compatibility
86# with an older release of perl.
890b5089 87#
bdb4cb88 88USE_LARGE_FILES = define
4a9d6100
GS
89
90#
1f64ae15
SH
91# Uncomment this if you're building a 32-bit perl and want 64-bit integers.
92# (If you're building a 64-bit perl then you will have 64-bit integers whether
93# or not this is uncommented.)
38aa66aa 94# Note: This option is not supported in 32-bit MSVC60 builds.
890b5089 95#
1f64ae15
SH
96#USE_64_BIT_INT = define
97
98#
458ea8f7
SH
99# Comment this out if you want the legacy default behavior of including '.' at
100# the end of @INC.
101#
102DEFAULT_INC_EXCLUDES_DOT = define
103
104#
6937817d
DD
105# Uncomment this if you want to disable looking up values from
106# HKEY_CURRENT_USER\Software\Perl and HKEY_LOCAL_MACHINE\Software\Perl in
107# the Registry.
108#
109#USE_NO_REGISTRY = define
110
111#
da2c7419 112# uncomment exactly one of the following
9e42cd94 113#
b2e53f8c 114# Visual C++ 6.0 (aka Visual C++ 98)
404ca99e 115#CCTYPE = MSVC60
b2e53f8c 116# Visual C++ .NET 2002/2003 (aka Visual C++ 7.0/7.1) (full version)
5398666e 117#CCTYPE = MSVC70
b2e53f8c 118# Visual C++ Toolkit 2003 (aka Visual C++ 7.1) (free command-line tools)
da2c7419 119#CCTYPE = MSVC70FREE
b969270a 120# Windows Server 2003 SP1 Platform SDK (April 2005) (64-bit compiler and tools)
02e200fc 121#CCTYPE = SDK2003SP1
3aa3d69a 122# Visual C++ 2005 (aka Visual C++ 8.0) (full version or Express Edition)
73c9ebc7 123#CCTYPE = MSVC80
3aa3d69a 124# Visual C++ 2008 (aka Visual C++ 9.0) (full version or Express Edition)
4a3cf07b 125#CCTYPE = MSVC90
3aa3d69a 126# Visual C++ 2010 (aka Visual C++ 10.0) (full version or Express Edition)
2a46176f 127#CCTYPE = MSVC100
3aa3d69a 128# Visual C++ 2012 (aka Visual C++ 11.0) (full version or Express Edition)
5398666e 129#CCTYPE = MSVC110
3aa3d69a 130# Visual C++ 2013 (aka Visual C++ 12.0) (full version or Express Edition)
3e7c2d43 131#CCTYPE = MSVC120
3aa3d69a 132# Visual C++ 2015 (aka Visual C++ 14.0) (full version or Express Edition)
1f664ef5 133#CCTYPE = MSVC140
3aa3d69a 134# Visual C++ 2017 (aka Visual C++ 14.1) (full version or Community Edition)
58998b2a 135#CCTYPE = MSVC141
9e42cd94
GS
136
137#
a48cc4c4
DD
138# If you are using Intel C++ Compiler uncomment this
139#
140#__ICC = define
141
142#
f9bbfafd
SH
143# Uncomment this if you want to build everything in C++ mode
144#
145#USE_CPLUSPLUS = define
146
147#
31c916d2 148# uncomment next line if you want debug version of perl (big/slow)
f7d585d3
GS
149# If not enabled, we automatically try to use maximum optimization
150# with all compilers that are known to have a working optimizer.
9e42cd94 151#
31c916d2
SH
152# You can also set CFG = DebugSymbols for a slightly smaller/faster
153# debug build without the special debugging code in perl which is
154# enabled via -DDEBUGGING;
155#
156# or you can set CFG = DebugFull for an even fuller (bigger/slower)
157# debug build using the debug version of the CRT, and enabling VC++
158# debug features such as extra assertions and invalid parameter warnings
159# in perl and CRT code via -D_DEBUG. (Note that the invalid parameter
160# handler does get triggered from time to time in this configuration,
161# which causes warnings to be printed on STDERR, which in turn causes a
162# few tests to fail.)
163#
9e42cd94
GS
164#CFG = Debug
165
166#
9e42cd94
GS
167# uncomment to enable linking with setargv.obj under the Visual C
168# compiler. Setting this options enables perl to expand wildcards in
169# arguments, but it may be harder to use alternate methods like
170# File::DosGlob that are more powerful. This option is supported only with
171# Visual C.
172#
173#USE_SETARGV = define
174
175#
9e42cd94
GS
176# set this if you wish to use perl's malloc
177# WARNING: Turning this on/off WILL break binary compatibility with extensions
178# you may have compiled with/without it. Be prepared to recompile all
179# extensions if you change the default. Currently, this cannot be enabled
180# if you ask for USE_IMP_SYS above.
181#
182#PERL_MALLOC = define
183
184#
06c896bb
SH
185# set this to enable debugging mstats
186# This must be enabled to use the Devel::Peek::mstat() function. This cannot
187# be enabled without PERL_MALLOC as well.
188#
bdb4cb88 189#DEBUG_MSTATS = define
06c896bb
SH
190
191#
4e036e4b
VK
192# set this to additionally provide a statically linked perl-static.exe.
193# Note that dynamic loading will not work with this perl, so you must
a1f2e719 194# include required modules statically using the STATIC_EXT or ALL_STATIC
d361a1e6 195# variables below. A static library perl529s.lib will also be created.
4e036e4b
VK
196# Ordinary perl.exe is not affected by this option.
197#
198#BUILD_STATIC = define
199
200#
a1f2e719 201# in addition to BUILD_STATIC the option ALL_STATIC makes *every*
d6444ca0 202# extension get statically built.
a1f2e719
VK
203# This will result in a very large perl executable, but the main purpose
204# is to have proper linking set so as to be able to create miscellaneous
d6444ca0 205# executables with different built-in extensions.
a1f2e719
VK
206#
207#ALL_STATIC = define
208
209#
74102a88
SH
210# set the install location of the compiler
211# Running VCVARS32.BAT, VCVARSALL.BAT or similar is *required* when using
212# Visual C++.
213# Versions of Visual C++ up to VC++ 7.1 define $(MSVCDir); versions since then
214# define $(VCINSTALLDIR) instead, but for VC++ 14.1 we need the subfolder given
215# by $(VCToolsInstallDir).
06c896bb 216#
74102a88
SH
217!IF "$(CCTYPE)" == "MSVC60" || \
218 "$(CCTYPE)" == "MSVC70" || "$(CCTYPE)" == "MSVC70FREE"
9e42cd94 219CCHOME = $(MSVCDIR)
74102a88
SH
220!ELSE
221! IF "$(CCTYPE)" == "MSVC141"
222CCHOME = $(VCTOOLSINSTALLDIR)
223! ELSE
224CCHOME = $(VCINSTALLDIR)
225! ENDIF
226!ENDIF
9e42cd94
GS
227
228#
229# Additional compiler flags can be specified here.
230#
2e30e1e1 231BUILDOPT = $(BUILDOPTEXTRA)
9e42cd94 232
7ada00a0 233#
9e42cd94
GS
234# This should normally be disabled. Enabling it will disable the File::Glob
235# implementation of CORE::glob.
236#
237#BUILDOPT = $(BUILDOPT) -DPERL_EXTERNAL_GLOB
238
239#
270ca148
JD
240# Perl needs to read scripts in text mode so that the DATA filehandle
241# works correctly with seek() and tell(), or around auto-flushes of
242# all filehandles (e.g. by system(), backticks, fork(), etc).
bdb4cb88 243#
270ca148
JD
244# The current version on the ByteLoader module on CPAN however only
245# works if scripts are read in binary mode. But before you disable text
246# mode script reading (and break some DATA filehandle functionality)
247# please check first if an updated ByteLoader isn't available on CPAN.
248#
249BUILDOPT = $(BUILDOPT) -DPERL_TEXTMODE_SCRIPTS
9e42cd94
GS
250
251#
252# specify semicolon-separated list of extra directories that modules will
253# look for libraries (spaces in path names need not be quoted)
254#
255EXTRALIBDIRS =
256
257#
258# set this to your email address (perl will guess a value from
259# from your loginname and your hostname, which may not be right)
260#
261#EMAIL =
262
263##
264## Build configuration ends.
265##
266
267##################### CHANGE THESE ONLY IF YOU MUST #####################
268
646e33b6
SH
269!IF "$(USE_IMP_SYS)" == "define"
270PERL_MALLOC = undef
271DEBUG_MSTATS = undef
272!ENDIF
273
9e42cd94
GS
274!IF "$(PERL_MALLOC)" == ""
275PERL_MALLOC = undef
646e33b6 276DEBUG_MSTATS = undef
06c896bb
SH
277!ENDIF
278
279!IF "$(DEBUG_MSTATS)" == ""
646e33b6 280DEBUG_MSTATS = undef
06c896bb
SH
281!ENDIF
282
283!IF "$(DEBUG_MSTATS)" == "define"
646e33b6 284BUILDOPT = $(BUILDOPT) -DPERL_DEBUGGING_MSTATS
9e42cd94
GS
285!ENDIF
286
7ada00a0
SH
287!IF "$(USE_SITECUST)" == ""
288USE_SITECUST = undef
289!ENDIF
290
9e42cd94
GS
291!IF "$(USE_MULTI)" == ""
292USE_MULTI = undef
293!ENDIF
294
295!IF "$(USE_ITHREADS)" == ""
296USE_ITHREADS = undef
297!ENDIF
298
299!IF "$(USE_IMP_SYS)" == ""
300USE_IMP_SYS = undef
301!ENDIF
302
4a9d6100
GS
303!IF "$(USE_LARGE_FILES)" == ""
304USE_LARGE_FILES = undef
305!ENDIF
306
1f64ae15
SH
307!IF "$(USE_64_BIT_INT)" == ""
308USE_64_BIT_INT = undef
309!ENDIF
310
458ea8f7
SH
311!IF "$(DEFAULT_INC_EXCLUDES_DOT)" == ""
312DEFAULT_INC_EXCLUDES_DOT = undef
313!ENDIF
314
6937817d
DD
315!IF "$(USE_NO_REGISTRY)" == ""
316USE_NO_REGISTRY = undef
317!ENDIF
318
3db8f154 319!IF "$(USE_IMP_SYS)$(USE_MULTI)" == "defineundef"
9e42cd94
GS
320USE_MULTI = define
321!ENDIF
322
323!IF "$(USE_ITHREADS)$(USE_MULTI)" == "defineundef"
324USE_MULTI = define
9e42cd94
GS
325!ENDIF
326
7ada00a0
SH
327!IF "$(USE_SITECUST)" == "define"
328BUILDOPT = $(BUILDOPT) -DUSE_SITECUSTOMIZE
329!ENDIF
330
3db8f154 331!IF "$(USE_MULTI)" != "undef"
9e42cd94
GS
332BUILDOPT = $(BUILDOPT) -DPERL_IMPLICIT_CONTEXT
333!ENDIF
334
335!IF "$(USE_IMP_SYS)" != "undef"
336BUILDOPT = $(BUILDOPT) -DPERL_IMPLICIT_SYS
337!ENDIF
338
6937817d
DD
339!IF "$(USE_NO_REGISTRY)" != "undef"
340BUILDOPT = $(BUILDOPT) -DWIN32_NO_REGISTRY
341!ENDIF
342
9e42cd94
GS
343!IF "$(PROCESSOR_ARCHITECTURE)" == ""
344PROCESSOR_ARCHITECTURE = x86
345!ENDIF
346
c623ac67 347!IF "$(WIN64)" == ""
bf2a35e5
JD
348# When we are running from a 32bit cmd.exe on AMD64 then
349# PROCESSOR_ARCHITECTURE is set to x86 and PROCESSOR_ARCHITEW6432
350# is set to AMD64
c623ac67
GS
351!IF "$(PROCESSOR_ARCHITEW6432)" != ""
352PROCESSOR_ARCHITECTURE = $(PROCESSOR_ARCHITEW6432)
353WIN64 = define
354!ELSE
bf2a35e5 355!IF "$(PROCESSOR_ARCHITECTURE)" == "AMD64" || "$(PROCESSOR_ARCHITECTURE)" == "IA64"
c623ac67
GS
356WIN64 = define
357!ELSE
358WIN64 = undef
359!ENDIF
360!ENDIF
361!ENDIF
362
1f64ae15
SH
363!IF "$(WIN64)" == "define"
364USE_64_BIT_INT = define
365!ENDIF
366
02e200fc
JD
367# Treat 64-bit MSVC60 (doesn't really exist) as SDK2003SP1 because
368# both link against MSVCRT.dll (which is part of Windows itself) and
369# not against a compiler specific versioned runtime.
370!IF "$(WIN64)" == "define" && "$(CCTYPE)" == "MSVC60"
371CCTYPE = SDK2003SP1
372!ENDIF
373
38aa66aa
SH
374# Disable the 64-bit-int option for (32-bit) MSVC60 builds since that compiler
375# does not support it.
376!IF "$(CCTYPE)" == "MSVC60"
377!UNDEF USE_64_BIT_INT
378USE_64_BIT_INT = undef
379!ENDIF
380
5398666e
SH
381# Most relevant compiler-specific options fall into two groups:
382# either pre-MSVC80 or MSVC80 onwards, so define a macro for this.
383!IF "$(CCTYPE)" == "MSVC60" || \
384 "$(CCTYPE)" == "MSVC70" || "$(CCTYPE)" == "MSVC70FREE"
385PREMSVC80 = define
386!ELSE
387PREMSVC80 = undef
388!ENDIF
389
bf2a35e5
JD
390ARCHITECTURE = $(PROCESSOR_ARCHITECTURE)
391!IF "$(ARCHITECTURE)" == "AMD64"
392ARCHITECTURE = x64
9453ddcd 393!ENDIF
bf2a35e5
JD
394!IF "$(ARCHITECTURE)" == "IA64"
395ARCHITECTURE = ia64
9453ddcd
SH
396!ENDIF
397
9e42cd94 398!IF "$(USE_MULTI)" == "define"
bf2a35e5 399ARCHNAME = MSWin32-$(ARCHITECTURE)-multi
9e42cd94 400!ELSE
bf2a35e5 401ARCHNAME = MSWin32-$(ARCHITECTURE)-perlio
9e42cd94
GS
402!ENDIF
403
404!IF "$(USE_ITHREADS)" == "define"
405ARCHNAME = $(ARCHNAME)-thread
406!ENDIF
407
1f64ae15
SH
408!IF "$(WIN64)" != "define"
409!IF "$(USE_64_BIT_INT)" == "define"
410ARCHNAME = $(ARCHNAME)-64int
411!ENDIF
412!ENDIF
413
b2e53f8c 414# All but the free version of VC++ 7.1 can load DLLs on demand. Makes the test
5398666e
SH
415# suite run in about 10% less time.
416!IF "$(CCTYPE)" != "MSVC70FREE"
6937817d
DD
417# If no registry, advapi32 is only used for Perl_pp_getlogin/getlogin/GetUserNameA
418# which is rare to execute
419!IF "$(USE_NO_REGISTRY)" != "undef"
420DELAYLOAD = -DELAYLOAD:ws2_32.dll -DELAYLOAD:advapi32.dll delayimp.lib
421MINIDELAYLOAD =
422!ELSE
d1a8253e 423DELAYLOAD = -DELAYLOAD:ws2_32.dll delayimp.lib
6937817d
DD
424#miniperl never does any registry lookups
425MINIDELAYLOAD = -DELAYLOAD:advapi32.dll
426!ENDIF
9e42cd94
GS
427!ENDIF
428
b2e53f8c 429# Visual C++ 2005 and 2008 (VC++ 8.0 and 9.0) create manifest files for EXEs and
4a3cf07b 430# DLLs. These either need copying everywhere with the binaries, or else need
3ddd48aa
SH
431# embedding in them otherwise MSVCR80.dll or MSVCR90.dll won't be found. For
432# simplicity, embed them if they exist (and delete them afterwards so that they
433# don't get installed too).
4adc95e6
SH
434EMBED_EXE_MANI = if exist $@.manifest mt -nologo -manifest $@.manifest -outputresource:$@;1 && \
435 if exist $@.manifest del $@.manifest
436EMBED_DLL_MANI = if exist $@.manifest mt -nologo -manifest $@.manifest -outputresource:$@;2 && \
437 if exist $@.manifest del $@.manifest
c8e599d3 438
74102a88
SH
439# Set the install location of the compiler headers/libraries.
440# These are saved into $Config{incpath} and $Config{libpth}.
441CCINCDIR = $(CCHOME)\include
442!IF "$(CCTYPE)" == "MSVC141"
443! IF "$(WIN64)" == "define"
444CCLIBDIR = $(CCHOME)\lib\x64
445! ELSE
446CCLIBDIR = $(CCHOME)\lib\x86
447! ENDIF
448!ELSE
6f669bf5
SH
449! IF "$(WIN64)" == "define"
450CCLIBDIR = $(CCHOME)\lib\amd64
451! ELSE
74102a88 452CCLIBDIR = $(CCHOME)\lib
6f669bf5 453! ENDIF
74102a88
SH
454!ENDIF
455
9e42cd94
GS
456ARCHDIR = ..\lib\$(ARCHNAME)
457COREDIR = ..\lib\CORE
458AUTODIR = ..\lib\auto
459LIBDIR = ..\lib
460EXTDIR = ..\ext
a193a2db 461DISTDIR = ..\dist
b212a3c6 462CPANDIR = ..\cpan
9e42cd94 463PODDIR = ..\pod
b4a41557 464HTMLDIR = .\html
9e42cd94 465
9e42cd94
GS
466INST_SCRIPT = $(INST_TOP)$(INST_VER)\bin
467INST_BIN = $(INST_SCRIPT)$(INST_ARCH)
468INST_LIB = $(INST_TOP)$(INST_VER)\lib
469INST_ARCHLIB = $(INST_LIB)$(INST_ARCH)
470INST_COREDIR = $(INST_ARCHLIB)\CORE
9e42cd94
GS
471INST_HTML = $(INST_TOP)$(INST_VER)\html
472
473#
474# Programs to compile, build .lib files and link
475#
476
6da38c10
SH
477# Poison the recipe if no CCTYPE is set, and delete mini\.exists so everything
478# is rebuilt next time to avoid reusing a mini config.h written with no sane CC
479# version set
404ca99e
DD
480!IF "$(CCTYPE)" == ""
481CC = @echo CCTYPE makefile variable not set && del mini\.exists && exit 1 &&
6da38c10 482LINK32 = @echo CCTYPE makefile variable not set && del mini\.exists && exit 1 &&
404ca99e 483!ELSE IF "$(__ICC)" != "define"
9e42cd94
GS
484CC = cl
485LINK32 = link
a48cc4c4
DD
486!ELSE
487CC = icl
488LINK32 = xilink
489!ENDIF
9e42cd94
GS
490LIB32 = $(LINK32) -lib
491RSC = rc
492
493#
494# Options
495#
496
497INCLUDES = -I$(COREDIR) -I.\include -I. -I..
498#PCHFLAGS = -Fpc:\temp\vcmoduls.pch -YX
9cef8306 499DEFINES = -DWIN32 -D_CONSOLE -DNO_STRICT
9e42cd94 500LOCDEFS = -DPERLDLL -DPERL_CORE
a7d225ec 501CXX_FLAG = -TP -EHsc
9e42cd94 502
3aa3d69a 503!IF "$(CCTYPE)" == "MSVC140" || "$(CCTYPE)" == "MSVC141"
1f664ef5
SH
504LIBC = ucrt.lib
505!ELSE
31c916d2 506LIBC = msvcrt.lib
1f664ef5 507!ENDIF
9e42cd94 508
9e42cd94 509!IF "$(CFG)" == "Debug"
9e42cd94 510OPTIMIZE = -Od -MD -Zi -DDEBUGGING
c623ac67 511LINK_DBG = -debug
9e42cd94 512!ELSE
31c916d2
SH
513!IF "$(CFG)" == "DebugSymbols"
514OPTIMIZE = -Od -MD -Zi
515LINK_DBG = -debug
516!ELSE
517!IF "$(CFG)" == "DebugFull"
3aa3d69a 518!IF "$(CCTYPE)" == "MSVC140" || "$(CCTYPE)" == "MSVC141"
1f664ef5
SH
519LIBC = ucrtd.lib
520!ELSE
31c916d2 521LIBC = msvcrtd.lib
1f664ef5 522!ENDIF
31c916d2
SH
523OPTIMIZE = -Od -MDd -Zi -D_DEBUG -DDEBUGGING
524LINK_DBG = -debug
525!ELSE
00a13560
SH
526# -O1 yields smaller code, which turns out to be faster than -O2 on x86 and x64
527OPTIMIZE = -O1 -MD -Zi -DNDEBUG
ec25c072
SH
528# we enable debug symbols in release builds also
529LINK_DBG = -debug -opt:ref,icf
530# you may want to enable this if you want COFF symbols in the executables
531# in addition to the PDB symbols. The default Dr. Watson that ships with
532# Windows can use the the former but not latter. The free WinDbg can be
533# installed to get better stack traces from just the PDB symbols, so we
534# avoid the bloat of COFF symbols by default.
535#LINK_DBG = $(LINK_DBG) -debugtype:both
a9e3f359 536! IF "$(CCTYPE)" != "MSVC60"
d921a5fb 537# enable Whole Program Optimizations (WPO) and Link Time Code Generation (LTCG)
00a13560 538OPTIMIZE = $(OPTIMIZE) -GL
d921a5fb 539LINK_DBG = $(LINK_DBG) -ltcg
a9e3f359 540LIB_FLAGS = -ltcg
d921a5fb 541! ENDIF
9e42cd94 542!ENDIF
31c916d2
SH
543!ENDIF
544!ENDIF
9e42cd94 545
c623ac67
GS
546!IF "$(WIN64)" == "define"
547DEFINES = $(DEFINES) -DWIN64 -DCONSERVATIVE
f33a21d8 548OPTIMIZE = $(OPTIMIZE) -fp:precise
da2c7419
SH
549!ENDIF
550
b2e53f8c 551# For now, silence warnings from VC++ 8.0 onwards about "unsafe" CRT functions
4a3cf07b 552# and POSIX CRT function names being deprecated.
5398666e 553!IF "$(PREMSVC80)" == "undef"
26a6faa8 554DEFINES = $(DEFINES) -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE
c5b31784
SH
555!ENDIF
556
3aa3d69a
SH
557# Likewise for deprecated Winsock APIs in VC++ 14.0 onwards for now.
558!IF "$(CCTYPE)" == "MSVC140" || "$(CCTYPE)" == "MSVC141"
1f664ef5
SH
559DEFINES = $(DEFINES) -D_WINSOCK_DEPRECATED_NO_WARNINGS
560!ENDIF
561
b79cd7df
SH
562# The Windows Server 2003 SP1 SDK compiler only defines _configthreadlocale() if
563# _MT is defined, i.e. when using /MT (the LIBCMT.lib version of the CRT), which
564# the perl build doesn't use. We therefore specify NO_THREAD_SAFE_LOCALE so that
565# perl.h doesn't set USE_THREAD_SAFE_LOCALE, which it otherwise would do since
566# _MSC_VER is 1400 for this compiler (as per MSVC80).
567!IF "$(CCTYPE)" == "SDK2003SP1"
568DEFINES = $(DEFINES) -DNO_THREAD_SAFE_LOCALE
569!ENDIF
570
45f6403b
JD
571# In VS 2005 (VC++ 8.0) Microsoft changes time_t from 32-bit to
572# 64-bit, even in 32-bit mode. It also provides the _USE_32BIT_TIME_T
573# preprocessor option to revert back to the old functionality for
574# backward compatibility. We define this symbol here for older 32-bit
575# compilers only (which aren't using it at all) for the sole purpose
576# of getting it into $Config{ccflags}. That way if someone builds
577# Perl itself with e.g. VC6 but later installs an XS module using VC8
578# the time_t types will still be compatible.
579!IF "$(WIN64)" == "undef"
5398666e 580! IF "$(PREMSVC80)" == "define"
45f6403b
JD
581BUILDOPT = $(BUILDOPT) -D_USE_32BIT_TIME_T
582! ENDIF
583!ENDIF
584
9cef8306 585LIBBASEFILES = \
9e42cd94
GS
586 oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.lib \
587 comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \
036c1c1e 588 netapi32.lib uuid.lib ws2_32.lib mpr.lib winmm.lib \
4ebea3c6 589 version.lib odbc32.lib odbccp32.lib comctl32.lib
c623ac67 590
3aa3d69a 591!IF "$(CCTYPE)" == "MSVC140" || "$(CCTYPE)" == "MSVC141"
1f664ef5
SH
592! IF "$(CFG)" == "DebugFull"
593LIBBASEFILES = $(LIBBASEFILES) msvcrtd.lib vcruntimed.lib
594! ELSE
595LIBBASEFILES = $(LIBBASEFILES) msvcrt.lib vcruntime.lib
596! ENDIF
597!ENDIF
598
a48cc4c4
DD
599# Avoid __intel_new_proc_init link error for libircmt.
600# libmmd is /MD equivelent, other variants exist.
601# libmmd is Intel C's math addon funcs to MS CRT, contains long doubles, C99,
602# and optimized C89 funcs
603!IF "$(__ICC)" == "define"
604LIBBASEFILES = $(LIBBASEFILES) libircmt.lib libmmd.lib
605!ENDIF
606
b969270a 607# The Windows Server 2003 SP1 SDK compiler links against MSVCRT.dll, which
02e200fc 608# doesn't include the buffer overrun verification code used by the /GS switch.
9453ddcd 609# Since the code links against libraries that are compiled with /GS, this
02e200fc 610# "security cookie verification" code must be included via bufferoverflow.lib.
b969270a 611!IF "$(CCTYPE)" == "SDK2003SP1"
9453ddcd 612LIBBASEFILES = $(LIBBASEFILES) bufferoverflowU.lib
c623ac67 613!ENDIF
9e42cd94 614
9e42cd94
GS
615LIBFILES = $(LIBBASEFILES) $(LIBC)
616
a5ca303d 617#EXTRACFLAGS = -nologo -GF -W4 -wd4127 -wd4706
9453ddcd 618EXTRACFLAGS = -nologo -GF -W3
312159d9
DD
619!IF "$(__ICC)" == "define"
620EXTRACFLAGS = $(EXTRACFLAGS) -Qstd=c99
621!ENDIF
f9bbfafd
SH
622!IF "$(USE_CPLUSPLUS)" == "define"
623EXTRACFLAGS = $(EXTRACFLAGS) $(CXX_FLAG)
624!ENDIF
bb275e72 625CFLAGS = $(EXTRACFLAGS) $(INCLUDES) $(DEFINES) $(LOCDEFS) \
9e42cd94
GS
626 $(PCHFLAGS) $(OPTIMIZE)
627LINK_FLAGS = -nologo -nodefaultlib $(LINK_DBG) \
628 -libpath:"$(INST_COREDIR)" \
629 -machine:$(PROCESSOR_ARCHITECTURE)
a9e3f359 630LIB_FLAGS = $(LIB_FLAGS) -nologo
9e42cd94
GS
631OBJOUT_FLAG = -Fo
632EXEOUT_FLAG = -Fe
633
634CFLAGS_O = $(CFLAGS) $(BUILDOPT)
635
5398666e 636!IF "$(PREMSVC80)" == "undef"
67c6176d 637PRIV_LINK_FLAGS = $(PRIV_LINK_FLAGS) "/manifestdependency:type='Win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'"
4ebea3c6
JD
638!ELSE
639RSC_FLAGS = -DINCLUDE_MANIFEST
640!ENDIF
641
58998b2a
SH
642# VS 2017 (VC++ 14.1) requires at minimum Windows 7 SP1 (with latest Windows Updates)
643
b2e53f8c
SH
644# For XP support in >= VS 2013 (VC++ 12.0), subsystem is always in Config.pm
645# LINK_FLAGS else subsystem is only needed for EXE building, not XS DLL building
269713a1
DD
646# Console vs GUI makes no difference for DLLs, so use default for cleaner
647# building cmd lines
3aa3d69a 648!IF "$(CCTYPE)" == "MSVC120" || "$(CCTYPE)" == "MSVC140"
269713a1
DD
649! IF "$(WIN64)" == "define"
650LINK_FLAGS = $(LINK_FLAGS) -subsystem:console,"5.02"
651! ELSE
652LINK_FLAGS = $(LINK_FLAGS) -subsystem:console,"5.01"
653! ENDIF
269713a1
DD
654
655!ELSE
67c6176d 656PRIV_LINK_FLAGS = $(PRIV_LINK_FLAGS) -subsystem:console
269713a1
DD
657!ENDIF
658
659BLINK_FLAGS = $(PRIV_LINK_FLAGS) $(LINK_FLAGS)
4ebea3c6 660
9e42cd94
GS
661#################### do not edit below this line #######################
662############# NO USER-SERVICEABLE PARTS BEYOND THIS POINT ##############
663
664o = .obj
665
666#
667# Rules
668#
669
9c958f05 670#clear the list, we dont support .cxx .bas .cbl .for .pas .f .f90
f4eedc6b
DD
671# .asm .cpp are not currently used but they are included for completeness
672.SUFFIXES :
673.SUFFIXES : .c $(o) .cpp .asm .dll .lib .exe .rc .res
9e42cd94
GS
674
675.c$(o):
676 $(CC) -c -I$(<D) $(CFLAGS_O) $(OBJOUT_FLAG)$@ $<
677
61b311ca
DD
678.c.i:
679 $(CC) -c -I$(<D) $(CFLAGS_O) -P $(OBJOUT_FLAG)$@ $<
680
9e42cd94
GS
681.y.c:
682 $(NOOP)
683
684$(o).dll:
269713a1
DD
685 $(LINK32) -dll -implib:$(*B).lib -def:$(*B).def \
686 -out:$@ $(BLINK_FLAGS) $(LIBFILES) $< $(LIBPERL)
c8e599d3 687 $(EMBED_DLL_MANI)
9e42cd94
GS
688
689.rc.res:
4ebea3c6 690 $(RSC) -i.. $(RSC_FLAGS) $<
9e42cd94
GS
691
692#
693# various targets
694
695# makedef.pl must be updated if this changes, and this should normally
696# only change when there is an incompatible revision of the public API.
d361a1e6
S
697PERLIMPLIB = ..\perl529.lib
698PERLSTATICLIB = ..\perl529s.lib
699PERLDLL = ..\perl529.dll
9e42cd94
GS
700
701MINIPERL = ..\miniperl.exe
702MINIDIR = .\mini
703PERLEXE = ..\perl.exe
704WPERLEXE = ..\wperl.exe
4e036e4b 705PERLEXESTATIC = ..\perl-static.exe
9e42cd94 706GLOBEXE = ..\perlglob.exe
04bae4fb 707CONFIGPM = ..\lib\Config.pm ..\lib\Config_heavy.pl
202d1001 708GENUUDMAP = ..\generate_uudmap.exe
eb4420e6 709!IF "$(BUILD_STATIC)" == "define" || "$(ALL_STATIC)" == "define"
4e036e4b
VK
710PERLSTATIC = static
711!ELSE
712PERLSTATIC =
713!ENDIF
5b04aee6 714
ca12659b 715# Unicode data files generated by mktables
36ff7f95
SH
716FIRSTUNIFILE = ..\lib\unicore\Decomposition.pl
717UNIDATAFILES = ..\lib\unicore\Decomposition.pl \
7ebf06b3 718 ..\lib\unicore\CombiningClass.pl ..\lib\unicore\Name.pl \
1a234f2b
KW
719 ..\lib\unicore\Heavy.pl ..\lib\unicore\mktables.lst \
720 ..\lib\unicore\UCD.pl ..\lib\unicore\Name.pm \
3e344d15 721 ..\lib\unicore\TestProp.pl
ca12659b
NC
722
723# Directories of Unicode data files generated by mktables
27a8011f
SH
724UNIDATADIR1 = ..\lib\unicore\To
725UNIDATADIR2 = ..\lib\unicore\lib
ca12659b 726
4ebea3c6 727PERLEXE_MANIFEST= .\perlexe.manifest
3890b58f
RGS
728PERLEXE_ICO = .\perlexe.ico
729PERLEXE_RES = .\perlexe.res
730PERLDLL_RES =
731
9e42cd94
GS
732# Nominate a target which causes extensions to be re-built
733# This used to be $(PERLEXE), but at worst it is the .dll that they depend
734# on and really only the interface - i.e. the .def file used to export symbols
735# from the .dll
736PERLDEP = perldll.def
737
738PL2BAT = bin\pl2bat.pl
739GLOBBAT = bin\perlglob.bat
740
741UTILS = \
742 ..\utils\h2ph \
743 ..\utils\splain \
9e42cd94
GS
744 ..\utils\perlbug \
745 ..\utils\pl2pm \
9e42cd94
GS
746 ..\utils\h2xs \
747 ..\utils\perldoc \
9e42cd94
GS
748 ..\utils\perlivp \
749 ..\utils\libnetcfg \
827a599d 750 ..\utils\enc2xs \
59658819 751 ..\utils\encguess \
827a599d 752 ..\utils\piconv \
18a1cebe 753 ..\utils\corelist \
83cd6e83 754 ..\utils\cpan \
ea0e987d 755 ..\utils\xsubpp \
4b618757 756 ..\utils\prove \
291d3373 757 ..\utils\ptar \
b8669316 758 ..\utils\ptardiff \
deabda19 759 ..\utils\ptargrep \
08ad9465 760 ..\utils\zipdetails \
3ddf9550 761 ..\utils\shasum \
ea0e987d 762 ..\utils\instmodsh \
84f04405 763 ..\utils\json_pp \
d658129c 764 ..\utils\pod2html \
9e42cd94
GS
765 bin\exetype.pl \
766 bin\runperl.pl \
767 bin\pl2bat.pl \
768 bin\perlglob.pl \
769 bin\search.pl
770
771MAKE = nmake -nologo
772MAKE_BARE = nmake
773
774CFGSH_TMPL = config.vc
775CFGH_TMPL = config_H.vc
19d5c34a 776INT64 = __int64
9e42cd94 777
b6ed7314
YO
778XCOPY = xcopy /f /r /i /d /y
779RCOPY = xcopy /f /r /i /e /d /y
65980d94 780NOOP = @rem
9e42cd94
GS
781NULL =
782
783DEL = del
784
9e42cd94
GS
785MICROCORE_SRC = \
786 ..\av.c \
0f8f167c 787 ..\caretx.c \
9e42cd94
GS
788 ..\deb.c \
789 ..\doio.c \
790 ..\doop.c \
a55c5245 791 ..\dquote.c \
9e42cd94
GS
792 ..\dump.c \
793 ..\globals.c \
794 ..\gv.c \
8b371338 795 ..\mro_core.c \
9e42cd94
GS
796 ..\hv.c \
797 ..\locale.c \
26ea9e12 798 ..\keywords.c \
a0d89a74 799 ..\mathoms.c \
9e42cd94
GS
800 ..\mg.c \
801 ..\numeric.c \
802 ..\op.c \
295f0f84 803 ..\pad.c \
9e42cd94
GS
804 ..\perl.c \
805 ..\perlapi.c \
806 ..\perly.c \
807 ..\pp.c \
808 ..\pp_ctl.c \
809 ..\pp_hot.c \
810 ..\pp_pack.c \
811 ..\pp_sort.c \
812 ..\pp_sys.c \
10bc17b6 813 ..\reentr.c \
9e42cd94
GS
814 ..\regcomp.c \
815 ..\regexec.c \
816 ..\run.c \
817 ..\scope.c \
818 ..\sv.c \
819 ..\taint.c \
f832b29a 820 ..\time64.c \
9e42cd94
GS
821 ..\toke.c \
822 ..\universal.c \
823 ..\utf8.c \
48462a74 824 ..\util.c
9e42cd94
GS
825
826EXTRACORE_SRC = $(EXTRACORE_SRC) perllib.c
827
828!IF "$(PERL_MALLOC)" == "define"
829EXTRACORE_SRC = $(EXTRACORE_SRC) ..\malloc.c
830!ENDIF
831
832EXTRACORE_SRC = $(EXTRACORE_SRC) ..\perlio.c
833
834WIN32_SRC = \
835 .\win32.c \
8c847e66 836 .\win32io.c \
9e42cd94 837 .\win32sck.c \
9cef8306
JD
838 .\win32thread.c \
839 .\fcrypt.c
9e42cd94 840
9e42cd94
GS
841CORE_NOCFG_H = \
842 ..\av.h \
843 ..\cop.h \
844 ..\cv.h \
845 ..\dosish.h \
846 ..\embed.h \
847 ..\form.h \
848 ..\gv.h \
849 ..\handy.h \
850 ..\hv.h \
4d3a042d 851 ..\hv_func.h \
9e42cd94
GS
852 ..\iperlsys.h \
853 ..\mg.h \
854 ..\nostdio.h \
855 ..\op.h \
856 ..\opcode.h \
857 ..\perl.h \
858 ..\perlapi.h \
859 ..\perlsdio.h \
9e42cd94
GS
860 ..\perly.h \
861 ..\pp.h \
862 ..\proto.h \
cdb0f547 863 ..\regcomp.h \
9e42cd94
GS
864 ..\regexp.h \
865 ..\scope.h \
866 ..\sv.h \
867 ..\thread.h \
868 ..\unixish.h \
869 ..\utf8.h \
870 ..\util.h \
871 ..\warnings.h \
872 ..\XSUB.h \
873 ..\EXTERN.h \
874 ..\perlvars.h \
875 ..\intrpvar.h \
9e42cd94
GS
876 .\include\dirent.h \
877 .\include\netdb.h \
c44e86c9 878 .\include\sys\errno2.h \
9e42cd94
GS
879 .\include\sys\socket.h \
880 .\win32.h
881
a148edb6 882CORE_H = $(CORE_NOCFG_H) .\config.h ..\git_version.h
9e42cd94 883
202d1001 884UUDMAP_H = ..\uudmap.h
efa50c51 885BITCOUNT_H = ..\bitcount.h
6f83ef0e 886MG_DATA_H = ..\mg_data.h
9387abf8 887GENERATED_HEADERS = $(UUDMAP_H) $(BITCOUNT_H) $(MG_DATA_H)
202d1001 888
9e42cd94
GS
889MICROCORE_OBJ = $(MICROCORE_SRC:.c=.obj)
890CORE_OBJ = $(MICROCORE_OBJ) $(EXTRACORE_SRC:.c=.obj)
891WIN32_OBJ = $(WIN32_SRC:.c=.obj)
892MINICORE_OBJ = $(MICROCORE_OBJ:..\=.\mini\) \
893 $(MINIDIR)\miniperlmain$(o) \
894 $(MINIDIR)\perlio$(o)
895MINIWIN32_OBJ = $(WIN32_OBJ:.\=.\mini\)
896MINI_OBJ = $(MINICORE_OBJ) $(MINIWIN32_OBJ)
281da5ea 897DLL_OBJ = $(DYNALOADER)
202d1001 898GENUUDMAP_OBJ = $(GENUUDMAP:.exe=.obj)
9e42cd94
GS
899
900PERLDLL_OBJ = $(CORE_OBJ)
901PERLEXE_OBJ = perlmain$(o)
4e036e4b 902PERLEXEST_OBJ = perlmainst$(o)
9e42cd94
GS
903
904PERLDLL_OBJ = $(PERLDLL_OBJ) $(WIN32_OBJ) $(DLL_OBJ)
9e42cd94
GS
905
906!IF "$(USE_SETARGV)" != ""
907SETARGV_OBJ = setargv$(o)
908!ENDIF
909
a1f2e719
VK
910!IF "$(ALL_STATIC)" == "define"
911# some exclusions, unfortunately, until fixed:
903f2d70 912# - MakeMaker isn't capable enough for SDBM_File (small bug)
13cedc2a 913STATIC_EXT = * !SDBM_File
a1f2e719
VK
914!ELSE
915# specify static extensions here, for example:
7a278470
SH
916# (be sure to include Win32CORE to load Win32 on demand)
917#STATIC_EXT = Win32CORE Cwd Compress/Raw/Zlib
78ff2d7b 918STATIC_EXT = Win32CORE
a1f2e719 919!ENDIF
595589fa 920
281da5ea 921DYNALOADER = ..\DynaLoader$(o)
9e42cd94 922
9e42cd94 923CFG_VARS = \
9e42cd94
GS
924 "INST_TOP=$(INST_TOP)" \
925 "INST_VER=$(INST_VER)" \
926 "INST_ARCH=$(INST_ARCH)" \
927 "archname=$(ARCHNAME)" \
928 "cc=$(CC)" \
929 "ld=$(LINK32)" \
bb275e72 930 "ccflags=$(EXTRACFLAGS) $(OPTIMIZE:"=\") $(DEFINES) $(BUILDOPT)" \
f9bbfafd 931 "usecplusplus=$(USE_CPLUSPLUS)" \
9e42cd94 932 "cf_email=$(EMAIL)" \
9e42cd94
GS
933 "d_mymalloc=$(PERL_MALLOC)" \
934 "libs=$(LIBFILES)" \
935 "incpath=$(CCINCDIR:"=\")" \
936 "libperl=$(PERLIMPLIB:..\=)" \
937 "libpth=$(CCLIBDIR:"=\");$(EXTRALIBDIRS:"=\")" \
938 "libc=$(LIBC)" \
939 "make=$(MAKE_BARE)" \
d2b25974 940 "static_ext=$(STATIC_EXT)" \
7e0017d3 941 "usethreads=$(USE_ITHREADS)" \
9e42cd94 942 "useithreads=$(USE_ITHREADS)" \
9e42cd94 943 "usemultiplicity=$(USE_MULTI)" \
1f64ae15 944 "use64bitint=$(USE_64_BIT_INT)" \
c674478b 945 "uselongdouble=undef" \
4a9d6100 946 "uselargefiles=$(USE_LARGE_FILES)" \
7ada00a0 947 "usesitecustomize=$(USE_SITECUST)" \
458ea8f7 948 "default_inc_excludes_dot=$(DEFAULT_INC_EXCLUDES_DOT)" \
9e42cd94 949 "LINK_FLAGS=$(LINK_FLAGS:"=\")" \
1f64ae15
SH
950 "optimize=$(OPTIMIZE:"=\")" \
951 "WIN64=$(WIN64)"
9e42cd94
GS
952
953#
954# Top targets
955#
956
19d5c34a 957all : ..\git_version.h $(GLOBEXE) $(CONFIGPM) \
fda9c55c
RU
958 $(UNIDATAFILES) MakePPPort $(PERLEXE) Extensions_nonxs Extensions PostExt \
959 $(PERLSTATIC)
9e42cd94
GS
960 @echo Everything is up to date. '$(MAKE_BARE) test' to run test suite.
961
c900f745 962regnodes : ..\regnodes.h
5d458dd8 963
5b04aee6 964..\regcomp$(o) : ..\regnodes.h ..\regcharclass.h
e64b1bd1
YO
965
966..\regexec$(o) : ..\regnodes.h ..\regcharclass.h
967
7b4d95f7 968reonly : regnodes .\config.h ..\git_version.h $(GLOBEXE) $(CONFIGPM) \
e5a8a0fb 969 $(UNIDATAFILES) $(PERLEXE) Extensions_reonly
a24cc0c0
YO
970 @echo Perl and 're' are up to date.
971
4e036e4b
VK
972static: $(PERLEXESTATIC)
973
9e42cd94
GS
974#------------------------------------------------------------
975
976$(GLOBEXE) : perlglob$(o)
269713a1 977 $(LINK32) $(BLINK_FLAGS) $(LIBFILES) -out:$@ \
9e42cd94 978 perlglob$(o) setargv$(o)
c8e599d3 979 $(EMBED_EXE_MANI)
9e42cd94
GS
980
981perlglob$(o) : perlglob.c
982
04bf47ee 983..\git_version.h : $(MINIPERL) ..\make_patchnum.pl
d801a0eb 984 cd .. && miniperl -Ilib make_patchnum.pl && cd win32
a148edb6 985
931482b7
NC
986# make sure that we recompile perl.c if the git version changes
987..\perl$(o) : ..\git_version.h
a148edb6 988
771d08d0
SH
989..\config.sh : $(CFGSH_TMPL) config_sh.PL FindExt.pm $(MINIPERL)
990 $(MINIPERL) -I..\lib config_sh.PL $(CFG_VARS) $(CFGSH_TMPL) > ..\config.sh
9e42cd94 991
1f64ae15
SH
992# This target is for when changes to the main config.sh happen.
993# Edit config.vc, then make perl in a minimal configuration (i.e. with MULTI,
8c847e66 994# ITHREADS, IMP_SYS and LARGE_FILES off), then make this target
76febb1c 995# to regenerate config_H.vc.
9e42cd94 996regen_config_h:
76febb1c 997 $(MINIPERL) -I..\lib config_sh.PL $(CFG_VARS) $(CFGSH_TMPL) > ..\config.sh
4e73d6a4 998 $(MINIPERL) -I..\lib ..\configpm --chdir=..
9e42cd94 999 -del /f $(CFGH_TMPL)
f6b3c354 1000 -$(MINIPERL) -I..\lib config_h.PL
9e42cd94
GS
1001 rename config.h $(CFGH_TMPL)
1002
7b4d95f7 1003$(CONFIGPM) : $(MINIPERL) ..\config.sh config_h.PL
4e73d6a4 1004 $(MINIPERL) -I..\lib ..\configpm --chdir=..
9e42cd94
GS
1005 $(XCOPY) ..\*.h $(COREDIR)\*.*
1006 $(XCOPY) *.h $(COREDIR)\*.*
9e42cd94 1007 $(RCOPY) include $(COREDIR)\*.*
f6b3c354 1008 -$(MINIPERL) -I..\lib config_h.PL
9e42cd94
GS
1009 if errorlevel 1 $(MAKE) /$(MAKEFLAGS) $(CONFIGPM)
1010
19d5c34a
DD
1011.\config.h : $(CONFIGPM)
1012
cb251201 1013# See the comment in Makefile.SH explaining this seemingly cranky ordering
19d5c34a 1014$(MINIPERL) : ..\lib\buildcustomize.pl
5e4c4c91 1015
19d5c34a 1016..\lib\buildcustomize.pl : $(MINI_OBJ) ..\write_buildcustomize.pl
269713a1 1017 $(LINK32) -out:$(MINIPERL) @<<
6937817d 1018 $(BLINK_FLAGS) $(DELAYLOAD) $(MINIDELAYLOAD) $(LIBFILES) $(MINI_OBJ)
9e42cd94 1019<<
02bfb73b 1020 $(EMBED_EXE_MANI:..\lib\buildcustomize.pl=..\miniperl.exe)
b78ac715 1021 $(MINIPERL) -I..\lib -f ..\write_buildcustomize.pl ..
9e42cd94 1022
19d5c34a 1023$(MINIDIR)\.exists : $(CFGH_TMPL)
9e42cd94 1024 if not exist "$(MINIDIR)" mkdir "$(MINIDIR)"
19d5c34a
DD
1025#
1026# Copy the template config.h and set configurables at the end of it
1027# as per the options chosen and compiler used.
1028# Note: This config.h is only used to build miniperl.exe anyway, but
1029# it's as well to have its options correct to be sure that it builds
1030# and so that it's "-V" options are correct for use by makedef.pl. The
1031# real config.h used to build perl.exe is generated from the top-level
1032# config_h.SH by config_h.PL (run by miniperl.exe).
1033#
1034 copy $(CFGH_TMPL) config.h
1035 @(echo.&& \
1036 echo #ifndef _config_h_footer_&& \
1037 echo #define _config_h_footer_&& \
1038 echo #undef Off_t&& \
1039 echo #undef LSEEKSIZE&& \
1040 echo #undef Off_t_size&& \
1041 echo #undef PTRSIZE&& \
1042 echo #undef SSize_t&& \
1043 echo #undef HAS_ATOLL&& \
1044 echo #undef HAS_STRTOLL&& \
1045 echo #undef HAS_STRTOULL&& \
1046 echo #undef Size_t_size&& \
1047 echo #undef IVTYPE&& \
1048 echo #undef UVTYPE&& \
1049 echo #undef IVSIZE&& \
1050 echo #undef UVSIZE&& \
1051 echo #undef NV_PRESERVES_UV&& \
1052 echo #undef NV_PRESERVES_UV_BITS&& \
1053 echo #undef IVdf&& \
1054 echo #undef UVuf&& \
1055 echo #undef UVof&& \
1056 echo #undef UVxf&& \
1057 echo #undef UVXf&& \
1058 echo #undef USE_64_BIT_INT&& \
1059 echo #undef USE_LONG_DOUBLE&& \
1060 echo #undef USE_CPLUSPLUS)>> config.h
1061!IF "$(CCTYPE)" == "MSVC140" || "$(CCTYPE)" == "MSVC141"
1062 @(echo #undef FILE_ptr&& \
1063 echo #undef FILE_cnt&& \
1064 echo #undef FILE_base&& \
1065 echo #undef FILE_bufsiz&& \
1066 echo #define FILE_ptr^(fp^) PERLIO_FILE_ptr^(fp^)&& \
1067 echo #define FILE_cnt^(fp^) PERLIO_FILE_cnt^(fp^)&& \
1068 echo #define FILE_base^(fp^) PERLIO_FILE_base^(fp^)&& \
1069 echo #define FILE_bufsiz^(fp^) ^(PERLIO_FILE_cnt^(fp^) + PERLIO_FILE_ptr^(fp^) - PERLIO_FILE_base^(fp^)^)&& \
1070 echo #define I_STDBOOL)>> config.h
1071!ENDIF
1072!IF "$(USE_LARGE_FILES)"=="define"
1073 @(echo #define Off_t $(INT64)&& \
1074 echo #define LSEEKSIZE ^8&& \
1075 echo #define Off_t_size ^8)>> config.h
1076!ELSE
1077 @(echo #define Off_t long&& \
1078 echo #define LSEEKSIZE ^4&& \
1079 echo #define Off_t_size ^4)>> config.h
1080!ENDIF
1081!IF "$(WIN64)"=="define"
1082 @(echo #define PTRSIZE ^8&& \
1083 echo #define SSize_t $(INT64)&& \
1084 echo #define HAS_ATOLL&& \
1085 echo #define HAS_STRTOLL&& \
1086 echo #define HAS_STRTOULL&& \
1087 echo #define Size_t_size ^8)>> config.h
1088!ELSE
1089 @(echo #define PTRSIZE ^4&& \
1090 echo #define SSize_t int&& \
1091 echo #undef HAS_ATOLL&& \
1092 echo #undef HAS_STRTOLL&& \
1093 echo #undef HAS_STRTOULL&& \
1094 echo #define Size_t_size ^4)>> config.h
1095!ENDIF
1096!IF "$(USE_64_BIT_INT)"=="define"
1097 @(echo #define IVTYPE $(INT64)&& \
1098 echo #define UVTYPE unsigned $(INT64)&& \
1099 echo #define IVSIZE ^8&& \
1100 echo #define UVSIZE ^8&& \
1101 echo #undef NV_PRESERVES_UV&& \
1102 echo #define NV_PRESERVES_UV_BITS 53&& \
1103 echo #define IVdf "I64d"&& \
1104 echo #define UVuf "I64u"&& \
1105 echo #define UVof "I64o"&& \
1106 echo #define UVxf "I64x"&& \
1107 echo #define UVXf "I64X"&& \
1108 echo #define USE_64_BIT_INT)>> config.h
1109!ELSE
1110 @(echo #define IVTYPE long&& \
1111 echo #define UVTYPE unsigned long&& \
1112 echo #define IVSIZE ^4&& \
1113 echo #define UVSIZE ^4&& \
1114 echo #define NV_PRESERVES_UV&& \
1115 echo #define NV_PRESERVES_UV_BITS 32&& \
1116 echo #define IVdf "ld"&& \
1117 echo #define UVuf "lu"&& \
1118 echo #define UVof "lo"&& \
1119 echo #define UVxf "lx"&& \
1120 echo #define UVXf "lX"&& \
1121 echo #undef USE_64_BIT_INT)>> config.h
1122!ENDIF
1123!IF "$(USE_CPLUSPLUS)"=="define"
1124 @(echo #define USE_CPLUSPLUS&& \
1125 echo #endif)>> config.h
1126!ELSE
1127 @(echo #undef USE_CPLUSPLUS&& \
1128 echo #endif)>> config.h
1129!ENDIF
1130#separate line since this is sentinal that this target is done
1131 @rem. > $(MINIDIR)\.exists
9e42cd94
GS
1132
1133$(MINICORE_OBJ) : $(CORE_NOCFG_H)
8c4561fb 1134 $(CC) -c $(CFLAGS) -DPERL_EXTERNAL_GLOB -DPERL_IS_MINIPERL $(OBJOUT_FLAG)$@ ..\$(*F).c
9e42cd94
GS
1135
1136$(MINIWIN32_OBJ) : $(CORE_NOCFG_H)
a19baa61 1137 $(CC) -c $(CFLAGS) -DPERL_IS_MINIPERL $(OBJOUT_FLAG)$@ $(*F).c
9e42cd94
GS
1138
1139# -DPERL_IMPLICIT_SYS needs C++ for perllib.c
1140# This is the only file that depends on perlhost.h, vmem.h, and vdir.h
1141!IF "$(USE_IMP_SYS)" == "define"
1142perllib$(o) : perllib.c .\perlhost.h .\vdir.h .\vmem.h
1143 $(CC) -c -I. $(CFLAGS_O) $(CXX_FLAG) $(OBJOUT_FLAG)$@ perllib.c
1144!ENDIF
1145
1146# 1. we don't want to rebuild miniperl.exe when config.h changes
1147# 2. we don't want to rebuild miniperl.exe with non-default config.h
931482b7 1148# 3. we can't have miniperl.exe depend on git_version.h, as miniperl creates it
19d5c34a 1149$(MINI_OBJ) : $(MINIDIR)\.exists $(CORE_NOCFG_H)
9e42cd94
GS
1150
1151$(WIN32_OBJ) : $(CORE_H)
1152$(CORE_OBJ) : $(CORE_H)
1153$(DLL_OBJ) : $(CORE_H)
9e42cd94 1154
d500e60d 1155perldll.def : $(MINIPERL) $(CONFIGPM) ..\embed.fnc ..\makedef.pl create_perllibst_h.pl
c6d234b8 1156 $(MINIPERL) -I..\lib create_perllibst_h.pl
c1effa61 1157 $(MINIPERL) -I..\lib -w ..\makedef.pl PLATFORM=win32 $(OPTIMIZE) $(DEFINES) $(BUILDOPT) \
080c3729 1158 CCTYPE=$(CCTYPE) TARG_DIR=..\ > perldll.def
9e42cd94 1159
595589fa 1160$(PERLDLL): perldll.def $(PERLDLL_OBJ) $(PERLDLL_RES) Extensions_static
6368ab83
TC
1161 $(LINK32) -dll -def:perldll.def -base:0x28000000 -out:$@ @Extensions_static @<<
1162 $(BLINK_FLAGS) $(DELAYLOAD) $(LIBFILES) $(PERLDLL_OBJ) $(PERLDLL_RES)
9e42cd94 1163<<
c8e599d3 1164 $(EMBED_DLL_MANI)
9e42cd94
GS
1165 $(XCOPY) $(PERLIMPLIB) $(COREDIR)
1166
4e036e4b
VK
1167$(PERLSTATICLIB): Extensions_static
1168 $(LIB32) $(LIB_FLAGS) -out:$@ @Extensions_static @<<
1169 $(PERLDLL_OBJ)
1170<<
1171 $(XCOPY) $(PERLSTATICLIB) $(COREDIR)
1172
4ebea3c6 1173$(PERLEXE_RES): perlexe.rc $(PERLEXE_MANIFEST) $(PERLEXE_ICO)
e84ac4e2 1174
9387abf8 1175$(MINIDIR)\globals$(o) : $(GENERATED_HEADERS)
9444d213 1176
6f83ef0e 1177$(UUDMAP_H) $(MG_DATA_H) : $(BITCOUNT_H)
6999193b
NC
1178
1179$(BITCOUNT_H) : $(GENUUDMAP)
9387abf8 1180 $(GENUUDMAP) $(GENERATED_HEADERS)
6f83ef0e
NC
1181
1182$(GENUUDMAP_OBJ) : ..\mg_raw.h
9444d213 1183
202d1001 1184$(GENUUDMAP) : $(GENUUDMAP_OBJ)
269713a1
DD
1185 $(LINK32) -out:$@ @<<
1186 $(BLINK_FLAGS) $(LIBFILES) $(GENUUDMAP_OBJ)
202d1001
SH
1187<<
1188 $(EMBED_EXE_MANI)
9444d213 1189
9e42cd94
GS
1190perlmain.c : runperl.c
1191 copy runperl.c perlmain.c
1192
1193perlmain$(o) : perlmain.c
88c9158a 1194 $(CC) $(CFLAGS_O:-DPERLDLL=-UPERLDLL) $(OBJOUT_FLAG)$@ -c perlmain.c
9e42cd94 1195
4e036e4b
VK
1196perlmainst.c : runperl.c
1197 copy runperl.c perlmainst.c
1198
1199perlmainst$(o) : perlmainst.c
88c9158a 1200 $(CC) $(CFLAGS_O) $(OBJOUT_FLAG)$@ -c perlmainst.c
4e036e4b 1201
931482b7 1202$(PERLEXE): $(PERLDLL) $(CONFIGPM) $(PERLEXE_OBJ) $(PERLEXE_RES)
269713a1 1203 $(LINK32) -out:$@ $(BLINK_FLAGS) \
aafd2430 1204 $(PERLEXE_OBJ) $(PERLEXE_RES) $(PERLIMPLIB) $(LIBFILES) $(SETARGV_OBJ)
c8e599d3 1205 $(EMBED_EXE_MANI)
9e42cd94
GS
1206 copy $(PERLEXE) $(WPERLEXE)
1207 $(MINIPERL) -I..\lib bin\exetype.pl $(WPERLEXE) WINDOWS
9e42cd94 1208
931482b7 1209$(PERLEXESTATIC): $(PERLSTATICLIB) $(CONFIGPM) $(PERLEXEST_OBJ) $(PERLEXE_RES)
269713a1 1210 $(LINK32) -out:$@ $(BLINK_FLAGS) \
aafd2430 1211 $(PERLEXEST_OBJ) $(PERLEXE_RES) $(PERLSTATICLIB) $(LIBFILES) $(SETARGV_OBJ)
4e036e4b
VK
1212 $(EMBED_EXE_MANI)
1213
d1a21686 1214MakePPPort: $(MINIPERL) $(CONFIGPM) Extensions_nonxs
f6b3c354 1215 $(MINIPERL) -I..\lib ..\mkppport
42e07562 1216
9dcb9602 1217#-------------------------------------------------------------------------------
281da5ea 1218# There's no direct way to mark a dependency on
6afd19bc 1219# DynaLoader.pm, so this will have to do
5e4c4c91 1220Extensions: ..\make_ext.pl ..\lib\buildcustomize.pl $(PERLDEP) $(CONFIGPM) $(DYNALOADER)
a5ca303d 1221 $(XCOPY) ..\*.h $(COREDIR)\*.*
a193a2db 1222 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --dynamic
595589fa 1223
5e4c4c91 1224Extensions_reonly: ..\make_ext.pl ..\lib\buildcustomize.pl $(PERLDEP) $(CONFIGPM) $(DYNALOADER)
a5ca303d 1225 $(XCOPY) ..\*.h $(COREDIR)\*.*
a193a2db 1226 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --dynamic +re
a24cc0c0 1227
183ebedc 1228Extensions_static : ..\make_ext.pl ..\lib\buildcustomize.pl list_static_libs.pl $(PERLDEP) $(CONFIGPM) Extensions_nonxs
a5ca303d 1229 $(XCOPY) ..\*.h $(COREDIR)\*.*
a193a2db 1230 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --static
c6d234b8 1231 $(MINIPERL) -I..\lib list_static_libs.pl > Extensions_static
9e42cd94 1232
291c8c21 1233Extensions_nonxs: ..\make_ext.pl ..\lib\buildcustomize.pl $(PERLDEP) $(CONFIGPM) ..\pod\perlfunc.pod
a34ce875 1234 $(XCOPY) ..\*.h $(COREDIR)\*.*
a193a2db 1235 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --nonxs
a34ce875 1236
5e4c4c91 1237$(DYNALOADER) : ..\make_ext.pl ..\lib\buildcustomize.pl $(PERLDEP) $(CONFIGPM) Extensions_nonxs
281da5ea
NC
1238 $(XCOPY) ..\*.h $(COREDIR)\*.*
1239 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(EXTDIR) --dynaloader
1240
9e42cd94 1241Extensions_clean:
a193a2db 1242 -if exist $(MINIPERL) $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --all --target=clean
9e42cd94 1243
b4dc1df6 1244Extensions_realclean:
a193a2db 1245 -if exist $(MINIPERL) $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --all --target=realclean
b4dc1df6 1246
c0e3b4b5 1247PostExt: ..\lib\Storable\Limit.pm
fda9c55c 1248
c0e3b4b5 1249..\lib\Storable\Limit.pm: $(PERLEXE) Extensions
b58c2b0d 1250 cd ..\dist\Storable && $(MAKE) lib\Storable\Limit.pm
c0e3b4b5
TC
1251 if not exist ..\lib\Storable mkdir ..\lib\Storable
1252 copy ..\dist\Storable\lib\Storable\Limit.pm ..\lib\Storable\Limit.pm
fda9c55c 1253
9dcb9602 1254#-------------------------------------------------------------------------------
9e42cd94 1255
0195b144 1256doc: $(PERLEXE) ..\pod\perltoc.pod
a4e8ab8a 1257 $(PERLEXE) ..\installhtml --podroot=.. --htmldir=$(HTMLDIR) \
f8dbed5a 1258 --podpath=pod:lib:utils --htmlroot="file://$(INST_HTML::=|)" \
9b1d99d7 1259 --recurse
9e42cd94 1260
0827416d
NC
1261..\utils\Makefile: $(CONFIGPM) ..\utils\Makefile.PL
1262 $(MINIPERL) -I..\lib ..\utils\Makefile.PL ..
1263
b0b6bf2b
AT
1264# Note that this next section is parsed (and regenerated) by pod/buildtoc
1265# so please check that script before making structural changes here
1266
e5a8a0fb 1267utils: $(PERLEXE) ..\utils\Makefile
9e42cd94
GS
1268 cd ..\utils
1269 $(MAKE) PERL=$(MINIPERL)
1270 cd ..\pod
b0b6bf2b
AT
1271 copy ..\README.aix ..\pod\perlaix.pod
1272 copy ..\README.amiga ..\pod\perlamiga.pod
6001596e 1273 copy ..\README.android ..\pod\perlandroid.pod
b0b6bf2b
AT
1274 copy ..\README.bs2000 ..\pod\perlbs2000.pod
1275 copy ..\README.ce ..\pod\perlce.pod
1276 copy ..\README.cn ..\pod\perlcn.pod
1277 copy ..\README.cygwin ..\pod\perlcygwin.pod
b0b6bf2b 1278 copy ..\README.dos ..\pod\perldos.pod
b0b6bf2b 1279 copy ..\README.freebsd ..\pod\perlfreebsd.pod
9f968a8d 1280 copy ..\README.haiku ..\pod\perlhaiku.pod
b0b6bf2b
AT
1281 copy ..\README.hpux ..\pod\perlhpux.pod
1282 copy ..\README.hurd ..\pod\perlhurd.pod
1283 copy ..\README.irix ..\pod\perlirix.pod
1284 copy ..\README.jp ..\pod\perljp.pod
1285 copy ..\README.ko ..\pod\perlko.pod
6477b319 1286 copy ..\README.linux ..\pod\perllinux.pod
b0b6bf2b
AT
1287 copy ..\README.macos ..\pod\perlmacos.pod
1288 copy ..\README.macosx ..\pod\perlmacosx.pod
b0b6bf2b 1289 copy ..\README.netware ..\pod\perlnetware.pod
b0846812 1290 copy ..\README.openbsd ..\pod\perlopenbsd.pod
b0b6bf2b
AT
1291 copy ..\README.os2 ..\pod\perlos2.pod
1292 copy ..\README.os390 ..\pod\perlos390.pod
1293 copy ..\README.os400 ..\pod\perlos400.pod
1294 copy ..\README.plan9 ..\pod\perlplan9.pod
1295 copy ..\README.qnx ..\pod\perlqnx.pod
2f08ed66 1296 copy ..\README.riscos ..\pod\perlriscos.pod
b0b6bf2b 1297 copy ..\README.solaris ..\pod\perlsolaris.pod
27da23d5 1298 copy ..\README.symbian ..\pod\perlsymbian.pod
58534900 1299 copy ..\README.synology ..\pod\perlsynology.pod
b0b6bf2b
AT
1300 copy ..\README.tru64 ..\pod\perltru64.pod
1301 copy ..\README.tw ..\pod\perltw.pod
b0b6bf2b
AT
1302 copy ..\README.vos ..\pod\perlvos.pod
1303 copy ..\README.win32 ..\pod\perlwin32.pod
4380f76d 1304 copy ..\pod\perldelta.pod ..\pod\perl5296delta.pod
9e42cd94
GS
1305 cd ..\win32
1306 $(PERLEXE) $(PL2BAT) $(UTILS)
f8d6280f 1307 $(MINIPERL) -I..\lib ..\autodoc.pl ..
f556af6c 1308 $(MINIPERL) -I..\lib ..\pod\perlmodlib.PL -q ..
0195b144
NC
1309
1310..\pod\perltoc.pod: $(PERLEXE) Extensions Extensions_nonxs
b78c1104 1311 $(PERLEXE) -f ..\pod\buildtoc -q
9e42cd94 1312
b0b6bf2b
AT
1313# Note that the pod cleanup in this next section is parsed (and regenerated
1314# by pod/buildtoc so please check that script before making changes here
1315
b4dc1df6 1316distclean: realclean
9e42cd94 1317 -del /f $(MINIPERL) $(PERLEXE) $(PERLDLL) $(GLOBEXE) \
7b4d95f7 1318 $(PERLIMPLIB) ..\miniperl.lib $(PERLEXESTATIC) $(PERLSTATICLIB)
ca67812f
SH
1319 -del /f $(LIBDIR)\Encode.pm $(LIBDIR)\encoding.pm $(LIBDIR)\Errno.pm
1320 -del /f $(LIBDIR)\Config.pod $(LIBDIR)\POSIX.pod $(LIBDIR)\threads.pm
48462a74 1321 -del /f $(LIBDIR)\.exists $(LIBDIR)\attributes.pm $(LIBDIR)\DynaLoader.pm
9e42cd94
GS
1322 -del /f $(LIBDIR)\Fcntl.pm $(LIBDIR)\IO.pm $(LIBDIR)\Opcode.pm
1323 -del /f $(LIBDIR)\ops.pm $(LIBDIR)\Safe.pm
1324 -del /f $(LIBDIR)\SDBM_File.pm $(LIBDIR)\Socket.pm $(LIBDIR)\POSIX.pm
1325 -del /f $(LIBDIR)\B.pm $(LIBDIR)\O.pm $(LIBDIR)\re.pm
9e42cd94
GS
1326 -del /f $(LIBDIR)\File\Glob.pm
1327 -del /f $(LIBDIR)\Storable.pm
ca67812f 1328 -del /f $(LIBDIR)\Sys\Hostname.pm
9e42cd94 1329 -del /f $(LIBDIR)\Time\HiRes.pm
9e42cd94 1330 -del /f $(LIBDIR)\Unicode\Normalize.pm
4e74047c 1331 -del /f $(LIBDIR)\Math\BigInt\FastCalc.pm
c0e3b4b5 1332 -del /f $(LIBDIR)\Storable.pm $(LIBDIR)\Storable\Limit.pm
b4ad57f4 1333 -del /f $(LIBDIR)\Win32.pm
37ca3c28 1334 -del /f $(LIBDIR)\Win32CORE.pm
00701878
SH
1335 -del /f $(LIBDIR)\Win32API\File.pm
1336 -del /f $(LIBDIR)\Win32API\File\cFile.pc
5e4c4c91 1337 -del /f $(LIBDIR)\buildcustomize.pl
a85e0e8c 1338 -del /f $(DISTDIR)\XSLoader\XSLoader.pm
5daeb5b0 1339 -del /f *.def *.map
6e8fbcb5 1340 -if exist $(LIBDIR)\Amiga rmdir /s /q $(LIBDIR)\Amiga
1a6c65ed
SH
1341 -if exist $(LIBDIR)\App rmdir /s /q $(LIBDIR)\App
1342 -if exist $(LIBDIR)\Archive rmdir /s /q $(LIBDIR)\Archive
1343 -if exist $(LIBDIR)\Attribute rmdir /s /q $(LIBDIR)\Attribute
1344 -if exist $(LIBDIR)\autodie rmdir /s /q $(LIBDIR)\autodie
7afc9753 1345 -if exist $(LIBDIR)\Carp rmdir /s /q $(LIBDIR)\Carp
46ffdcf0 1346 -if exist $(LIBDIR)\Compress rmdir /s /q $(LIBDIR)\Compress
7afc9753
NC
1347 -if exist $(LIBDIR)\Config\Perl rmdir /s /q $(LIBDIR)\Config\Perl
1348 -if exist $(LIBDIR)\CPAN rmdir /s /q $(LIBDIR)\CPAN
9e42cd94 1349 -if exist $(LIBDIR)\Data rmdir /s /q $(LIBDIR)\Data
1a6c65ed
SH
1350 -if exist $(LIBDIR)\Devel rmdir /s /q $(LIBDIR)\Devel
1351 -if exist $(LIBDIR)\Digest rmdir /s /q $(LIBDIR)\Digest
ca67812f 1352 -if exist $(LIBDIR)\Encode rmdir /s /q $(LIBDIR)\Encode
1a6c65ed 1353 -if exist $(LIBDIR)\encoding rmdir /s /q $(LIBDIR)\encoding
7afc9753 1354 -if exist $(LIBDIR)\Exporter rmdir /s /q $(LIBDIR)\Exporter
1a6c65ed
SH
1355 -if exist $(LIBDIR)\ExtUtils\CBuilder rmdir /s /q $(LIBDIR)\ExtUtils\CBuilder
1356 -if exist $(LIBDIR)\ExtUtils\Command rmdir /s /q $(LIBDIR)\ExtUtils\Command
1357 -if exist $(LIBDIR)\ExtUtils\Constant rmdir /s /q $(LIBDIR)\ExtUtils\Constant
1358 -if exist $(LIBDIR)\ExtUtils\Liblist rmdir /s /q $(LIBDIR)\ExtUtils\Liblist
1359 -if exist $(LIBDIR)\ExtUtils\MakeMaker rmdir /s /q $(LIBDIR)\ExtUtils\MakeMaker
7afc9753
NC
1360 -if exist $(LIBDIR)\ExtUtils\ParseXS rmdir /s /q $(LIBDIR)\ExtUtils\ParseXS
1361 -if exist $(LIBDIR)\ExtUtils\Typemaps rmdir /s /q $(LIBDIR)\ExtUtils\Typemaps
1a6c65ed
SH
1362 -if exist $(LIBDIR)\File\Spec rmdir /s /q $(LIBDIR)\File\Spec
1363 -if exist $(LIBDIR)\Filter rmdir /s /q $(LIBDIR)\Filter
96c33d98 1364 -if exist $(LIBDIR)\Hash rmdir /s /q $(LIBDIR)\Hash
7afc9753
NC
1365 -if exist $(LIBDIR)\HTTP rmdir /s /q $(LIBDIR)\HTTP
1366 -if exist $(LIBDIR)\I18N rmdir /s /q $(LIBDIR)\I18N
df61f5a9 1367 -if exist $(LIBDIR)\inc rmdir /s /q $(LIBDIR)\inc
1a6c65ed
SH
1368 -if exist $(LIBDIR)\IO rmdir /s /q $(LIBDIR)\IO
1369 -if exist $(LIBDIR)\IPC rmdir /s /q $(LIBDIR)\IPC
7afc9753 1370 -if exist $(LIBDIR)\JSON rmdir /s /q $(LIBDIR)\JSON
69f57184 1371 -if exist $(LIBDIR)\List rmdir /s /q $(LIBDIR)\List
1a6c65ed 1372 -if exist $(LIBDIR)\Locale rmdir /s /q $(LIBDIR)\Locale
1a6c65ed
SH
1373 -if exist $(LIBDIR)\Math rmdir /s /q $(LIBDIR)\Math
1374 -if exist $(LIBDIR)\Memoize rmdir /s /q $(LIBDIR)\Memoize
69f57184 1375 -if exist $(LIBDIR)\MIME rmdir /s /q $(LIBDIR)\MIME
1a6c65ed 1376 -if exist $(LIBDIR)\Module rmdir /s /q $(LIBDIR)\Module
1a6c65ed 1377 -if exist $(LIBDIR)\Net\FTP rmdir /s /q $(LIBDIR)\Net\FTP
1a6c65ed
SH
1378 -if exist $(LIBDIR)\Params rmdir /s /q $(LIBDIR)\Params
1379 -if exist $(LIBDIR)\Parse rmdir /s /q $(LIBDIR)\Parse
7afc9753 1380 -if exist $(LIBDIR)\Perl rmdir /s /q $(LIBDIR)\Perl
1a6c65ed
SH
1381 -if exist $(LIBDIR)\PerlIO rmdir /s /q $(LIBDIR)\PerlIO
1382 -if exist $(LIBDIR)\Pod\Perldoc rmdir /s /q $(LIBDIR)\Pod\Perldoc
1383 -if exist $(LIBDIR)\Pod\Simple rmdir /s /q $(LIBDIR)\Pod\Simple
1384 -if exist $(LIBDIR)\Pod\Text rmdir /s /q $(LIBDIR)\Pod\Text
9e42cd94 1385 -if exist $(LIBDIR)\Scalar rmdir /s /q $(LIBDIR)\Scalar
7afc9753 1386 -if exist $(LIBDIR)\Search rmdir /s /q $(LIBDIR)\Search
d81c2d6a 1387 -if exist $(LIBDIR)\Sub rmdir /s /q $(LIBDIR)\Sub
6c4b87ea 1388 -if exist $(LIBDIR)\Sys rmdir /s /q $(LIBDIR)\Sys
1a6c65ed 1389 -if exist $(LIBDIR)\TAP rmdir /s /q $(LIBDIR)\TAP
7afc9753 1390 -if exist $(LIBDIR)\Term rmdir /s /q $(LIBDIR)\Term
1a6c65ed 1391 -if exist $(LIBDIR)\Test rmdir /s /q $(LIBDIR)\Test
b4514920 1392 -if exist $(LIBDIR)\Test2 rmdir /s /q $(LIBDIR)\Test2
7afc9753 1393 -if exist $(LIBDIR)\Text rmdir /s /q $(LIBDIR)\Text
1a6c65ed 1394 -if exist $(LIBDIR)\Thread rmdir /s /q $(LIBDIR)\Thread
6c4b87ea 1395 -if exist $(LIBDIR)\threads rmdir /s /q $(LIBDIR)\threads
8cf6f931 1396 -if exist $(LIBDIR)\Tie\Hash rmdir /s /q $(LIBDIR)\Tie\Hash
1a6c65ed 1397 -if exist $(LIBDIR)\Unicode\Collate rmdir /s /q $(LIBDIR)\Unicode\Collate
7afc9753 1398 -if exist $(LIBDIR)\Unicode\Collate\Locale rmdir /s /q $(LIBDIR)\Unicode\Collate\Locale
fb794281 1399 -if exist $(LIBDIR)\version rmdir /s /q $(LIBDIR)\version
7afc9753 1400 -if exist $(LIBDIR)\VMS rmdir /s /q $(LIBDIR)\VMS
00701878 1401 -if exist $(LIBDIR)\Win32API rmdir /s /q $(LIBDIR)\Win32API
7afc9753 1402 -if exist $(LIBDIR)\XS rmdir /s /q $(LIBDIR)\XS
60f0ee9d 1403 -cd $(PODDIR) && del /f *.html *.bat roffitall \
4380f76d 1404 perl5296delta.pod perlaix.pod perlamiga.pod perlandroid.pod \
6001596e
BF
1405 perlapi.pod perlbs2000.pod perlce.pod perlcn.pod perlcygwin.pod \
1406 perldos.pod perlfreebsd.pod perlhaiku.pod perlhpux.pod \
1407 perlhurd.pod perlintern.pod perlirix.pod perljp.pod perlko.pod \
1408 perllinux.pod perlmacos.pod perlmacosx.pod perlmodlib.pod \
1409 perlnetware.pod perlopenbsd.pod perlos2.pod perlos390.pod \
1410 perlos400.pod perlplan9.pod perlqnx.pod perlriscos.pod \
1411 perlsolaris.pod perlsymbian.pod perlsynology.pod perltoc.pod \
1412 perltru64.pod perltw.pod perluniprops.pod perlvos.pod \
1413 perlwin32.pod
2560602c 1414 -cd ..\utils && del /f h2ph splain perlbug pl2pm h2xs \
59658819 1415 perldoc perlivp libnetcfg enc2xs encguess piconv cpan *.bat \
2ea3abd4 1416 xsubpp pod2html instmodsh json_pp prove ptar ptardiff ptargrep shasum corelist zipdetails
19ec6f53 1417 -del /f ..\config.sh perlmain.c dlutils.c config.h.new \
4e036e4b 1418 perlmainst.c
9e42cd94 1419 -del /f $(CONFIGPM)
a148edb6 1420 -del /f ..\lib\Config_git.pl
9e42cd94 1421 -del /f bin\*.bat
322fd642 1422 -del /f perllibst.h
4ebea3c6 1423 -del /f $(PERLEXE_RES) perl.base
85741d00 1424 -cd .. && del /s *.lib *.map *.pdb *.ilk *.bs *$(o) .exists pm_to_blib ppport.h
ca67812f 1425 -cd $(EXTDIR) && del /s *.def Makefile Makefile.old
a193a2db 1426 -cd $(DISTDIR) && del /s *.def Makefile Makefile.old
b212a3c6 1427 -cd $(CPANDIR) && del /s *.def Makefile Makefile.old
0827416d 1428 -del /s ..\utils\Makefile
9e42cd94 1429 -if exist $(AUTODIR) rmdir /s /q $(AUTODIR)
9e42cd94 1430 -if exist $(COREDIR) rmdir /s /q $(COREDIR)
b4a41557 1431 -if exist pod2htmd.tmp del pod2htmd.tmp
b4a41557 1432 -if exist $(HTMLDIR) rmdir /s /q $(HTMLDIR)
0279961e 1433 -del /f ..\t\test_state
9e42cd94
GS
1434
1435install : all installbare installhtml
1436
0195b144 1437installbare : utils ..\pod\perltoc.pod
9e42cd94
GS
1438 $(PERLEXE) ..\installperl
1439 if exist $(WPERLEXE) $(XCOPY) $(WPERLEXE) $(INST_BIN)\*.*
5548433c 1440 if exist $(PERLEXESTATIC) $(XCOPY) $(PERLEXESTATIC) $(INST_BIN)\*.*
9e42cd94 1441 $(XCOPY) $(GLOBEXE) $(INST_BIN)\*.*
ec25c072 1442 if exist ..\perl*.pdb $(XCOPY) ..\perl*.pdb $(INST_BIN)\*.*
9e42cd94
GS
1443 $(XCOPY) bin\*.bat $(INST_SCRIPT)\*.*
1444
1445installhtml : doc
b4a41557 1446 $(RCOPY) $(HTMLDIR)\*.* $(INST_HTML)\*.*
9e42cd94
GS
1447
1448inst_lib : $(CONFIGPM)
9e42cd94
GS
1449 $(RCOPY) ..\lib $(INST_LIB)\*.*
1450
58fa074c 1451$(UNIDATAFILES) ..\pod\perluniprops.pod : $(MINIPERL) $(CONFIGPM) ..\lib\unicore\mktables Extensions_nonxs
27a8011f 1452 cd ..\lib\unicore && \
a84da042 1453 ..\$(MINIPERL) -I.. mktables -P ..\..\pod -maketest -makelist -p -check $@ $(FIRSTUNIFILE)
ca12659b 1454
735ecbe9 1455minitest : .\config.h $(MINIPERL) ..\git_version.h $(GLOBEXE) $(CONFIGPM) $(UNIDATAFILES)
6c85d12e
SH
1456 $(XCOPY) $(MINIPERL) ..\t\$(NULL)
1457 if exist ..\t\perl.exe del /f ..\t\perl.exe
1458 rename ..\t\miniperl.exe perl.exe
9e42cd94 1459 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
a4e8ab8a 1460# Note this perl.exe is miniperl
49bf91e4 1461 cd ..\t && perl.exe TEST base/*.t comp/*.t cmd/*.t run/*.t io/*.t re/*.t opbasic/*.t op/*.t uni/*.t perf/*.t pragma/*.t
9e42cd94 1462
3bef022b 1463test-prep : all utils ../pod/perltoc.pod
9e42cd94
GS
1464 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1465 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1466 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
0b4dcbc1 1467 set PERL_STATIC_EXT=$(STATIC_EXT)
9e42cd94
GS
1468
1469test : test-prep
1470 cd ..\t
a4e8ab8a 1471 perl.exe harness $(TEST_SWITCHES) $(TEST_FILES)
9e42cd94
GS
1472 cd ..\win32
1473
247c55c0
CBW
1474test_porting : test-prep
1475 cd ..\t
a4e8ab8a 1476 perl.exe harness $(TEST_SWITCHES) porting\*.t ..\lib\diagnostics.t
247c55c0
CBW
1477 cd ..\win32
1478
6ae7e459
YO
1479test-reonly : reonly utils
1480 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1481 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1482 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1483 cd ..\t
a4e8ab8a 1484 perl.exe harness $(OPT) -re \bre\\/ $(EXTRA)
6ae7e459 1485 cd ..\win32
7bcddc65 1486
c900f745 1487regen :
7bcddc65
YO
1488 cd ..
1489 regen.pl
1490 cd win32
1491
9e42cd94
GS
1492test-notty : test-prep
1493 set PERL_SKIP_TTY_TEST=1
1494 cd ..\t
a4e8ab8a 1495 perl.exe harness $(TEST_SWITCHES) $(TEST_FILES)
9e42cd94
GS
1496 cd ..\win32
1497
b4a93add
NK
1498_test :
1499 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1500 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1501 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1502 cd ..\t
a4e8ab8a 1503 perl.exe harness $(TEST_SWITCHES) $(TEST_FILES)
b4a93add
NK
1504 cd ..\win32
1505
b4dc1df6 1506_clean :
9e42cd94
GS
1507 -@$(DEL) miniperlmain$(o)
1508 -@$(DEL) $(MINIPERL)
1509 -@$(DEL) perlglob$(o)
1510 -@$(DEL) perlmain$(o)
4e036e4b 1511 -@$(DEL) perlmainst$(o)
9e42cd94 1512 -@$(DEL) config.h
a148edb6 1513 -@$(DEL) ..\git_version.h
9e42cd94
GS
1514 -@$(DEL) $(GLOBEXE)
1515 -@$(DEL) $(PERLEXE)
1516 -@$(DEL) $(WPERLEXE)
4e036e4b
VK
1517 -@$(DEL) $(PERLEXESTATIC)
1518 -@$(DEL) $(PERLSTATICLIB)
9e42cd94
GS
1519 -@$(DEL) $(PERLDLL)
1520 -@$(DEL) $(CORE_OBJ)
9387abf8 1521 -@$(DEL) $(GENUUDMAP) $(GENUUDMAP_OBJ) $(GENERATED_HEADERS)
9e42cd94 1522 -if exist $(MINIDIR) rmdir /s /q $(MINIDIR)
27a8011f 1523 -if exist $(UNIDATADIR1) rmdir /s /q $(UNIDATADIR1)
27a8011f 1524 -if exist $(UNIDATADIR2) rmdir /s /q $(UNIDATADIR2)
ca12659b 1525 -@$(DEL) $(UNIDATAFILES)
27a8011f 1526 -@$(DEL) $(WIN32_OBJ)
9e42cd94 1527 -@$(DEL) $(DLL_OBJ)
9e42cd94
GS
1528 -@$(DEL) ..\*$(o) ..\*.lib ..\*.exp *$(o) *.lib *.exp *.res
1529 -@$(DEL) ..\t\*.exe ..\t\*.dll ..\t\*.bat
9e42cd94
GS
1530 -@$(DEL) *.ilk
1531 -@$(DEL) *.pdb
9e7cf449 1532 -@$(DEL) Extensions_static
9e42cd94 1533
6e2cec71 1534clean : Extensions_clean _clean
b4dc1df6 1535
85741d00 1536realclean : Extensions_realclean _clean
b4dc1df6 1537
9e42cd94
GS
1538# Handy way to run perlbug -ok without having to install and run the
1539# installed perlbug. We don't re-run the tests here - we trust the user.
1540# Please *don't* use this unless all tests pass.
1541# If you want to report test failures, use "nmake nok" instead.
1542ok: utils
a4e8ab8a 1543 $(PERLEXE) ..\utils\perlbug -ok -s "(UNINSTALLED)"
9e42cd94
GS
1544
1545okfile: utils
a4e8ab8a 1546 $(PERLEXE) ..\utils\perlbug -ok -s "(UNINSTALLED)" -F perl.ok
9e42cd94
GS
1547
1548nok: utils
a4e8ab8a 1549 $(PERLEXE) ..\utils\perlbug -nok -s "(UNINSTALLED)"
9e42cd94
GS
1550
1551nokfile: utils
a4e8ab8a 1552 $(PERLEXE) ..\utils\perlbug -nok -s "(UNINSTALLED)" -F perl.nok