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