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