This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Call FETCH once for $tied_ref =~ y/a/b/
[perl5.git] / win32 / Makefile
CommitLineData
9e42cd94 1#
b6c85593 2# Makefile to build perl on Windows using Microsoft NMAKE.
9e42cd94 3# Supported compilers:
b6c85593 4# Microsoft Visual C++ 6.0 or later
02e200fc 5# Windows SDK 64-bit compiler and tools
9e42cd94
GS
6#
7# This is set up to build a perl.exe that runs off a shared library
8891dd8d 8# (perl515.dll). Also makes individual DLLs for the XS extensions.
9e42cd94
GS
9#
10
11##
12## Make sure you read README.win32 *before* you mess with anything here!
13##
14
15##
16## Build configuration. Edit the values below to suit your needs.
17##
18
19#
20# Set these to wherever you want "nmake install" to put your
21# newly built perl.
22#
23INST_DRV = c:
24INST_TOP = $(INST_DRV)\perl
25
26#
b86e806e
JD
27# Uncomment if you want to build a 32-bit Perl using a 32-bit compiler
28# on a 64-bit version of Windows.
29#WIN64 = undef
30
31#
9e42cd94
GS
32# Comment this out if you DON'T want your perl installation to be versioned.
33# This means that the new installation will overwrite any files from the
34# old installation at the same INST_TOP location. Leaving it enabled is
35# the safest route, as perl adds the extra version directory to all the
36# locations it installs files to. If you disable it, an alternative
37# versioned installation can be obtained by setting INST_TOP above to a
38# path that includes an arbitrary version string.
39#
31308e0c 40#INST_VER = \5.15.5
9e42cd94
GS
41
42#
43# Comment this out if you DON'T want your perl installation to have
44# architecture specific components. This means that architecture-
45# specific files will be installed along with the architecture-neutral
46# files. Leaving it enabled is safer and more flexible, in case you
47# want to build multiple flavors of perl and install them together in
48# the same location. Commenting it out gives you a simpler
49# installation that is easier to understand for beginners.
50#
bdb4cb88 51#INST_ARCH = \$(ARCHNAME)
9e42cd94
GS
52
53#
7ada00a0
SH
54# Uncomment this if you want perl to run
55# $Config{sitelibexp}\sitecustomize.pl
56# before anything else. This script can then be set up, for example,
57# to add additional entries to @INC.
58#
59#USE_SITECUST = define
60
61#
9e42cd94 62# uncomment to enable multiple interpreters. This is need for fork()
f7d585d3 63# emulation and for thread support.
9e42cd94 64#
bdb4cb88 65USE_MULTI = define
9e42cd94
GS
66
67#
f7d585d3 68# Beginnings of interpreter cloning/threads; now reasonably complete.
9e42cd94
GS
69# This should be enabled to get the fork() emulation. This needs
70# USE_MULTI as well.
71#
bdb4cb88 72USE_ITHREADS = define
9e42cd94
GS
73
74#
75# uncomment to enable the implicit "host" layer for all system calls
76# made by perl. This needs USE_MULTI above. This is also needed to
77# get fork().
78#
bdb4cb88 79USE_IMP_SYS = define
9e42cd94
GS
80
81#
f7d585d3
GS
82# Comment out next assign to disable perl's I/O subsystem and use compiler's
83# stdio for IO - depending on your compiler vendor and run time library you may
84# then get a number of fails from make test i.e. bugs - complain to them not us ;-).
85# You will also be unable to take full advantage of perl5.8's support for multiple
86# encodings and may see lower IO performance. You have been warned.
9e42cd94
GS
87USE_PERLIO = 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.
bdb4cb88 93USE_LARGE_FILES = define
4a9d6100
GS
94
95#
da2c7419 96# uncomment exactly one of the following
9e42cd94 97#
1c847d4b 98# Visual C++ 6.x (aka Visual C++ 98)
4a9d6100 99CCTYPE = MSVC60
1c847d4b 100# Visual C++ Toolkit 2003 (aka Visual C++ 7.x) (free command-line tools)
da2c7419 101#CCTYPE = MSVC70FREE
1c847d4b 102# Visual C++ .NET 2003 (aka Visual C++ 7.x) (full version)
da2c7419 103#CCTYPE = MSVC70
02e200fc
JD
104# Windows Server 2003 SP1 Platform SDK (April 2005)
105#CCTYPE = SDK2003SP1
1c847d4b 106# Visual C++ 2005 Express Edition (aka Visual C++ 8.x) (free version)
73c9ebc7 107#CCTYPE = MSVC80FREE
1c847d4b 108# Visual C++ 2005 (aka Visual C++ 8.x) (full version)
73c9ebc7 109#CCTYPE = MSVC80
4a3cf07b
SH
110# Visual C++ 2008 Express Edition (aka Visual C++ 9.x) (free version)
111#CCTYPE = MSVC90FREE
112# Visual C++ 2008 (aka Visual C++ 9.x) (full version)
113#CCTYPE = MSVC90
2a46176f
SH
114# Visual C++ 2010 Express Edition (aka Visual C++ 10.x) (free version)
115#CCTYPE = MSVC100FREE
116# Visual C++ 2010 (aka Visual C++ 10.x) (full version)
117#CCTYPE = MSVC100
9e42cd94
GS
118
119#
120# uncomment next line if you want debug version of perl (big,slow)
f7d585d3
GS
121# If not enabled, we automatically try to use maximum optimization
122# with all compilers that are known to have a working optimizer.
9e42cd94
GS
123#
124#CFG = Debug
125
126#
9e42cd94
GS
127# uncomment to enable linking with setargv.obj under the Visual C
128# compiler. Setting this options enables perl to expand wildcards in
129# arguments, but it may be harder to use alternate methods like
130# File::DosGlob that are more powerful. This option is supported only with
131# Visual C.
132#
133#USE_SETARGV = define
134
135#
9e42cd94
GS
136# set this if you wish to use perl's malloc
137# WARNING: Turning this on/off WILL break binary compatibility with extensions
138# you may have compiled with/without it. Be prepared to recompile all
139# extensions if you change the default. Currently, this cannot be enabled
140# if you ask for USE_IMP_SYS above.
141#
142#PERL_MALLOC = define
143
144#
06c896bb
SH
145# set this to enable debugging mstats
146# This must be enabled to use the Devel::Peek::mstat() function. This cannot
147# be enabled without PERL_MALLOC as well.
148#
bdb4cb88 149#DEBUG_MSTATS = define
06c896bb
SH
150
151#
4e036e4b
VK
152# set this to additionally provide a statically linked perl-static.exe.
153# Note that dynamic loading will not work with this perl, so you must
a1f2e719 154# include required modules statically using the STATIC_EXT or ALL_STATIC
8891dd8d 155# variables below. A static library perl515s.lib will also be created.
4e036e4b
VK
156# Ordinary perl.exe is not affected by this option.
157#
158#BUILD_STATIC = define
159
160#
a1f2e719
VK
161# in addition to BUILD_STATIC the option ALL_STATIC makes *every*
162# extension get statically built
163# This will result in a very large perl executable, but the main purpose
164# is to have proper linking set so as to be able to create miscellaneous
165# executables with different built-in extensions
166#
167#ALL_STATIC = define
168
169#
06c896bb 170#
9e42cd94
GS
171# set the install locations of the compiler include/libraries
172# Running VCVARS32.BAT is *required* when using Visual C.
173# Some versions of Visual C don't define MSVCDIR in the environment,
174# so you may have to set CCHOME explicitly (spaces in the path name should
175# not be quoted)
176#
9e42cd94
GS
177CCHOME = $(MSVCDIR)
178CCINCDIR = $(CCHOME)\include
179CCLIBDIR = $(CCHOME)\lib
180
181#
182# Additional compiler flags can be specified here.
183#
2e30e1e1 184BUILDOPT = $(BUILDOPTEXTRA)
9e42cd94 185
7ada00a0 186#
9e42cd94
GS
187# This should normally be disabled. Enabling it will disable the File::Glob
188# implementation of CORE::glob.
189#
190#BUILDOPT = $(BUILDOPT) -DPERL_EXTERNAL_GLOB
191
192#
270ca148
JD
193# Perl needs to read scripts in text mode so that the DATA filehandle
194# works correctly with seek() and tell(), or around auto-flushes of
195# all filehandles (e.g. by system(), backticks, fork(), etc).
bdb4cb88 196#
270ca148
JD
197# The current version on the ByteLoader module on CPAN however only
198# works if scripts are read in binary mode. But before you disable text
199# mode script reading (and break some DATA filehandle functionality)
200# please check first if an updated ByteLoader isn't available on CPAN.
201#
202BUILDOPT = $(BUILDOPT) -DPERL_TEXTMODE_SCRIPTS
9e42cd94
GS
203
204#
205# specify semicolon-separated list of extra directories that modules will
206# look for libraries (spaces in path names need not be quoted)
207#
208EXTRALIBDIRS =
209
210#
211# set this to your email address (perl will guess a value from
212# from your loginname and your hostname, which may not be right)
213#
214#EMAIL =
215
216##
217## Build configuration ends.
218##
219
220##################### CHANGE THESE ONLY IF YOU MUST #####################
221
646e33b6
SH
222!IF "$(USE_IMP_SYS)" == "define"
223PERL_MALLOC = undef
224DEBUG_MSTATS = undef
225!ENDIF
226
9e42cd94
GS
227!IF "$(PERL_MALLOC)" == ""
228PERL_MALLOC = undef
646e33b6 229DEBUG_MSTATS = undef
06c896bb
SH
230!ENDIF
231
232!IF "$(DEBUG_MSTATS)" == ""
646e33b6 233DEBUG_MSTATS = undef
06c896bb
SH
234!ENDIF
235
236!IF "$(DEBUG_MSTATS)" == "define"
646e33b6 237BUILDOPT = $(BUILDOPT) -DPERL_DEBUGGING_MSTATS
9e42cd94
GS
238!ENDIF
239
7ada00a0
SH
240!IF "$(USE_SITECUST)" == ""
241USE_SITECUST = undef
242!ENDIF
243
9e42cd94
GS
244!IF "$(USE_MULTI)" == ""
245USE_MULTI = undef
246!ENDIF
247
248!IF "$(USE_ITHREADS)" == ""
249USE_ITHREADS = undef
250!ENDIF
251
252!IF "$(USE_IMP_SYS)" == ""
253USE_IMP_SYS = undef
254!ENDIF
255
256!IF "$(USE_PERLIO)" == ""
257USE_PERLIO = undef
258!ENDIF
259
4a9d6100
GS
260!IF "$(USE_LARGE_FILES)" == ""
261USE_LARGE_FILES = undef
262!ENDIF
263
3db8f154 264!IF "$(USE_IMP_SYS)$(USE_MULTI)" == "defineundef"
9e42cd94
GS
265USE_MULTI = define
266!ENDIF
267
268!IF "$(USE_ITHREADS)$(USE_MULTI)" == "defineundef"
269USE_MULTI = define
9e42cd94
GS
270!ENDIF
271
7ada00a0
SH
272!IF "$(USE_SITECUST)" == "define"
273BUILDOPT = $(BUILDOPT) -DUSE_SITECUSTOMIZE
274!ENDIF
275
3db8f154 276!IF "$(USE_MULTI)" != "undef"
9e42cd94
GS
277BUILDOPT = $(BUILDOPT) -DPERL_IMPLICIT_CONTEXT
278!ENDIF
279
280!IF "$(USE_IMP_SYS)" != "undef"
281BUILDOPT = $(BUILDOPT) -DPERL_IMPLICIT_SYS
282!ENDIF
283
284!IF "$(PROCESSOR_ARCHITECTURE)" == ""
285PROCESSOR_ARCHITECTURE = x86
286!ENDIF
287
c623ac67 288!IF "$(WIN64)" == ""
bf2a35e5
JD
289# When we are running from a 32bit cmd.exe on AMD64 then
290# PROCESSOR_ARCHITECTURE is set to x86 and PROCESSOR_ARCHITEW6432
291# is set to AMD64
c623ac67
GS
292!IF "$(PROCESSOR_ARCHITEW6432)" != ""
293PROCESSOR_ARCHITECTURE = $(PROCESSOR_ARCHITEW6432)
294WIN64 = define
295!ELSE
bf2a35e5 296!IF "$(PROCESSOR_ARCHITECTURE)" == "AMD64" || "$(PROCESSOR_ARCHITECTURE)" == "IA64"
c623ac67
GS
297WIN64 = define
298!ELSE
299WIN64 = undef
300!ENDIF
301!ENDIF
302!ENDIF
303
02e200fc
JD
304# Treat 64-bit MSVC60 (doesn't really exist) as SDK2003SP1 because
305# both link against MSVCRT.dll (which is part of Windows itself) and
306# not against a compiler specific versioned runtime.
307!IF "$(WIN64)" == "define" && "$(CCTYPE)" == "MSVC60"
308CCTYPE = SDK2003SP1
309!ENDIF
310
bf2a35e5
JD
311ARCHITECTURE = $(PROCESSOR_ARCHITECTURE)
312!IF "$(ARCHITECTURE)" == "AMD64"
313ARCHITECTURE = x64
9453ddcd 314!ENDIF
bf2a35e5
JD
315!IF "$(ARCHITECTURE)" == "IA64"
316ARCHITECTURE = ia64
9453ddcd
SH
317!ENDIF
318
9e42cd94 319!IF "$(USE_MULTI)" == "define"
bf2a35e5 320ARCHNAME = MSWin32-$(ARCHITECTURE)-multi
9e42cd94
GS
321!ELSE
322!IF "$(USE_PERLIO)" == "define"
bf2a35e5 323ARCHNAME = MSWin32-$(ARCHITECTURE)-perlio
9e42cd94 324!ELSE
bf2a35e5 325ARCHNAME = MSWin32-$(ARCHITECTURE)
9e42cd94
GS
326!ENDIF
327!ENDIF
9e42cd94
GS
328
329!IF "$(USE_PERLIO)" == "define"
330BUILDOPT = $(BUILDOPT) -DUSE_PERLIO
331!ENDIF
332
333!IF "$(USE_ITHREADS)" == "define"
334ARCHNAME = $(ARCHNAME)-thread
335!ENDIF
336
2a46176f
SH
337# Visual C++ 98, .NET 2003, 2005/2008/2010 specific.
338# VC++ 6/7/8/9/10.x can load DLLs on demand. Makes the test suite run
4a3cf07b 339# in about 10% less time. (The free version of 7.x can't do this, but the free
2a46176f 340# versions of 8/9/10.x can.)
4a3cf07b
SH
341!IF "$(CCTYPE)" == "MSVC60" || "$(CCTYPE)" == "MSVC70" || \
342 "$(CCTYPE)" == "MSVC80" || "$(CCTYPE)" == "MSVC80FREE" || \
2a46176f
SH
343 "$(CCTYPE)" == "MSVC90" || "$(CCTYPE)" == "MSVC90FREE" || \
344 "$(CCTYPE)" == "MSVC100" || "$(CCTYPE)" == "MSVC100FREE"
d1a8253e 345DELAYLOAD = -DELAYLOAD:ws2_32.dll delayimp.lib
9e42cd94
GS
346!ENDIF
347
4a3cf07b
SH
348# Visual C++ 2005 and 2008 (VC++ 8.x and 9.x) create manifest files for EXEs and
349# DLLs. These either need copying everywhere with the binaries, or else need
3ddd48aa
SH
350# embedding in them otherwise MSVCR80.dll or MSVCR90.dll won't be found. For
351# simplicity, embed them if they exist (and delete them afterwards so that they
352# don't get installed too).
4adc95e6
SH
353EMBED_EXE_MANI = if exist $@.manifest mt -nologo -manifest $@.manifest -outputresource:$@;1 && \
354 if exist $@.manifest del $@.manifest
355EMBED_DLL_MANI = if exist $@.manifest mt -nologo -manifest $@.manifest -outputresource:$@;2 && \
356 if exist $@.manifest del $@.manifest
c8e599d3 357
9e42cd94
GS
358ARCHDIR = ..\lib\$(ARCHNAME)
359COREDIR = ..\lib\CORE
360AUTODIR = ..\lib\auto
361LIBDIR = ..\lib
362EXTDIR = ..\ext
a193a2db 363DISTDIR = ..\dist
b212a3c6 364CPANDIR = ..\cpan
9e42cd94
GS
365PODDIR = ..\pod
366EXTUTILSDIR = $(LIBDIR)\ExtUtils
b4a41557 367HTMLDIR = .\html
9e42cd94
GS
368
369#
370INST_SCRIPT = $(INST_TOP)$(INST_VER)\bin
371INST_BIN = $(INST_SCRIPT)$(INST_ARCH)
372INST_LIB = $(INST_TOP)$(INST_VER)\lib
373INST_ARCHLIB = $(INST_LIB)$(INST_ARCH)
374INST_COREDIR = $(INST_ARCHLIB)\CORE
9e42cd94
GS
375INST_HTML = $(INST_TOP)$(INST_VER)\html
376
377#
378# Programs to compile, build .lib files and link
379#
380
381CC = cl
382LINK32 = link
383LIB32 = $(LINK32) -lib
384RSC = rc
385
386#
387# Options
388#
389
390INCLUDES = -I$(COREDIR) -I.\include -I. -I..
391#PCHFLAGS = -Fpc:\temp\vcmoduls.pch -YX
9cef8306 392DEFINES = -DWIN32 -D_CONSOLE -DNO_STRICT
9e42cd94
GS
393LOCDEFS = -DPERLDLL -DPERL_CORE
394SUBSYS = console
a7d225ec 395CXX_FLAG = -TP -EHsc
9e42cd94 396
9e42cd94 397LIBC = msvcrt.lib
9e42cd94 398
9e42cd94 399!IF "$(CFG)" == "Debug"
9e42cd94 400OPTIMIZE = -Od -MD -Zi -DDEBUGGING
c623ac67 401LINK_DBG = -debug
9e42cd94 402!ELSE
ec25c072
SH
403OPTIMIZE = -MD -Zi -DNDEBUG
404# we enable debug symbols in release builds also
405LINK_DBG = -debug -opt:ref,icf
406# you may want to enable this if you want COFF symbols in the executables
407# in addition to the PDB symbols. The default Dr. Watson that ships with
408# Windows can use the the former but not latter. The free WinDbg can be
409# installed to get better stack traces from just the PDB symbols, so we
410# avoid the bloat of COFF symbols by default.
411#LINK_DBG = $(LINK_DBG) -debugtype:both
d921a5fb
GS
412! IF "$(WIN64)" == "define"
413# enable Whole Program Optimizations (WPO) and Link Time Code Generation (LTCG)
414OPTIMIZE = $(OPTIMIZE) -Ox -GL
415LINK_DBG = $(LINK_DBG) -ltcg
416! ELSE
417# -O1 yields smaller code, which turns out to be faster than -O2 on x86
418OPTIMIZE = $(OPTIMIZE) -O1
419#OPTIMIZE = $(OPTIMIZE) -O2
420! ENDIF
9e42cd94
GS
421!ENDIF
422
c623ac67
GS
423!IF "$(WIN64)" == "define"
424DEFINES = $(DEFINES) -DWIN64 -DCONSERVATIVE
f33a21d8 425OPTIMIZE = $(OPTIMIZE) -fp:precise
da2c7419
SH
426!ENDIF
427
2a46176f 428# For now, silence VC++ 8/9/10.x's warnings about "unsafe" CRT functions
4a3cf07b
SH
429# and POSIX CRT function names being deprecated.
430!IF "$(CCTYPE)" == "MSVC80" || "$(CCTYPE)" == "MSVC80FREE" || \
2a46176f
SH
431 "$(CCTYPE)" == "MSVC90" || "$(CCTYPE)" == "MSVC90FREE" || \
432 "$(CCTYPE)" == "MSVC100" || "$(CCTYPE)" == "MSVC100FREE"
26a6faa8 433DEFINES = $(DEFINES) -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE
c5b31784
SH
434!ENDIF
435
45f6403b
JD
436# In VS 2005 (VC++ 8.0) Microsoft changes time_t from 32-bit to
437# 64-bit, even in 32-bit mode. It also provides the _USE_32BIT_TIME_T
438# preprocessor option to revert back to the old functionality for
439# backward compatibility. We define this symbol here for older 32-bit
440# compilers only (which aren't using it at all) for the sole purpose
441# of getting it into $Config{ccflags}. That way if someone builds
442# Perl itself with e.g. VC6 but later installs an XS module using VC8
443# the time_t types will still be compatible.
444!IF "$(WIN64)" == "undef"
445! IF "$(CCTYPE)" == "MSVC60" || \
446 "$(CCTYPE)" == "MSVC70" || "$(CCTYPE)" == "MSVC70FREE"
447BUILDOPT = $(BUILDOPT) -D_USE_32BIT_TIME_T
448! ENDIF
449!ENDIF
450
9cef8306 451LIBBASEFILES = \
9e42cd94
GS
452 oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.lib \
453 comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \
036c1c1e 454 netapi32.lib uuid.lib ws2_32.lib mpr.lib winmm.lib \
4ebea3c6 455 version.lib odbc32.lib odbccp32.lib comctl32.lib
c623ac67 456
02e200fc
JD
457# The 64 bit Windows Server 2003 SP1 SDK compilers link against MSVCRT.dll, which
458# doesn't include the buffer overrun verification code used by the /GS switch.
9453ddcd 459# Since the code links against libraries that are compiled with /GS, this
02e200fc
JD
460# "security cookie verification" code must be included via bufferoverflow.lib.
461!IF "$(WIN64)" == "define" && "$(CCTYPE)" == "SDK2003SP1"
9453ddcd 462LIBBASEFILES = $(LIBBASEFILES) bufferoverflowU.lib
c623ac67 463!ENDIF
9e42cd94 464
9e42cd94
GS
465LIBFILES = $(LIBBASEFILES) $(LIBC)
466
a5ca303d 467#EXTRACFLAGS = -nologo -GF -W4 -wd4127 -wd4706
9453ddcd 468EXTRACFLAGS = -nologo -GF -W3
bb275e72 469CFLAGS = $(EXTRACFLAGS) $(INCLUDES) $(DEFINES) $(LOCDEFS) \
9e42cd94
GS
470 $(PCHFLAGS) $(OPTIMIZE)
471LINK_FLAGS = -nologo -nodefaultlib $(LINK_DBG) \
472 -libpath:"$(INST_COREDIR)" \
473 -machine:$(PROCESSOR_ARCHITECTURE)
4e036e4b 474LIB_FLAGS = -nologo
9e42cd94
GS
475OBJOUT_FLAG = -Fo
476EXEOUT_FLAG = -Fe
477
478CFLAGS_O = $(CFLAGS) $(BUILDOPT)
479
4ebea3c6 480!IF "$(CCTYPE)" == "MSVC80" || "$(CCTYPE)" == "MSVC80FREE" || \
2a46176f
SH
481 "$(CCTYPE)" == "MSVC90" || "$(CCTYPE)" == "MSVC90FREE" || \
482 "$(CCTYPE)" == "MSVC100" || "$(CCTYPE)" == "MSVC100FREE"
4ebea3c6
JD
483LINK_FLAGS = $(LINK_FLAGS) "/manifestdependency:type='Win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'"
484!ELSE
485RSC_FLAGS = -DINCLUDE_MANIFEST
486!ENDIF
487
488
9e42cd94
GS
489#################### do not edit below this line #######################
490############# NO USER-SERVICEABLE PARTS BEYOND THIS POINT ##############
491
492o = .obj
493
494#
495# Rules
496#
497
498.SUFFIXES : .c $(o) .dll .lib .exe .rc .res
499
500.c$(o):
501 $(CC) -c -I$(<D) $(CFLAGS_O) $(OBJOUT_FLAG)$@ $<
502
503.y.c:
504 $(NOOP)
505
506$(o).dll:
507 $(LINK32) -dll -subsystem:windows -implib:$(*B).lib -def:$(*B).def \
508 -out:$@ $(LINK_FLAGS) $(LIBFILES) $< $(LIBPERL)
c8e599d3 509 $(EMBED_DLL_MANI)
9e42cd94
GS
510
511.rc.res:
4ebea3c6 512 $(RSC) -i.. $(RSC_FLAGS) $<
9e42cd94
GS
513
514#
515# various targets
516
517# makedef.pl must be updated if this changes, and this should normally
518# only change when there is an incompatible revision of the public API.
8891dd8d
DM
519PERLIMPLIB = ..\perl515.lib
520PERLSTATICLIB = ..\perl515s.lib
521PERLDLL = ..\perl515.dll
9e42cd94
GS
522
523MINIPERL = ..\miniperl.exe
524MINIDIR = .\mini
525PERLEXE = ..\perl.exe
526WPERLEXE = ..\wperl.exe
4e036e4b 527PERLEXESTATIC = ..\perl-static.exe
9e42cd94 528GLOBEXE = ..\perlglob.exe
04bae4fb 529CONFIGPM = ..\lib\Config.pm ..\lib\Config_heavy.pl
9e42cd94
GS
530MINIMOD = ..\lib\ExtUtils\Miniperl.pm
531X2P = ..\x2p\a2p.exe
202d1001 532GENUUDMAP = ..\generate_uudmap.exe
4e036e4b
VK
533!IF "$(BUILD_STATIC)" == "define"
534PERLSTATIC = static
535!ELSE
536PERLSTATIC =
537!ENDIF
5b04aee6 538
ca12659b 539# Unicode data files generated by mktables
36ff7f95
SH
540FIRSTUNIFILE = ..\lib\unicore\Decomposition.pl
541UNIDATAFILES = ..\lib\unicore\Decomposition.pl \
7ebf06b3 542 ..\lib\unicore\CombiningClass.pl ..\lib\unicore\Name.pl \
1a234f2b
KW
543 ..\lib\unicore\Heavy.pl ..\lib\unicore\mktables.lst \
544 ..\lib\unicore\UCD.pl ..\lib\unicore\Name.pm \
3e344d15 545 ..\lib\unicore\TestProp.pl
ca12659b
NC
546
547# Directories of Unicode data files generated by mktables
27a8011f
SH
548UNIDATADIR1 = ..\lib\unicore\To
549UNIDATADIR2 = ..\lib\unicore\lib
ca12659b 550
4ebea3c6 551PERLEXE_MANIFEST= .\perlexe.manifest
3890b58f
RGS
552PERLEXE_ICO = .\perlexe.ico
553PERLEXE_RES = .\perlexe.res
554PERLDLL_RES =
555
9e42cd94
GS
556# Nominate a target which causes extensions to be re-built
557# This used to be $(PERLEXE), but at worst it is the .dll that they depend
558# on and really only the interface - i.e. the .def file used to export symbols
559# from the .dll
560PERLDEP = perldll.def
561
562PL2BAT = bin\pl2bat.pl
563GLOBBAT = bin\perlglob.bat
564
565UTILS = \
566 ..\utils\h2ph \
567 ..\utils\splain \
9e42cd94
GS
568 ..\utils\perlbug \
569 ..\utils\pl2pm \
570 ..\utils\c2ph \
827a599d 571 ..\utils\pstruct \
9e42cd94
GS
572 ..\utils\h2xs \
573 ..\utils\perldoc \
9e42cd94
GS
574 ..\utils\perlivp \
575 ..\utils\libnetcfg \
827a599d
GS
576 ..\utils\enc2xs \
577 ..\utils\piconv \
bb4e9162 578 ..\utils\config_data \
18a1cebe 579 ..\utils\corelist \
83cd6e83 580 ..\utils\cpan \
ea0e987d 581 ..\utils\xsubpp \
4b618757 582 ..\utils\prove \
291d3373 583 ..\utils\ptar \
b8669316 584 ..\utils\ptardiff \
deabda19 585 ..\utils\ptargrep \
6aaee015
RGS
586 ..\utils\cpanp-run-perl \
587 ..\utils\cpanp \
588 ..\utils\cpan2dist \
3ddf9550 589 ..\utils\shasum \
ea0e987d 590 ..\utils\instmodsh \
84f04405 591 ..\utils\json_pp \
d658129c 592 ..\utils\pod2html \
9e42cd94 593 ..\x2p\find2perl \
827a599d 594 ..\x2p\psed \
9e42cd94 595 ..\x2p\s2p \
9e42cd94
GS
596 bin\exetype.pl \
597 bin\runperl.pl \
598 bin\pl2bat.pl \
599 bin\perlglob.pl \
600 bin\search.pl
601
602MAKE = nmake -nologo
603MAKE_BARE = nmake
604
c623ac67
GS
605!IF "$(WIN64)" == "define"
606CFGSH_TMPL = config.vc64
607CFGH_TMPL = config_H.vc64
608!ELSE
9e42cd94
GS
609CFGSH_TMPL = config.vc
610CFGH_TMPL = config_H.vc
c623ac67 611!ENDIF
9e42cd94 612
b6ed7314
YO
613XCOPY = xcopy /f /r /i /d /y
614RCOPY = xcopy /f /r /i /e /d /y
65980d94 615NOOP = @rem
9e42cd94
GS
616NULL =
617
618DEL = del
619
9e42cd94
GS
620MICROCORE_SRC = \
621 ..\av.c \
622 ..\deb.c \
623 ..\doio.c \
624 ..\doop.c \
625 ..\dump.c \
626 ..\globals.c \
627 ..\gv.c \
e1a479c5 628 ..\mro.c \
9e42cd94
GS
629 ..\hv.c \
630 ..\locale.c \
26ea9e12 631 ..\keywords.c \
a0d89a74 632 ..\mathoms.c \
9e42cd94
GS
633 ..\mg.c \
634 ..\numeric.c \
635 ..\op.c \
295f0f84 636 ..\pad.c \
9e42cd94
GS
637 ..\perl.c \
638 ..\perlapi.c \
639 ..\perly.c \
640 ..\pp.c \
641 ..\pp_ctl.c \
642 ..\pp_hot.c \
643 ..\pp_pack.c \
644 ..\pp_sort.c \
645 ..\pp_sys.c \
10bc17b6 646 ..\reentr.c \
9e42cd94
GS
647 ..\regcomp.c \
648 ..\regexec.c \
649 ..\run.c \
650 ..\scope.c \
651 ..\sv.c \
652 ..\taint.c \
653 ..\toke.c \
654 ..\universal.c \
655 ..\utf8.c \
48462a74 656 ..\util.c
9e42cd94
GS
657
658EXTRACORE_SRC = $(EXTRACORE_SRC) perllib.c
659
660!IF "$(PERL_MALLOC)" == "define"
661EXTRACORE_SRC = $(EXTRACORE_SRC) ..\malloc.c
662!ENDIF
663
664EXTRACORE_SRC = $(EXTRACORE_SRC) ..\perlio.c
665
666WIN32_SRC = \
667 .\win32.c \
668 .\win32sck.c \
9cef8306
JD
669 .\win32thread.c \
670 .\fcrypt.c
9e42cd94 671
f7d585d3
GS
672# We need this for miniperl build unless we override canned
673# config.h #define building mini\*
674#!IF "$(USE_PERLIO)" == "define"
9e42cd94 675WIN32_SRC = $(WIN32_SRC) .\win32io.c
f7d585d3 676#!ENDIF
9e42cd94 677
9e42cd94 678
9e42cd94
GS
679X2P_SRC = \
680 ..\x2p\a2p.c \
681 ..\x2p\hash.c \
682 ..\x2p\str.c \
683 ..\x2p\util.c \
684 ..\x2p\walk.c
685
686CORE_NOCFG_H = \
687 ..\av.h \
688 ..\cop.h \
689 ..\cv.h \
690 ..\dosish.h \
691 ..\embed.h \
692 ..\form.h \
693 ..\gv.h \
694 ..\handy.h \
695 ..\hv.h \
696 ..\iperlsys.h \
697 ..\mg.h \
698 ..\nostdio.h \
699 ..\op.h \
700 ..\opcode.h \
701 ..\perl.h \
702 ..\perlapi.h \
703 ..\perlsdio.h \
704 ..\perlsfio.h \
705 ..\perly.h \
706 ..\pp.h \
707 ..\proto.h \
cdb0f547 708 ..\regcomp.h \
9e42cd94
GS
709 ..\regexp.h \
710 ..\scope.h \
711 ..\sv.h \
712 ..\thread.h \
713 ..\unixish.h \
714 ..\utf8.h \
715 ..\util.h \
716 ..\warnings.h \
717 ..\XSUB.h \
718 ..\EXTERN.h \
719 ..\perlvars.h \
720 ..\intrpvar.h \
9e42cd94
GS
721 .\include\dirent.h \
722 .\include\netdb.h \
723 .\include\sys\socket.h \
724 .\win32.h
725
a148edb6 726CORE_H = $(CORE_NOCFG_H) .\config.h ..\git_version.h
9e42cd94 727
202d1001 728UUDMAP_H = ..\uudmap.h
efa50c51 729BITCOUNT_H = ..\bitcount.h
6f83ef0e 730MG_DATA_H = ..\mg_data.h
9387abf8 731GENERATED_HEADERS = $(UUDMAP_H) $(BITCOUNT_H) $(MG_DATA_H)
202d1001 732
9e42cd94
GS
733MICROCORE_OBJ = $(MICROCORE_SRC:.c=.obj)
734CORE_OBJ = $(MICROCORE_OBJ) $(EXTRACORE_SRC:.c=.obj)
735WIN32_OBJ = $(WIN32_SRC:.c=.obj)
736MINICORE_OBJ = $(MICROCORE_OBJ:..\=.\mini\) \
737 $(MINIDIR)\miniperlmain$(o) \
738 $(MINIDIR)\perlio$(o)
739MINIWIN32_OBJ = $(WIN32_OBJ:.\=.\mini\)
740MINI_OBJ = $(MINICORE_OBJ) $(MINIWIN32_OBJ)
281da5ea 741DLL_OBJ = $(DYNALOADER)
9e42cd94 742X2P_OBJ = $(X2P_SRC:.c=.obj)
202d1001 743GENUUDMAP_OBJ = $(GENUUDMAP:.exe=.obj)
9e42cd94
GS
744
745PERLDLL_OBJ = $(CORE_OBJ)
746PERLEXE_OBJ = perlmain$(o)
4e036e4b 747PERLEXEST_OBJ = perlmainst$(o)
9e42cd94
GS
748
749PERLDLL_OBJ = $(PERLDLL_OBJ) $(WIN32_OBJ) $(DLL_OBJ)
9e42cd94
GS
750
751!IF "$(USE_SETARGV)" != ""
752SETARGV_OBJ = setargv$(o)
753!ENDIF
754
a1f2e719
VK
755!IF "$(ALL_STATIC)" == "define"
756# some exclusions, unfortunately, until fixed:
757# - Win32 extension contains overlapped symbols with win32.c (BUG!)
758# - MakeMaker isn't capable enough for SDBM_File (smaller bug)
759# - Encode (encoding search algorithm relies on shared library?)
9788a75a 760STATIC_EXT = * !Win32 !SDBM_File !Encode
a1f2e719
VK
761!ELSE
762# specify static extensions here, for example:
4e036e4b 763#STATIC_EXT = Cwd Compress/Raw/Zlib
78ff2d7b 764STATIC_EXT = Win32CORE
a1f2e719 765!ENDIF
595589fa 766
281da5ea 767DYNALOADER = ..\DynaLoader$(o)
9e42cd94 768
9e42cd94
GS
769CFG_VARS = \
770 "INST_DRV=$(INST_DRV)" \
771 "INST_TOP=$(INST_TOP)" \
772 "INST_VER=$(INST_VER)" \
773 "INST_ARCH=$(INST_ARCH)" \
774 "archname=$(ARCHNAME)" \
775 "cc=$(CC)" \
776 "ld=$(LINK32)" \
bb275e72 777 "ccflags=$(EXTRACFLAGS) $(OPTIMIZE:"=\") $(DEFINES) $(BUILDOPT)" \
9e42cd94 778 "cf_email=$(EMAIL)" \
9e42cd94
GS
779 "d_mymalloc=$(PERL_MALLOC)" \
780 "libs=$(LIBFILES)" \
781 "incpath=$(CCINCDIR:"=\")" \
782 "libperl=$(PERLIMPLIB:..\=)" \
783 "libpth=$(CCLIBDIR:"=\");$(EXTRALIBDIRS:"=\")" \
784 "libc=$(LIBC)" \
785 "make=$(MAKE_BARE)" \
d2b25974 786 "static_ext=$(STATIC_EXT)" \
7e0017d3 787 "usethreads=$(USE_ITHREADS)" \
9e42cd94 788 "useithreads=$(USE_ITHREADS)" \
9e42cd94
GS
789 "usemultiplicity=$(USE_MULTI)" \
790 "useperlio=$(USE_PERLIO)" \
4a9d6100 791 "uselargefiles=$(USE_LARGE_FILES)" \
7ada00a0 792 "usesitecustomize=$(USE_SITECUST)" \
9e42cd94
GS
793 "LINK_FLAGS=$(LINK_FLAGS:"=\")" \
794 "optimize=$(OPTIMIZE:"=\")"
795
2a6dc374 796ICWD = -I..\dist\Cwd -I..\dist\Cwd\lib
403f501d 797
9e42cd94
GS
798#
799# Top targets
800#
801
a148edb6 802all : .\config.h ..\git_version.h $(GLOBEXE) $(MINIMOD) $(CONFIGPM) \
a34ce875 803 $(UNIDATAFILES) MakePPPort $(PERLEXE) $(X2P) Extensions_nonxs Extensions $(PERLSTATIC)
9e42cd94
GS
804 @echo Everything is up to date. '$(MAKE_BARE) test' to run test suite.
805
c900f745 806regnodes : ..\regnodes.h
5d458dd8 807
5b04aee6 808..\regcomp$(o) : ..\regnodes.h ..\regcharclass.h
e64b1bd1
YO
809
810..\regexec$(o) : ..\regnodes.h ..\regcharclass.h
811
a148edb6
SH
812reonly : regnodes .\config.h ..\git_version.h $(GLOBEXE) $(MINIMOD) $(CONFIGPM) \
813 $(UNIDATAFILES) $(PERLEXE) $(X2P) Extensions_reonly
a24cc0c0
YO
814 @echo Perl and 're' are up to date.
815
4e036e4b
VK
816static: $(PERLEXESTATIC)
817
9e42cd94
GS
818#------------------------------------------------------------
819
820$(GLOBEXE) : perlglob$(o)
821 $(LINK32) $(LINK_FLAGS) $(LIBFILES) -out:$@ -subsystem:$(SUBSYS) \
822 perlglob$(o) setargv$(o)
c8e599d3 823 $(EMBED_EXE_MANI)
9e42cd94
GS
824
825perlglob$(o) : perlglob.c
826
827config.w32 : $(CFGSH_TMPL)
828 copy $(CFGSH_TMPL) config.w32
829
830.\config.h : $(CFGH_TMPL)
831 -del /f config.h
832 copy $(CFGH_TMPL) config.h
833
04bf47ee 834..\git_version.h : $(MINIPERL) ..\make_patchnum.pl
a148edb6 835 cd ..
16ad9bfa 836 miniperl -Ilib make_patchnum.pl
a148edb6
SH
837 cd win32
838
931482b7
NC
839# make sure that we recompile perl.c if the git version changes
840..\perl$(o) : ..\git_version.h
a148edb6 841
c788c1c2 842..\config.sh : config.w32 $(MINIPERL) config_sh.PL FindExt.pm
9e42cd94
GS
843 $(MINIPERL) -I..\lib config_sh.PL $(CFG_VARS) config.w32 > ..\config.sh
844
76febb1c
SH
845# this target is for when changes to the main config.sh happen.
846# edit config.vc, then make perl in a minimal configuration (i.e. with MULTI,
3d39cce8 847# ITHREADS, IMP_SYS, LARGE_FILES and PERLIO off), then make this target
76febb1c 848# to regenerate config_H.vc.
e5f60eac
SH
849# unfortunately, some further manual editing is also then required to restore all
850# the special __GNUC__ handling that is otherwise lost.
76febb1c
SH
851# repeat for config.vc64 and config_H.vc64 if you have a suitable build
852# environment, otherwise hand-edit them to maintain the same differences with
853# config.vc and config_H.vc as before.
9e42cd94 854regen_config_h:
76febb1c 855 $(MINIPERL) -I..\lib config_sh.PL $(CFG_VARS) $(CFGSH_TMPL) > ..\config.sh
4e73d6a4 856 $(MINIPERL) -I..\lib ..\configpm --chdir=..
9e42cd94 857 -del /f $(CFGH_TMPL)
38cd195c 858 -$(MINIPERL) -I..\lib $(ICWD) config_h.PL "INST_VER=$(INST_VER)"
9e42cd94
GS
859 rename config.h $(CFGH_TMPL)
860
861$(CONFIGPM) : $(MINIPERL) ..\config.sh config_h.PL ..\minimod.pl
4e73d6a4 862 $(MINIPERL) -I..\lib ..\configpm --chdir=..
9e42cd94
GS
863 if exist lib\* $(RCOPY) lib\*.* ..\lib\$(NULL)
864 $(XCOPY) ..\*.h $(COREDIR)\*.*
865 $(XCOPY) *.h $(COREDIR)\*.*
9e42cd94 866 $(RCOPY) include $(COREDIR)\*.*
38cd195c 867 -$(MINIPERL) -I..\lib $(ICWD) config_h.PL "INST_VER=$(INST_VER)"
9e42cd94
GS
868 if errorlevel 1 $(MAKE) /$(MAKEFLAGS) $(CONFIGPM)
869
5e4c4c91
NC
870..\lib\buildcustomize.pl: $(MINIPERL) ..\write_buildcustomize.pl
871 $(MINIPERL) -I..\lib ..\write_buildcustomize.pl .. >..\lib\buildcustomize.pl
872
9e42cd94
GS
873$(MINIPERL) : $(MINIDIR) $(MINI_OBJ)
874 $(LINK32) -subsystem:console -out:$@ @<<
875 $(LINK_FLAGS) $(LIBFILES) $(MINI_OBJ)
876<<
c8e599d3 877 $(EMBED_EXE_MANI)
9e42cd94
GS
878
879$(MINIDIR) :
880 if not exist "$(MINIDIR)" mkdir "$(MINIDIR)"
881
882$(MINICORE_OBJ) : $(CORE_NOCFG_H)
8c4561fb 883 $(CC) -c $(CFLAGS) -DPERL_EXTERNAL_GLOB -DPERL_IS_MINIPERL $(OBJOUT_FLAG)$@ ..\$(*F).c
9e42cd94
GS
884
885$(MINIWIN32_OBJ) : $(CORE_NOCFG_H)
886 $(CC) -c $(CFLAGS) $(OBJOUT_FLAG)$@ $(*F).c
887
888# -DPERL_IMPLICIT_SYS needs C++ for perllib.c
889# This is the only file that depends on perlhost.h, vmem.h, and vdir.h
890!IF "$(USE_IMP_SYS)" == "define"
891perllib$(o) : perllib.c .\perlhost.h .\vdir.h .\vmem.h
892 $(CC) -c -I. $(CFLAGS_O) $(CXX_FLAG) $(OBJOUT_FLAG)$@ perllib.c
893!ENDIF
894
895# 1. we don't want to rebuild miniperl.exe when config.h changes
896# 2. we don't want to rebuild miniperl.exe with non-default config.h
931482b7 897# 3. we can't have miniperl.exe depend on git_version.h, as miniperl creates it
9e42cd94
GS
898$(MINI_OBJ) : $(CORE_NOCFG_H)
899
900$(WIN32_OBJ) : $(CORE_H)
901$(CORE_OBJ) : $(CORE_H)
902$(DLL_OBJ) : $(CORE_H)
903$(X2P_OBJ) : $(CORE_H)
904
d500e60d 905perldll.def : $(MINIPERL) $(CONFIGPM) ..\embed.fnc ..\makedef.pl create_perllibst_h.pl
c6d234b8 906 $(MINIPERL) -I..\lib create_perllibst_h.pl
c1effa61 907 $(MINIPERL) -I..\lib -w ..\makedef.pl PLATFORM=win32 $(OPTIMIZE) $(DEFINES) $(BUILDOPT) \
080c3729 908 CCTYPE=$(CCTYPE) TARG_DIR=..\ > perldll.def
9e42cd94 909
595589fa 910$(PERLDLL): perldll.def $(PERLDLL_OBJ) $(PERLDLL_RES) Extensions_static
9e7cf449 911 $(LINK32) -dll -def:perldll.def -base:0x28000000 -out:$@ @Extensions_static @<<
9e42cd94
GS
912 $(LINK_FLAGS) $(DELAYLOAD) $(LIBFILES) $(PERLDLL_OBJ) $(PERLDLL_RES)
913<<
c8e599d3 914 $(EMBED_DLL_MANI)
9e42cd94
GS
915 $(XCOPY) $(PERLIMPLIB) $(COREDIR)
916
4e036e4b
VK
917$(PERLSTATICLIB): Extensions_static
918 $(LIB32) $(LIB_FLAGS) -out:$@ @Extensions_static @<<
919 $(PERLDLL_OBJ)
920<<
921 $(XCOPY) $(PERLSTATICLIB) $(COREDIR)
922
4ebea3c6 923$(PERLEXE_RES): perlexe.rc $(PERLEXE_MANIFEST) $(PERLEXE_ICO)
e84ac4e2 924
9e42cd94
GS
925$(MINIMOD) : $(MINIPERL) ..\minimod.pl
926 cd ..
927 miniperl minimod.pl > lib\ExtUtils\Miniperl.pm
928 cd win32
929
930..\x2p\a2p$(o) : ..\x2p\a2p.c
931 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\a2p.c
932
933..\x2p\hash$(o) : ..\x2p\hash.c
934 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\hash.c
935
936..\x2p\str$(o) : ..\x2p\str.c
937 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\str.c
938
939..\x2p\util$(o) : ..\x2p\util.c
940 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\util.c
941
942..\x2p\walk$(o) : ..\x2p\walk.c
943 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\walk.c
944
403f501d 945$(X2P) : $(MINIPERL) $(X2P_OBJ) Extensions
c1effa61
NC
946 $(MINIPERL) -I..\lib ..\x2p\find2perl.PL
947 $(MINIPERL) -I..\lib ..\x2p\s2p.PL
9e42cd94
GS
948 $(LINK32) -subsystem:console -out:$@ @<<
949 $(LINK_FLAGS) $(LIBFILES) $(X2P_OBJ)
950<<
c8e599d3 951 $(EMBED_EXE_MANI)
9e42cd94 952
9387abf8 953$(MINIDIR)\globals$(o) : $(GENERATED_HEADERS)
9444d213 954
6f83ef0e 955$(UUDMAP_H) $(MG_DATA_H) : $(BITCOUNT_H)
6999193b
NC
956
957$(BITCOUNT_H) : $(GENUUDMAP)
9387abf8 958 $(GENUUDMAP) $(GENERATED_HEADERS)
6f83ef0e
NC
959
960$(GENUUDMAP_OBJ) : ..\mg_raw.h
9444d213 961
202d1001 962$(GENUUDMAP) : $(GENUUDMAP_OBJ)
9444d213 963 $(LINK32) -subsystem:console -out:$@ @<<
202d1001
SH
964 $(LINK_FLAGS) $(LIBFILES) $(GENUUDMAP_OBJ)
965<<
966 $(EMBED_EXE_MANI)
9444d213 967
9e42cd94
GS
968perlmain.c : runperl.c
969 copy runperl.c perlmain.c
970
971perlmain$(o) : perlmain.c
88c9158a 972 $(CC) $(CFLAGS_O:-DPERLDLL=-UPERLDLL) $(OBJOUT_FLAG)$@ -c perlmain.c
9e42cd94 973
4e036e4b
VK
974perlmainst.c : runperl.c
975 copy runperl.c perlmainst.c
976
977perlmainst$(o) : perlmainst.c
88c9158a 978 $(CC) $(CFLAGS_O) $(OBJOUT_FLAG)$@ -c perlmainst.c
4e036e4b 979
931482b7 980$(PERLEXE): $(PERLDLL) $(CONFIGPM) $(PERLEXE_OBJ) $(PERLEXE_RES)
56a86867 981 $(LINK32) -subsystem:console -out:$@ $(LINK_FLAGS) \
9e42cd94 982 $(LIBFILES) $(PERLEXE_OBJ) $(SETARGV_OBJ) $(PERLIMPLIB) $(PERLEXE_RES)
c8e599d3 983 $(EMBED_EXE_MANI)
9e42cd94
GS
984 copy $(PERLEXE) $(WPERLEXE)
985 $(MINIPERL) -I..\lib bin\exetype.pl $(WPERLEXE) WINDOWS
9e42cd94 986
931482b7 987$(PERLEXESTATIC): $(PERLSTATICLIB) $(CONFIGPM) $(PERLEXEST_OBJ) $(PERLEXE_RES)
56a86867 988 $(LINK32) -subsystem:console -out:$@ $(LINK_FLAGS) \
a1f2e719 989 @Extensions_static $(PERLSTATICLIB) /PDB:NONE \
4e036e4b
VK
990 $(LIBFILES) $(PERLEXEST_OBJ) $(SETARGV_OBJ) $(PERLEXE_RES)
991 $(EMBED_EXE_MANI)
992
d1a21686 993MakePPPort: $(MINIPERL) $(CONFIGPM) Extensions_nonxs
403f501d 994 $(MINIPERL) -I..\lib $(ICWD) ..\mkppport
42e07562 995
9dcb9602 996#-------------------------------------------------------------------------------
281da5ea 997# There's no direct way to mark a dependency on
6afd19bc 998# DynaLoader.pm, so this will have to do
5e4c4c91 999Extensions: ..\make_ext.pl ..\lib\buildcustomize.pl $(PERLDEP) $(CONFIGPM) $(DYNALOADER)
a5ca303d 1000 $(XCOPY) ..\*.h $(COREDIR)\*.*
a193a2db 1001 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --dynamic
595589fa 1002
5e4c4c91 1003Extensions_reonly: ..\make_ext.pl ..\lib\buildcustomize.pl $(PERLDEP) $(CONFIGPM) $(DYNALOADER)
a5ca303d 1004 $(XCOPY) ..\*.h $(COREDIR)\*.*
a193a2db 1005 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --dynamic +re
a24cc0c0 1006
5e4c4c91 1007Extensions_static : ..\make_ext.pl ..\lib\buildcustomize.pl list_static_libs.pl $(PERLDEP) $(CONFIGPM)
a5ca303d 1008 $(XCOPY) ..\*.h $(COREDIR)\*.*
a193a2db 1009 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --static
c6d234b8 1010 $(MINIPERL) -I..\lib list_static_libs.pl > Extensions_static
9e42cd94 1011
5e4c4c91 1012Extensions_nonxs: ..\make_ext.pl ..\lib\buildcustomize.pl $(PERLDEP) $(CONFIGPM)
a34ce875 1013 $(XCOPY) ..\*.h $(COREDIR)\*.*
a193a2db 1014 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --nonxs
a34ce875 1015
5e4c4c91 1016$(DYNALOADER) : ..\make_ext.pl ..\lib\buildcustomize.pl $(PERLDEP) $(CONFIGPM) Extensions_nonxs
281da5ea
NC
1017 $(XCOPY) ..\*.h $(COREDIR)\*.*
1018 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(EXTDIR) --dynaloader
1019
9e42cd94 1020Extensions_clean:
a193a2db 1021 -if exist $(MINIPERL) $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --all --target=clean
9e42cd94 1022
b4dc1df6 1023Extensions_realclean:
a193a2db 1024 -if exist $(MINIPERL) $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --all --target=realclean
b4dc1df6 1025
9dcb9602 1026#-------------------------------------------------------------------------------
9e42cd94 1027
0195b144 1028doc: $(PERLEXE) ..\pod\perltoc.pod
b4a41557 1029 $(PERLEXE) -I..\lib ..\installhtml --podroot=.. --htmldir=$(HTMLDIR) \
9e42cd94
GS
1030 --podpath=pod:lib:ext:utils --htmlroot="file://$(INST_HTML::=|)" \
1031 --libpod=perlfunc:perlguts:perlvar:perlrun:perlop --recurse
1032
b0b6bf2b
AT
1033# Note that this next section is parsed (and regenerated) by pod/buildtoc
1034# so please check that script before making structural changes here
1035
9ddff148 1036utils: $(PERLEXE) $(X2P)
9e42cd94
GS
1037 cd ..\utils
1038 $(MAKE) PERL=$(MINIPERL)
1039 cd ..\pod
b0b6bf2b
AT
1040 copy ..\README.aix ..\pod\perlaix.pod
1041 copy ..\README.amiga ..\pod\perlamiga.pod
b0b6bf2b
AT
1042 copy ..\README.beos ..\pod\perlbeos.pod
1043 copy ..\README.bs2000 ..\pod\perlbs2000.pod
1044 copy ..\README.ce ..\pod\perlce.pod
1045 copy ..\README.cn ..\pod\perlcn.pod
1046 copy ..\README.cygwin ..\pod\perlcygwin.pod
1047 copy ..\README.dgux ..\pod\perldgux.pod
1048 copy ..\README.dos ..\pod\perldos.pod
1049 copy ..\README.epoc ..\pod\perlepoc.pod
1050 copy ..\README.freebsd ..\pod\perlfreebsd.pod
9f968a8d 1051 copy ..\README.haiku ..\pod\perlhaiku.pod
b0b6bf2b
AT
1052 copy ..\README.hpux ..\pod\perlhpux.pod
1053 copy ..\README.hurd ..\pod\perlhurd.pod
1054 copy ..\README.irix ..\pod\perlirix.pod
1055 copy ..\README.jp ..\pod\perljp.pod
1056 copy ..\README.ko ..\pod\perlko.pod
6477b319 1057 copy ..\README.linux ..\pod\perllinux.pod
b0b6bf2b
AT
1058 copy ..\README.macos ..\pod\perlmacos.pod
1059 copy ..\README.macosx ..\pod\perlmacosx.pod
b0b6bf2b
AT
1060 copy ..\README.mpeix ..\pod\perlmpeix.pod
1061 copy ..\README.netware ..\pod\perlnetware.pod
b0846812 1062 copy ..\README.openbsd ..\pod\perlopenbsd.pod
b0b6bf2b
AT
1063 copy ..\README.os2 ..\pod\perlos2.pod
1064 copy ..\README.os390 ..\pod\perlos390.pod
1065 copy ..\README.os400 ..\pod\perlos400.pod
1066 copy ..\README.plan9 ..\pod\perlplan9.pod
1067 copy ..\README.qnx ..\pod\perlqnx.pod
2f08ed66 1068 copy ..\README.riscos ..\pod\perlriscos.pod
b0b6bf2b 1069 copy ..\README.solaris ..\pod\perlsolaris.pod
27da23d5 1070 copy ..\README.symbian ..\pod\perlsymbian.pod
b0b6bf2b
AT
1071 copy ..\README.tru64 ..\pod\perltru64.pod
1072 copy ..\README.tw ..\pod\perltw.pod
1073 copy ..\README.uts ..\pod\perluts.pod
1074 copy ..\README.vmesa ..\pod\perlvmesa.pod
b0b6bf2b
AT
1075 copy ..\README.vos ..\pod\perlvos.pod
1076 copy ..\README.win32 ..\pod\perlwin32.pod
0aaeb177 1077 copy ..\pod\perldelta.pod ..\pod\perl5156delta.pod
9e42cd94
GS
1078 cd ..\win32
1079 $(PERLEXE) $(PL2BAT) $(UTILS)
403f501d
NC
1080 $(PERLEXE) $(ICWD) ..\autodoc.pl ..
1081 $(PERLEXE) $(ICWD) ..\pod\perlmodlib.pl -q
0195b144
NC
1082
1083..\pod\perltoc.pod: $(PERLEXE) Extensions Extensions_nonxs
b78c1104 1084 $(PERLEXE) -f ..\pod\buildtoc -q
9e42cd94 1085
b0b6bf2b
AT
1086# Note that the pod cleanup in this next section is parsed (and regenerated
1087# by pod/buildtoc so please check that script before making changes here
1088
b4dc1df6 1089distclean: realclean
9e42cd94 1090 -del /f $(MINIPERL) $(PERLEXE) $(PERLDLL) $(GLOBEXE) \
4e036e4b
VK
1091 $(PERLIMPLIB) ..\miniperl.lib $(MINIMOD) \
1092 $(PERLEXESTATIC) $(PERLSTATICLIB)
9e42cd94 1093 -del /f *.def *.map
ca67812f
SH
1094 -del /f $(LIBDIR)\Encode.pm $(LIBDIR)\encoding.pm $(LIBDIR)\Errno.pm
1095 -del /f $(LIBDIR)\Config.pod $(LIBDIR)\POSIX.pod $(LIBDIR)\threads.pm
48462a74 1096 -del /f $(LIBDIR)\.exists $(LIBDIR)\attributes.pm $(LIBDIR)\DynaLoader.pm
9e42cd94
GS
1097 -del /f $(LIBDIR)\Fcntl.pm $(LIBDIR)\IO.pm $(LIBDIR)\Opcode.pm
1098 -del /f $(LIBDIR)\ops.pm $(LIBDIR)\Safe.pm
1099 -del /f $(LIBDIR)\SDBM_File.pm $(LIBDIR)\Socket.pm $(LIBDIR)\POSIX.pm
1100 -del /f $(LIBDIR)\B.pm $(LIBDIR)\O.pm $(LIBDIR)\re.pm
9e42cd94
GS
1101 -del /f $(LIBDIR)\File\Glob.pm
1102 -del /f $(LIBDIR)\Storable.pm
ca67812f 1103 -del /f $(LIBDIR)\Sys\Hostname.pm
9e42cd94 1104 -del /f $(LIBDIR)\Time\HiRes.pm
9e42cd94 1105 -del /f $(LIBDIR)\Unicode\Normalize.pm
4e74047c 1106 -del /f $(LIBDIR)\Math\BigInt\FastCalc.pm
b4ad57f4 1107 -del /f $(LIBDIR)\Win32.pm
37ca3c28 1108 -del /f $(LIBDIR)\Win32CORE.pm
00701878
SH
1109 -del /f $(LIBDIR)\Win32API\File.pm
1110 -del /f $(LIBDIR)\Win32API\File\cFile.pc
5e4c4c91 1111 -del /f $(LIBDIR)\buildcustomize.pl
a85e0e8c 1112 -del /f $(DISTDIR)\XSLoader\XSLoader.pm
1a6c65ed
SH
1113 -if exist $(LIBDIR)\App rmdir /s /q $(LIBDIR)\App
1114 -if exist $(LIBDIR)\Archive rmdir /s /q $(LIBDIR)\Archive
1115 -if exist $(LIBDIR)\Attribute rmdir /s /q $(LIBDIR)\Attribute
1116 -if exist $(LIBDIR)\autodie rmdir /s /q $(LIBDIR)\autodie
9e42cd94 1117 -if exist $(LIBDIR)\B rmdir /s /q $(LIBDIR)\B
1a6c65ed
SH
1118 -if exist $(LIBDIR)\CGI rmdir /s /q $(LIBDIR)\CGI
1119 -if exist $(LIBDIR)\CPAN rmdir /s /q $(LIBDIR)\CPAN
1120 -if exist $(LIBDIR)\CPANPLUS rmdir /s /q $(LIBDIR)\CPANPLUS
46ffdcf0 1121 -if exist $(LIBDIR)\Compress rmdir /s /q $(LIBDIR)\Compress
9e42cd94 1122 -if exist $(LIBDIR)\Data rmdir /s /q $(LIBDIR)\Data
1a6c65ed
SH
1123 -if exist $(LIBDIR)\Devel rmdir /s /q $(LIBDIR)\Devel
1124 -if exist $(LIBDIR)\Digest rmdir /s /q $(LIBDIR)\Digest
ca67812f 1125 -if exist $(LIBDIR)\Encode rmdir /s /q $(LIBDIR)\Encode
1a6c65ed
SH
1126 -if exist $(LIBDIR)\encoding rmdir /s /q $(LIBDIR)\encoding
1127 -if exist $(LIBDIR)\ExtUtils\CBuilder rmdir /s /q $(LIBDIR)\ExtUtils\CBuilder
1128 -if exist $(LIBDIR)\ExtUtils\Command rmdir /s /q $(LIBDIR)\ExtUtils\Command
1129 -if exist $(LIBDIR)\ExtUtils\Constant rmdir /s /q $(LIBDIR)\ExtUtils\Constant
1130 -if exist $(LIBDIR)\ExtUtils\Liblist rmdir /s /q $(LIBDIR)\ExtUtils\Liblist
1131 -if exist $(LIBDIR)\ExtUtils\MakeMaker rmdir /s /q $(LIBDIR)\ExtUtils\MakeMaker
1132 -if exist $(LIBDIR)\File\Spec rmdir /s /q $(LIBDIR)\File\Spec
1133 -if exist $(LIBDIR)\Filter rmdir /s /q $(LIBDIR)\Filter
96c33d98 1134 -if exist $(LIBDIR)\Hash rmdir /s /q $(LIBDIR)\Hash
1a6c65ed
SH
1135 -if exist $(LIBDIR)\I18N\LangTags rmdir /s /q $(LIBDIR)\I18N\LangTags
1136 -if exist $(LIBDIR)\inc rmdir /s /q $(LIBDIR)\inc
c146e560 1137 -if exist $(LIBDIR)\Module\Pluggable rmdir /s /q $(LIBDIR)\Module\Pluggable
1a6c65ed
SH
1138 -if exist $(LIBDIR)\IO rmdir /s /q $(LIBDIR)\IO
1139 -if exist $(LIBDIR)\IPC rmdir /s /q $(LIBDIR)\IPC
69f57184 1140 -if exist $(LIBDIR)\List rmdir /s /q $(LIBDIR)\List
1a6c65ed
SH
1141 -if exist $(LIBDIR)\Locale rmdir /s /q $(LIBDIR)\Locale
1142 -if exist $(LIBDIR)\Log rmdir /s /q $(LIBDIR)\Log
1143 -if exist $(LIBDIR)\Math rmdir /s /q $(LIBDIR)\Math
1144 -if exist $(LIBDIR)\Memoize rmdir /s /q $(LIBDIR)\Memoize
69f57184 1145 -if exist $(LIBDIR)\MIME rmdir /s /q $(LIBDIR)\MIME
1a6c65ed
SH
1146 -if exist $(LIBDIR)\Module rmdir /s /q $(LIBDIR)\Module
1147 -if exist $(LIBDIR)\mro rmdir /s /q $(LIBDIR)\mro
1148 -if exist $(LIBDIR)\Net\FTP rmdir /s /q $(LIBDIR)\Net\FTP
1149 -if exist $(LIBDIR)\Object rmdir /s /q $(LIBDIR)\Object
1150 -if exist $(LIBDIR)\Package rmdir /s /q $(LIBDIR)\Package
1151 -if exist $(LIBDIR)\Params rmdir /s /q $(LIBDIR)\Params
1152 -if exist $(LIBDIR)\Parse rmdir /s /q $(LIBDIR)\Parse
1153 -if exist $(LIBDIR)\PerlIO rmdir /s /q $(LIBDIR)\PerlIO
1154 -if exist $(LIBDIR)\Pod\Perldoc rmdir /s /q $(LIBDIR)\Pod\Perldoc
1155 -if exist $(LIBDIR)\Pod\Simple rmdir /s /q $(LIBDIR)\Pod\Simple
1156 -if exist $(LIBDIR)\Pod\Text rmdir /s /q $(LIBDIR)\Pod\Text
849a608a 1157 -if exist $(LIBDIR)\re rmdir /s /q $(LIBDIR)\re
9e42cd94 1158 -if exist $(LIBDIR)\Scalar rmdir /s /q $(LIBDIR)\Scalar
6c4b87ea 1159 -if exist $(LIBDIR)\Sys rmdir /s /q $(LIBDIR)\Sys
1a6c65ed
SH
1160 -if exist $(LIBDIR)\TAP rmdir /s /q $(LIBDIR)\TAP
1161 -if exist $(LIBDIR)\Term\UI rmdir /s /q $(LIBDIR)\Term\UI
1162 -if exist $(LIBDIR)\Test rmdir /s /q $(LIBDIR)\Test
1163 -if exist $(LIBDIR)\Thread rmdir /s /q $(LIBDIR)\Thread
6c4b87ea 1164 -if exist $(LIBDIR)\threads rmdir /s /q $(LIBDIR)\threads
8cf6f931 1165 -if exist $(LIBDIR)\Tie\Hash rmdir /s /q $(LIBDIR)\Tie\Hash
1a6c65ed 1166 -if exist $(LIBDIR)\Unicode\Collate rmdir /s /q $(LIBDIR)\Unicode\Collate
9e42cd94 1167 -if exist $(LIBDIR)\XS rmdir /s /q $(LIBDIR)\XS
00701878 1168 -if exist $(LIBDIR)\Win32API rmdir /s /q $(LIBDIR)\Win32API
1a6c65ed 1169 -cd $(PODDIR) && del /f *.html *.bat \
0aaeb177 1170 perl5156delta.pod perlaix.pod perlamiga.pod perlapi.pod \
1178b7e3
NC
1171 perlbeos.pod perlbs2000.pod perlce.pod perlcn.pod \
1172 perlcygwin.pod perldgux.pod perldos.pod perlepoc.pod \
b14c7f9a
SH
1173 perlfreebsd.pod perlhaiku.pod perlhpux.pod perlhurd.pod \
1174 perlintern.pod perlirix.pod perljp.pod perlko.pod perllinux.pod \
1175 perlmacos.pod perlmacosx.pod perlmodlib.pod perlmpeix.pod \
1176 perlnetware.pod perlopenbsd.pod perlos2.pod perlos390.pod \
1177 perlos400.pod perlplan9.pod perlqnx.pod perlriscos.pod \
1178 perlsolaris.pod perlsymbian.pod perltoc.pod perltru64.pod \
1179 perltw.pod perluniprops.pod perluts.pod perlvmesa.pod \
1180 perlvos.pod perlwin32.pod
ca67812f 1181 -cd ..\utils && del /f h2ph splain perlbug pl2pm c2ph pstruct h2xs \
c9dab4e9 1182 perldoc perlivp libnetcfg enc2xs piconv cpan *.bat \
d658129c 1183 xsubpp pod2html instmodsh json_pp prove ptar ptardiff ptargrep cpanp-run-perl cpanp cpan2dist shasum corelist config_data
ca67812f 1184 -cd ..\x2p && del /f find2perl s2p psed *.bat
19ec6f53 1185 -del /f ..\config.sh perlmain.c dlutils.c config.h.new \
4e036e4b 1186 perlmainst.c
9e42cd94 1187 -del /f $(CONFIGPM)
a148edb6 1188 -del /f ..\lib\Config_git.pl
9e42cd94 1189 -del /f bin\*.bat
322fd642 1190 -del /f perllibst.h
4ebea3c6 1191 -del /f $(PERLEXE_RES) perl.base
85741d00 1192 -cd .. && del /s *.lib *.map *.pdb *.ilk *.bs *$(o) .exists pm_to_blib ppport.h
ca67812f 1193 -cd $(EXTDIR) && del /s *.def Makefile Makefile.old
a193a2db 1194 -cd $(DISTDIR) && del /s *.def Makefile Makefile.old
b212a3c6 1195 -cd $(CPANDIR) && del /s *.def Makefile Makefile.old
9e42cd94 1196 -if exist $(AUTODIR) rmdir /s /q $(AUTODIR)
9e42cd94 1197 -if exist $(COREDIR) rmdir /s /q $(COREDIR)
b4a41557
SH
1198 -if exist pod2htmd.tmp del pod2htmd.tmp
1199 -if exist pod2htmi.tmp del pod2htmi.tmp
1200 -if exist $(HTMLDIR) rmdir /s /q $(HTMLDIR)
0279961e 1201 -del /f ..\t\test_state
9e42cd94
GS
1202
1203install : all installbare installhtml
1204
0195b144 1205installbare : utils ..\pod\perltoc.pod
9e42cd94
GS
1206 $(PERLEXE) ..\installperl
1207 if exist $(WPERLEXE) $(XCOPY) $(WPERLEXE) $(INST_BIN)\*.*
5548433c 1208 if exist $(PERLEXESTATIC) $(XCOPY) $(PERLEXESTATIC) $(INST_BIN)\*.*
9e42cd94 1209 $(XCOPY) $(GLOBEXE) $(INST_BIN)\*.*
ec25c072
SH
1210 if exist ..\perl*.pdb $(XCOPY) ..\perl*.pdb $(INST_BIN)\*.*
1211 if exist ..\x2p\a2p.pdb $(XCOPY) ..\x2p\a2p.pdb $(INST_BIN)\*.*
9e42cd94
GS
1212 $(XCOPY) bin\*.bat $(INST_SCRIPT)\*.*
1213
1214installhtml : doc
b4a41557 1215 $(RCOPY) $(HTMLDIR)\*.* $(INST_HTML)\*.*
9e42cd94
GS
1216
1217inst_lib : $(CONFIGPM)
9e42cd94
GS
1218 $(RCOPY) ..\lib $(INST_LIB)\*.*
1219
58fa074c 1220$(UNIDATAFILES) ..\pod\perluniprops.pod : $(MINIPERL) $(CONFIGPM) ..\lib\unicore\mktables Extensions_nonxs
27a8011f 1221 cd ..\lib\unicore && \
2a6dc374 1222 ..\$(MINIPERL) -I.. -I..\..\dist\Cwd\lib -I..\..\dist\Cwd mktables -P ..\..\pod -maketest -makelist -p -check $@ $(FIRSTUNIFILE)
ca12659b
NC
1223
1224minitest : $(MINIPERL) $(GLOBEXE) $(CONFIGPM) utils $(UNIDATAFILES)
6c85d12e
SH
1225 $(XCOPY) $(MINIPERL) ..\t\$(NULL)
1226 if exist ..\t\perl.exe del /f ..\t\perl.exe
1227 rename ..\t\miniperl.exe perl.exe
9e42cd94
GS
1228 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1229 attrib -r ..\t\*.*
6c85d12e
SH
1230 cd ..\t && \
1231 $(MINIPERL) -I..\lib harness base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t
9e42cd94 1232
3bef022b 1233test-prep : all utils ../pod/perltoc.pod
9e42cd94
GS
1234 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1235 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1236 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
0b4dcbc1 1237 set PERL_STATIC_EXT=$(STATIC_EXT)
9e42cd94
GS
1238
1239test : test-prep
1240 cd ..\t
89087c85 1241 $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES)
9e42cd94
GS
1242 cd ..\win32
1243
6ae7e459
YO
1244test-reonly : reonly utils
1245 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1246 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1247 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1248 cd ..\t
a4499558 1249 $(PERLEXE) -I..\lib harness $(OPT) -re \bre\\/ $(EXTRA)
6ae7e459 1250 cd ..\win32
7bcddc65 1251
c900f745 1252regen :
7bcddc65
YO
1253 cd ..
1254 regen.pl
1255 cd win32
1256
9e42cd94
GS
1257test-notty : test-prep
1258 set PERL_SKIP_TTY_TEST=1
1259 cd ..\t
89087c85 1260 $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES)
9e42cd94
GS
1261 cd ..\win32
1262
b4a93add
NK
1263_test :
1264 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1265 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1266 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1267 cd ..\t
89087c85 1268 $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES)
b4a93add
NK
1269 cd ..\win32
1270
b4dc1df6 1271_clean :
9e42cd94
GS
1272 -@$(DEL) miniperlmain$(o)
1273 -@$(DEL) $(MINIPERL)
1274 -@$(DEL) perlglob$(o)
1275 -@$(DEL) perlmain$(o)
4e036e4b 1276 -@$(DEL) perlmainst$(o)
9e42cd94
GS
1277 -@$(DEL) config.w32
1278 -@$(DEL) config.h
a148edb6 1279 -@$(DEL) ..\git_version.h
9e42cd94
GS
1280 -@$(DEL) $(GLOBEXE)
1281 -@$(DEL) $(PERLEXE)
1282 -@$(DEL) $(WPERLEXE)
4e036e4b
VK
1283 -@$(DEL) $(PERLEXESTATIC)
1284 -@$(DEL) $(PERLSTATICLIB)
9e42cd94
GS
1285 -@$(DEL) $(PERLDLL)
1286 -@$(DEL) $(CORE_OBJ)
9387abf8 1287 -@$(DEL) $(GENUUDMAP) $(GENUUDMAP_OBJ) $(GENERATED_HEADERS)
9e42cd94 1288 -if exist $(MINIDIR) rmdir /s /q $(MINIDIR)
27a8011f 1289 -if exist $(UNIDATADIR1) rmdir /s /q $(UNIDATADIR1)
27a8011f 1290 -if exist $(UNIDATADIR2) rmdir /s /q $(UNIDATADIR2)
ca12659b 1291 -@$(DEL) $(UNIDATAFILES)
27a8011f 1292 -@$(DEL) $(WIN32_OBJ)
9e42cd94
GS
1293 -@$(DEL) $(DLL_OBJ)
1294 -@$(DEL) $(X2P_OBJ)
1295 -@$(DEL) ..\*$(o) ..\*.lib ..\*.exp *$(o) *.lib *.exp *.res
1296 -@$(DEL) ..\t\*.exe ..\t\*.dll ..\t\*.bat
1297 -@$(DEL) ..\x2p\*.exe ..\x2p\*.bat
1298 -@$(DEL) *.ilk
1299 -@$(DEL) *.pdb
9e7cf449 1300 -@$(DEL) Extensions_static
9e42cd94 1301
6e2cec71 1302clean : Extensions_clean _clean
b4dc1df6 1303
85741d00 1304realclean : Extensions_realclean _clean
b4dc1df6 1305
9e42cd94
GS
1306# Handy way to run perlbug -ok without having to install and run the
1307# installed perlbug. We don't re-run the tests here - we trust the user.
1308# Please *don't* use this unless all tests pass.
1309# If you want to report test failures, use "nmake nok" instead.
1310ok: utils
1311 $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)"
1312
1313okfile: utils
1314 $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)" -F perl.ok
1315
1316nok: utils
1317 $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)"
1318
1319nokfile: utils
1320 $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)" -F perl.nok