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