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