This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
[perl #61392] Method call documentation in perlobj.pod
[perl5.git] / win32 / Makefile
CommitLineData
9e42cd94
GS
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
GS
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
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#
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#
4eeeaff6 35#INST_VER = \5.11.0
9e42cd94
GS
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
GS
47
48#
7ada00a0
SH
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
GS
61
62#
f7d585d3 63# Beginnings of interpreter cloning/threads; now reasonably complete.
9e42cd94
GS
64# This should be enabled to get the fork() emulation. This needs
65# USE_MULTI as well.
66#
bdb4cb88 67USE_ITHREADS = define
9e42cd94
GS
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
GS
75
76#
f7d585d3
GS
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
GS
82USE_PERLIO = define
83
84#
4a9d6100
GS
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
GS
89
90#
da2c7419 91# uncomment exactly one of the following
9e42cd94 92#
da2c7419 93# Visual C++ 2.x
9e42cd94 94#CCTYPE = MSVC20
da2c7419
SH
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
SH
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
GS
111
112#
113# uncomment next line if you want debug version of perl (big,slow)
f7d585d3
GS
114# If not enabled, we automatically try to use maximum optimization
115# with all compilers that are known to have a working optimizer.
9e42cd94
GS
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
SH
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
GS
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
SH
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
SH
168
169#
4e036e4b
VK
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
VK
174# Ordinary perl.exe is not affected by this option.
175#
176#BUILD_STATIC = define
177
178#
a1f2e719
VK
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
GS
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
SH
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
GS
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
GS
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
SH
262!IF "$(USE_IMP_SYS)" == "define"
263PERL_MALLOC = undef
264DEBUG_MSTATS = undef
265!ENDIF
266
9e42cd94
GS
267!IF "$(PERL_MALLOC)" == ""
268PERL_MALLOC = undef
646e33b6 269DEBUG_MSTATS = undef
06c896bb
SH
270!ENDIF
271
272!IF "$(DEBUG_MSTATS)" == ""
646e33b6 273DEBUG_MSTATS = undef
06c896bb
SH
274!ENDIF
275
276!IF "$(DEBUG_MSTATS)" == "define"
646e33b6 277BUILDOPT = $(BUILDOPT) -DPERL_DEBUGGING_MSTATS
9e42cd94
GS
278!ENDIF
279
7ada00a0
SH
280!IF "$(USE_SITECUST)" == ""
281USE_SITECUST = undef
282!ENDIF
283
9e42cd94
GS
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
GS
300!IF "$(USE_LARGE_FILES)" == ""
301USE_LARGE_FILES = undef
302!ENDIF
303
9e42cd94
GS
304!IF "$(USE_PERLCRT)" == ""
305USE_PERLCRT = undef
306!ENDIF
307
3db8f154 308!IF "$(USE_IMP_SYS)$(USE_MULTI)" == "defineundef"
9e42cd94
GS
309USE_MULTI = define
310!ENDIF
311
312!IF "$(USE_ITHREADS)$(USE_MULTI)" == "defineundef"
313USE_MULTI = define
9e42cd94
GS
314!ENDIF
315
7ada00a0
SH
316!IF "$(USE_SITECUST)" == "define"
317BUILDOPT = $(BUILDOPT) -DUSE_SITECUSTOMIZE
318!ENDIF
319
3db8f154 320!IF "$(USE_MULTI)" != "undef"
9e42cd94
GS
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
JD
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
GS
336!IF "$(PROCESSOR_ARCHITEW6432)" != ""
337PROCESSOR_ARCHITECTURE = $(PROCESSOR_ARCHITEW6432)
338WIN64 = define
339!ELSE
bf2a35e5 340!IF "$(PROCESSOR_ARCHITECTURE)" == "AMD64" || "$(PROCESSOR_ARCHITECTURE)" == "IA64"
c623ac67
GS
341WIN64 = define
342!ELSE
343WIN64 = undef
344!ENDIF
345!ENDIF
346!ENDIF
347
bf2a35e5
JD
348ARCHITECTURE = $(PROCESSOR_ARCHITECTURE)
349!IF "$(ARCHITECTURE)" == "AMD64"
350ARCHITECTURE = x64
9453ddcd 351!ENDIF
bf2a35e5
JD
352!IF "$(ARCHITECTURE)" == "IA64"
353ARCHITECTURE = ia64
9453ddcd
SH
354!ENDIF
355
9e42cd94 356!IF "$(USE_MULTI)" == "define"
bf2a35e5 357ARCHNAME = MSWin32-$(ARCHITECTURE)-multi
9e42cd94
GS
358!ELSE
359!IF "$(USE_PERLIO)" == "define"
bf2a35e5 360ARCHNAME = MSWin32-$(ARCHITECTURE)-perlio
9e42cd94 361!ELSE
bf2a35e5 362ARCHNAME = MSWin32-$(ARCHITECTURE)
9e42cd94
GS
363!ENDIF
364!ENDIF
9e42cd94
GS
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
SH
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
GS
382!ENDIF
383
4a3cf07b
SH
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
386# embedding in them otherwise MSVCR80.dll or MSVCR90.dll won't be found. Embed
387# them for simplicity, and delete them afterwards so that they don't get
388# installed too.
389!IF "$(CCTYPE)" == "MSVC80" || "$(CCTYPE)" == "MSVC80FREE" || \
390 "$(CCTYPE)" == "MSVC90" || "$(CCTYPE)" == "MSVC90FREE"
4adc95e6
SH
391EMBED_EXE_MANI = if exist $@.manifest mt -nologo -manifest $@.manifest -outputresource:$@;1 && \
392 if exist $@.manifest del $@.manifest
393EMBED_DLL_MANI = if exist $@.manifest mt -nologo -manifest $@.manifest -outputresource:$@;2 && \
394 if exist $@.manifest del $@.manifest
c8e599d3
SH
395!ENDIF
396
9e42cd94
GS
397ARCHDIR = ..\lib\$(ARCHNAME)
398COREDIR = ..\lib\CORE
399AUTODIR = ..\lib\auto
400LIBDIR = ..\lib
401EXTDIR = ..\ext
402PODDIR = ..\pod
403EXTUTILSDIR = $(LIBDIR)\ExtUtils
b4a41557 404HTMLDIR = .\html
9e42cd94
GS
405
406#
407INST_SCRIPT = $(INST_TOP)$(INST_VER)\bin
408INST_BIN = $(INST_SCRIPT)$(INST_ARCH)
409INST_LIB = $(INST_TOP)$(INST_VER)\lib
410INST_ARCHLIB = $(INST_LIB)$(INST_ARCH)
411INST_COREDIR = $(INST_ARCHLIB)\CORE
9e42cd94
GS
412INST_HTML = $(INST_TOP)$(INST_VER)\html
413
414#
415# Programs to compile, build .lib files and link
416#
417
418CC = cl
419LINK32 = link
420LIB32 = $(LINK32) -lib
421RSC = rc
422
423#
424# Options
425#
426
427INCLUDES = -I$(COREDIR) -I.\include -I. -I..
428#PCHFLAGS = -Fpc:\temp\vcmoduls.pch -YX
429DEFINES = -DWIN32 -D_CONSOLE -DNO_STRICT $(CRYPT_FLAG)
430LOCDEFS = -DPERLDLL -DPERL_CORE
431SUBSYS = console
a7d225ec 432CXX_FLAG = -TP -EHsc
9e42cd94
GS
433
434!IF "$(USE_PERLCRT)" != "define"
435LIBC = msvcrt.lib
436!ELSE
437LIBC = PerlCRT.lib
438!ENDIF
439
9e42cd94
GS
440!IF "$(CFG)" == "Debug"
441! IF "$(CCTYPE)" == "MSVC20"
442OPTIMIZE = -Od -MD -Z7 -DDEBUGGING
443! ELSE
444OPTIMIZE = -Od -MD -Zi -DDEBUGGING
445! ENDIF
c623ac67 446LINK_DBG = -debug
9e42cd94 447!ELSE
ec25c072
SH
448OPTIMIZE = -MD -Zi -DNDEBUG
449# we enable debug symbols in release builds also
450LINK_DBG = -debug -opt:ref,icf
451# you may want to enable this if you want COFF symbols in the executables
452# in addition to the PDB symbols. The default Dr. Watson that ships with
453# Windows can use the the former but not latter. The free WinDbg can be
454# installed to get better stack traces from just the PDB symbols, so we
455# avoid the bloat of COFF symbols by default.
456#LINK_DBG = $(LINK_DBG) -debugtype:both
d921a5fb
GS
457! IF "$(WIN64)" == "define"
458# enable Whole Program Optimizations (WPO) and Link Time Code Generation (LTCG)
459OPTIMIZE = $(OPTIMIZE) -Ox -GL
460LINK_DBG = $(LINK_DBG) -ltcg
461! ELSE
462# -O1 yields smaller code, which turns out to be faster than -O2 on x86
463OPTIMIZE = $(OPTIMIZE) -O1
464#OPTIMIZE = $(OPTIMIZE) -O2
465! ENDIF
9e42cd94
GS
466!ENDIF
467
c623ac67
GS
468!IF "$(WIN64)" == "define"
469DEFINES = $(DEFINES) -DWIN64 -DCONSERVATIVE
9453ddcd 470OPTIMIZE = $(OPTIMIZE) -Wp64 -fp:precise
da2c7419
SH
471!ENDIF
472
4a3cf07b
SH
473# For now, silence VC++ 8.x's and 9.x's warnings about "unsafe" CRT functions
474# and POSIX CRT function names being deprecated.
475!IF "$(CCTYPE)" == "MSVC80" || "$(CCTYPE)" == "MSVC80FREE" || \
476 "$(CCTYPE)" == "MSVC90" || "$(CCTYPE)" == "MSVC90FREE"
26a6faa8 477DEFINES = $(DEFINES) -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE
c5b31784
SH
478!ENDIF
479
46e77f11
SH
480# Use the MSVCRT read() fix if the PerlCRT was not chosen, but only when using
481# VC++ 6.x or earlier. Later versions use MSVCR70.dll, MSVCR71.dll, etc, which
482# do not require the fix.
483!IF "$(CCTYPE)" == "MSVC20" || "$(CCTYPE)" == "MSVC" || "$(CCTYPE)" == "MSVC60"
484! IF "$(USE_PERLCRT)" != "define"
9e42cd94 485BUILDOPT = $(BUILDOPT) -DPERL_MSVCRT_READFIX
46e77f11 486! ENDIF
9e42cd94
GS
487!ENDIF
488
489LIBBASEFILES = $(CRYPT_LIB) \
490 oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.lib \
491 comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \
036c1c1e 492 netapi32.lib uuid.lib ws2_32.lib mpr.lib winmm.lib \
9453ddcd 493 version.lib odbc32.lib odbccp32.lib
c623ac67 494
9453ddcd
SH
495# The 64 bit Platform SDK compilers contain a runtime library that doesn't
496# include the buffer overrun verification code used by the /GS switch.
497# Since the code links against libraries that are compiled with /GS, this
498# "security cookie verification" must be included via bufferoverlow.lib.
499!IF "$(WIN64)" == "define"
500LIBBASEFILES = $(LIBBASEFILES) bufferoverflowU.lib
c623ac67 501!ENDIF
9e42cd94
GS
502
503# we add LIBC here, since we may be using PerlCRT.dll
504LIBFILES = $(LIBBASEFILES) $(LIBC)
505
a5ca303d 506#EXTRACFLAGS = -nologo -GF -W4 -wd4127 -wd4706
9453ddcd 507EXTRACFLAGS = -nologo -GF -W3
bb275e72 508CFLAGS = $(EXTRACFLAGS) $(INCLUDES) $(DEFINES) $(LOCDEFS) \
9e42cd94
GS
509 $(PCHFLAGS) $(OPTIMIZE)
510LINK_FLAGS = -nologo -nodefaultlib $(LINK_DBG) \
511 -libpath:"$(INST_COREDIR)" \
512 -machine:$(PROCESSOR_ARCHITECTURE)
4e036e4b 513LIB_FLAGS = -nologo
9e42cd94
GS
514OBJOUT_FLAG = -Fo
515EXEOUT_FLAG = -Fe
516
517CFLAGS_O = $(CFLAGS) $(BUILDOPT)
518
519#################### do not edit below this line #######################
520############# NO USER-SERVICEABLE PARTS BEYOND THIS POINT ##############
521
522o = .obj
523
524#
525# Rules
526#
527
528.SUFFIXES : .c $(o) .dll .lib .exe .rc .res
529
530.c$(o):
531 $(CC) -c -I$(<D) $(CFLAGS_O) $(OBJOUT_FLAG)$@ $<
532
533.y.c:
534 $(NOOP)
535
536$(o).dll:
537 $(LINK32) -dll -subsystem:windows -implib:$(*B).lib -def:$(*B).def \
538 -out:$@ $(LINK_FLAGS) $(LIBFILES) $< $(LIBPERL)
c8e599d3 539 $(EMBED_DLL_MANI)
9e42cd94
GS
540
541.rc.res:
542 $(RSC) -i.. $<
543
544#
545# various targets
546
547# makedef.pl must be updated if this changes, and this should normally
548# only change when there is an incompatible revision of the public API.
95bfaf42
SP
549PERLIMPLIB = ..\perl511.lib
550PERLSTATICLIB = ..\perl511s.lib
551PERLDLL = ..\perl511.dll
9e42cd94
GS
552
553MINIPERL = ..\miniperl.exe
554MINIDIR = .\mini
555PERLEXE = ..\perl.exe
556WPERLEXE = ..\wperl.exe
4e036e4b 557PERLEXESTATIC = ..\perl-static.exe
9e42cd94 558GLOBEXE = ..\perlglob.exe
04bae4fb 559CONFIGPM = ..\lib\Config.pm ..\lib\Config_heavy.pl
9e42cd94
GS
560MINIMOD = ..\lib\ExtUtils\Miniperl.pm
561X2P = ..\x2p\a2p.exe
202d1001 562GENUUDMAP = ..\generate_uudmap.exe
4e036e4b
VK
563!IF "$(BUILD_STATIC)" == "define"
564PERLSTATIC = static
565!ELSE
566PERLSTATIC =
567!ENDIF
73c9ebc7 568
ca12659b 569# Unicode data files generated by mktables
6ae7e459 570FIRSTUNIFILE = ..\lib\unicore\Canonical.pl
ca12659b
NC
571UNIDATAFILES = ..\lib\unicore\Canonical.pl ..\lib\unicore\Exact.pl \
572 ..\lib\unicore\Properties ..\lib\unicore\Decomposition.pl \
7ebf06b3
NC
573 ..\lib\unicore\CombiningClass.pl ..\lib\unicore\Name.pl \
574 ..\lib\unicore\PVA.pl
ca12659b
NC
575
576# Directories of Unicode data files generated by mktables
27a8011f
SH
577UNIDATADIR1 = ..\lib\unicore\To
578UNIDATADIR2 = ..\lib\unicore\lib
ca12659b 579
3890b58f
RGS
580PERLEXE_ICO = .\perlexe.ico
581PERLEXE_RES = .\perlexe.res
582PERLDLL_RES =
583
9e42cd94
GS
584# Nominate a target which causes extensions to be re-built
585# This used to be $(PERLEXE), but at worst it is the .dll that they depend
586# on and really only the interface - i.e. the .def file used to export symbols
587# from the .dll
588PERLDEP = perldll.def
589
590PL2BAT = bin\pl2bat.pl
591GLOBBAT = bin\perlglob.bat
592
593UTILS = \
594 ..\utils\h2ph \
595 ..\utils\splain \
596 ..\utils\dprofpp \
597 ..\utils\perlbug \
598 ..\utils\pl2pm \
599 ..\utils\c2ph \
827a599d 600 ..\utils\pstruct \
9e42cd94
GS
601 ..\utils\h2xs \
602 ..\utils\perldoc \
9e42cd94
GS
603 ..\utils\perlivp \
604 ..\utils\libnetcfg \
827a599d
GS
605 ..\utils\enc2xs \
606 ..\utils\piconv \
bb4e9162 607 ..\utils\config_data \
18a1cebe 608 ..\utils\corelist \
83cd6e83 609 ..\utils\cpan \
ea0e987d 610 ..\utils\xsubpp \
4b618757 611 ..\utils\prove \
291d3373 612 ..\utils\ptar \
b8669316 613 ..\utils\ptardiff \
6aaee015
RGS
614 ..\utils\cpanp-run-perl \
615 ..\utils\cpanp \
616 ..\utils\cpan2dist \
3ddf9550 617 ..\utils\shasum \
ea0e987d 618 ..\utils\instmodsh \
9e42cd94
GS
619 ..\pod\pod2html \
620 ..\pod\pod2latex \
621 ..\pod\pod2man \
622 ..\pod\pod2text \
623 ..\pod\pod2usage \
624 ..\pod\podchecker \
625 ..\pod\podselect \
626 ..\x2p\find2perl \
827a599d 627 ..\x2p\psed \
9e42cd94 628 ..\x2p\s2p \
9e42cd94
GS
629 bin\exetype.pl \
630 bin\runperl.pl \
631 bin\pl2bat.pl \
632 bin\perlglob.pl \
633 bin\search.pl
634
635MAKE = nmake -nologo
636MAKE_BARE = nmake
637
c623ac67
GS
638!IF "$(WIN64)" == "define"
639CFGSH_TMPL = config.vc64
640CFGH_TMPL = config_H.vc64
641!ELSE
9e42cd94
GS
642CFGSH_TMPL = config.vc
643CFGH_TMPL = config_H.vc
c623ac67 644!ENDIF
9e42cd94 645
b6ed7314
YO
646XCOPY = xcopy /f /r /i /d /y
647RCOPY = xcopy /f /r /i /e /d /y
65980d94 648NOOP = @rem
9e42cd94
GS
649NULL =
650
651DEL = del
652
653#
654# filenames given to xsubpp must have forward slashes (since it puts
655# full pathnames in #line strings)
656XSUBPP = ..\$(MINIPERL) -I..\..\lib ..\$(EXTUTILSDIR)\xsubpp \
657 -C++ -prototypes
658
659MICROCORE_SRC = \
660 ..\av.c \
661 ..\deb.c \
662 ..\doio.c \
663 ..\doop.c \
664 ..\dump.c \
665 ..\globals.c \
666 ..\gv.c \
e1a479c5 667 ..\mro.c \
9e42cd94
GS
668 ..\hv.c \
669 ..\locale.c \
a0d89a74 670 ..\mathoms.c \
9e42cd94
GS
671 ..\mg.c \
672 ..\numeric.c \
673 ..\op.c \
295f0f84 674 ..\pad.c \
9e42cd94
GS
675 ..\perl.c \
676 ..\perlapi.c \
677 ..\perly.c \
678 ..\pp.c \
679 ..\pp_ctl.c \
680 ..\pp_hot.c \
681 ..\pp_pack.c \
682 ..\pp_sort.c \
683 ..\pp_sys.c \
10bc17b6 684 ..\reentr.c \
9e42cd94
GS
685 ..\regcomp.c \
686 ..\regexec.c \
687 ..\run.c \
688 ..\scope.c \
689 ..\sv.c \
690 ..\taint.c \
691 ..\toke.c \
692 ..\universal.c \
693 ..\utf8.c \
694 ..\util.c \
695 ..\xsutils.c
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
GS
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
GS
715
716!IF "$(CRYPT_SRC)" != ""
717WIN32_SRC = $(WIN32_SRC) .\$(CRYPT_SRC)
718!ENDIF
719
720DLL_SRC = $(DYNALOADER).c
721
722X2P_SRC = \
723 ..\x2p\a2p.c \
724 ..\x2p\hash.c \
725 ..\x2p\str.c \
726 ..\x2p\util.c \
727 ..\x2p\walk.c
728
729CORE_NOCFG_H = \
730 ..\av.h \
731 ..\cop.h \
732 ..\cv.h \
733 ..\dosish.h \
734 ..\embed.h \
735 ..\form.h \
736 ..\gv.h \
737 ..\handy.h \
738 ..\hv.h \
739 ..\iperlsys.h \
740 ..\mg.h \
741 ..\nostdio.h \
742 ..\op.h \
743 ..\opcode.h \
744 ..\perl.h \
745 ..\perlapi.h \
746 ..\perlsdio.h \
747 ..\perlsfio.h \
748 ..\perly.h \
749 ..\pp.h \
750 ..\proto.h \
cdb0f547 751 ..\regcomp.h \
9e42cd94
GS
752 ..\regexp.h \
753 ..\scope.h \
754 ..\sv.h \
755 ..\thread.h \
756 ..\unixish.h \
757 ..\utf8.h \
758 ..\util.h \
759 ..\warnings.h \
760 ..\XSUB.h \
761 ..\EXTERN.h \
762 ..\perlvars.h \
763 ..\intrpvar.h \
9e42cd94
GS
764 .\include\dirent.h \
765 .\include\netdb.h \
766 .\include\sys\socket.h \
767 .\win32.h
768
769CORE_H = $(CORE_NOCFG_H) .\config.h
770
202d1001
SH
771UUDMAP_H = ..\uudmap.h
772
9e42cd94
GS
773MICROCORE_OBJ = $(MICROCORE_SRC:.c=.obj)
774CORE_OBJ = $(MICROCORE_OBJ) $(EXTRACORE_SRC:.c=.obj)
775WIN32_OBJ = $(WIN32_SRC:.c=.obj)
776MINICORE_OBJ = $(MICROCORE_OBJ:..\=.\mini\) \
777 $(MINIDIR)\miniperlmain$(o) \
778 $(MINIDIR)\perlio$(o)
779MINIWIN32_OBJ = $(WIN32_OBJ:.\=.\mini\)
780MINI_OBJ = $(MINICORE_OBJ) $(MINIWIN32_OBJ)
781DLL_OBJ = $(DLL_SRC:.c=.obj)
782X2P_OBJ = $(X2P_SRC:.c=.obj)
202d1001 783GENUUDMAP_OBJ = $(GENUUDMAP:.exe=.obj)
9e42cd94
GS
784
785PERLDLL_OBJ = $(CORE_OBJ)
786PERLEXE_OBJ = perlmain$(o)
4e036e4b 787PERLEXEST_OBJ = perlmainst$(o)
9e42cd94
GS
788
789PERLDLL_OBJ = $(PERLDLL_OBJ) $(WIN32_OBJ) $(DLL_OBJ)
9e42cd94
GS
790
791!IF "$(USE_SETARGV)" != ""
792SETARGV_OBJ = setargv$(o)
793!ENDIF
794
a1f2e719
VK
795!IF "$(ALL_STATIC)" == "define"
796# some exclusions, unfortunately, until fixed:
797# - Win32 extension contains overlapped symbols with win32.c (BUG!)
798# - MakeMaker isn't capable enough for SDBM_File (smaller bug)
799# - Encode (encoding search algorithm relies on shared library?)
9788a75a 800STATIC_EXT = * !Win32 !SDBM_File !Encode
a1f2e719
VK
801!ELSE
802# specify static extensions here, for example:
4e036e4b 803#STATIC_EXT = Cwd Compress/Raw/Zlib
78ff2d7b 804STATIC_EXT = Win32CORE
a1f2e719 805!ENDIF
595589fa 806
47ef3394 807DYNALOADER = $(EXTDIR)\DynaLoader\DynaLoader
9e42cd94 808
9e42cd94
GS
809CFG_VARS = \
810 "INST_DRV=$(INST_DRV)" \
811 "INST_TOP=$(INST_TOP)" \
812 "INST_VER=$(INST_VER)" \
813 "INST_ARCH=$(INST_ARCH)" \
814 "archname=$(ARCHNAME)" \
815 "cc=$(CC)" \
816 "ld=$(LINK32)" \
bb275e72 817 "ccflags=$(EXTRACFLAGS) $(OPTIMIZE:"=\") $(DEFINES) $(BUILDOPT)" \
9e42cd94
GS
818 "cf_email=$(EMAIL)" \
819 "d_crypt=$(D_CRYPT)" \
820 "d_mymalloc=$(PERL_MALLOC)" \
821 "libs=$(LIBFILES)" \
822 "incpath=$(CCINCDIR:"=\")" \
823 "libperl=$(PERLIMPLIB:..\=)" \
824 "libpth=$(CCLIBDIR:"=\");$(EXTRALIBDIRS:"=\")" \
825 "libc=$(LIBC)" \
826 "make=$(MAKE_BARE)" \
d2b25974 827 "static_ext=$(STATIC_EXT)" \
7e0017d3 828 "usethreads=$(USE_ITHREADS)" \
9e42cd94 829 "useithreads=$(USE_ITHREADS)" \
9e42cd94
GS
830 "usemultiplicity=$(USE_MULTI)" \
831 "useperlio=$(USE_PERLIO)" \
4a9d6100 832 "uselargefiles=$(USE_LARGE_FILES)" \
7ada00a0 833 "usesitecustomize=$(USE_SITECUST)" \
9e42cd94
GS
834 "LINK_FLAGS=$(LINK_FLAGS:"=\")" \
835 "optimize=$(OPTIMIZE:"=\")"
836
837#
838# Top targets
839#
840
a1f2e719
VK
841all : .\config.h $(GLOBEXE) $(MINIMOD) $(CONFIGPM) $(UNIDATAFILES) MakePPPort \
842 $(PERLEXE) $(X2P) Extensions $(PERLSTATIC)
9e42cd94
GS
843 @echo Everything is up to date. '$(MAKE_BARE) test' to run test suite.
844
e64b1bd1
YO
845..\regcharclass.h : ..\Porting\regcharclass.pl
846 cd ..
e094b17e 847 miniperl Porting\regcharclass.pl
e64b1bd1 848 cd win32
5d458dd8 849
c900f745 850regnodes : ..\regnodes.h
5d458dd8 851
e64b1bd1
YO
852..\regcomp$(o) : ..\regnodes.h ..\regcharclass.h
853
854..\regexec$(o) : ..\regnodes.h ..\regcharclass.h
855
c900f745
SH
856reonly : regnodes .\config.h $(GLOBEXE) $(MINIMOD) $(CONFIGPM) $(UNIDATAFILES) \
857 $(PERLEXE) $(X2P) Extensions_reonly
a24cc0c0
YO
858 @echo Perl and 're' are up to date.
859
9e42cd94
GS
860$(DYNALOADER)$(o) : $(DYNALOADER).c $(CORE_H) $(EXTDIR)\DynaLoader\dlutils.c
861
4e036e4b
VK
862static: $(PERLEXESTATIC)
863
9e42cd94
GS
864#------------------------------------------------------------
865
866$(GLOBEXE) : perlglob$(o)
867 $(LINK32) $(LINK_FLAGS) $(LIBFILES) -out:$@ -subsystem:$(SUBSYS) \
868 perlglob$(o) setargv$(o)
c8e599d3 869 $(EMBED_EXE_MANI)
9e42cd94
GS
870
871perlglob$(o) : perlglob.c
872
873config.w32 : $(CFGSH_TMPL)
874 copy $(CFGSH_TMPL) config.w32
875
876.\config.h : $(CFGH_TMPL)
877 -del /f config.h
878 copy $(CFGH_TMPL) config.h
879
880..\config.sh : config.w32 $(MINIPERL) config_sh.PL
881 $(MINIPERL) -I..\lib config_sh.PL $(CFG_VARS) config.w32 > ..\config.sh
882
76febb1c
SH
883# this target is for when changes to the main config.sh happen.
884# edit config.vc, then make perl in a minimal configuration (i.e. with MULTI,
885# ITHREADS, IMP_SYS, LARGE_FILES, PERLIO and CRYPT off), then make this target
886# to regenerate config_H.vc.
887# repeat for config.vc64 and config_H.vc64 if you have a suitable build
888# environment, otherwise hand-edit them to maintain the same differences with
889# config.vc and config_H.vc as before.
890# unfortunately, some further manual editing is also then required to restore all
891# the special __GNUC__ handling that is otherwise lost.
9e42cd94 892regen_config_h:
76febb1c 893 $(MINIPERL) -I..\lib config_sh.PL $(CFG_VARS) $(CFGSH_TMPL) > ..\config.sh
9e42cd94 894 cd ..
76febb1c 895 miniperl configpm
9e42cd94
GS
896 cd win32
897 -del /f $(CFGH_TMPL)
76febb1c 898 -$(MINIPERL) -I..\lib config_h.PL "INST_VER=$(INST_VER)"
9e42cd94
GS
899 rename config.h $(CFGH_TMPL)
900
901$(CONFIGPM) : $(MINIPERL) ..\config.sh config_h.PL ..\minimod.pl
902 cd ..
903 miniperl configpm
904 cd win32
905 if exist lib\* $(RCOPY) lib\*.* ..\lib\$(NULL)
906 $(XCOPY) ..\*.h $(COREDIR)\*.*
907 $(XCOPY) *.h $(COREDIR)\*.*
908 $(XCOPY) ..\ext\re\re.pm $(LIBDIR)\*.*
909 $(RCOPY) include $(COREDIR)\*.*
910 -$(MINIPERL) -I..\lib config_h.PL "INST_VER=$(INST_VER)"
911 if errorlevel 1 $(MAKE) /$(MAKEFLAGS) $(CONFIGPM)
912
913$(MINIPERL) : $(MINIDIR) $(MINI_OBJ)
914 $(LINK32) -subsystem:console -out:$@ @<<
915 $(LINK_FLAGS) $(LIBFILES) $(MINI_OBJ)
916<<
c8e599d3 917 $(EMBED_EXE_MANI)
9e42cd94
GS
918
919$(MINIDIR) :
920 if not exist "$(MINIDIR)" mkdir "$(MINIDIR)"
921
922$(MINICORE_OBJ) : $(CORE_NOCFG_H)
923 $(CC) -c $(CFLAGS) -DPERL_EXTERNAL_GLOB $(OBJOUT_FLAG)$@ ..\$(*F).c
924
925$(MINIWIN32_OBJ) : $(CORE_NOCFG_H)
926 $(CC) -c $(CFLAGS) $(OBJOUT_FLAG)$@ $(*F).c
927
928# -DPERL_IMPLICIT_SYS needs C++ for perllib.c
929# This is the only file that depends on perlhost.h, vmem.h, and vdir.h
930!IF "$(USE_IMP_SYS)" == "define"
931perllib$(o) : perllib.c .\perlhost.h .\vdir.h .\vmem.h
932 $(CC) -c -I. $(CFLAGS_O) $(CXX_FLAG) $(OBJOUT_FLAG)$@ perllib.c
933!ENDIF
934
935# 1. we don't want to rebuild miniperl.exe when config.h changes
936# 2. we don't want to rebuild miniperl.exe with non-default config.h
937$(MINI_OBJ) : $(CORE_NOCFG_H)
938
939$(WIN32_OBJ) : $(CORE_H)
940$(CORE_OBJ) : $(CORE_H)
941$(DLL_OBJ) : $(CORE_H)
942$(X2P_OBJ) : $(CORE_H)
943
944perldll.def : $(MINIPERL) $(CONFIGPM) ..\global.sym ..\pp.sym ..\makedef.pl
595589fa 945 $(MINIPERL) -I..\lib buildext.pl --create-perllibst-h
9e42cd94
GS
946 $(MINIPERL) -w ..\makedef.pl PLATFORM=win32 $(OPTIMIZE) $(DEFINES) $(BUILDOPT) \
947 CCTYPE=$(CCTYPE) > perldll.def
948
595589fa 949$(PERLDLL): perldll.def $(PERLDLL_OBJ) $(PERLDLL_RES) Extensions_static
9e7cf449 950 $(LINK32) -dll -def:perldll.def -base:0x28000000 -out:$@ @Extensions_static @<<
9e42cd94
GS
951 $(LINK_FLAGS) $(DELAYLOAD) $(LIBFILES) $(PERLDLL_OBJ) $(PERLDLL_RES)
952<<
c8e599d3 953 $(EMBED_DLL_MANI)
9e42cd94
GS
954 $(XCOPY) $(PERLIMPLIB) $(COREDIR)
955
4e036e4b
VK
956$(PERLSTATICLIB): Extensions_static
957 $(LIB32) $(LIB_FLAGS) -out:$@ @Extensions_static @<<
958 $(PERLDLL_OBJ)
959<<
960 $(XCOPY) $(PERLSTATICLIB) $(COREDIR)
961
1266ad8f
YO
962$(PERLEXE_ICO): $(MINIPERL) ..\uupacktool.pl $(PERLEXE_ICO).packd
963 $(MINIPERL) -I..\lib ..\uupacktool.pl -u $(PERLEXE_ICO).packd $(PERLEXE_ICO)
e84ac4e2
SH
964
965$(PERLEXE_RES): perlexe.rc $(PERLEXE_ICO)
966
9e42cd94
GS
967$(MINIMOD) : $(MINIPERL) ..\minimod.pl
968 cd ..
969 miniperl minimod.pl > lib\ExtUtils\Miniperl.pm
970 cd win32
971
972..\x2p\a2p$(o) : ..\x2p\a2p.c
973 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\a2p.c
974
975..\x2p\hash$(o) : ..\x2p\hash.c
976 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\hash.c
977
978..\x2p\str$(o) : ..\x2p\str.c
979 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\str.c
980
981..\x2p\util$(o) : ..\x2p\util.c
982 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\util.c
983
984..\x2p\walk$(o) : ..\x2p\walk.c
985 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\walk.c
986
987$(X2P) : $(MINIPERL) $(X2P_OBJ)
988 $(MINIPERL) ..\x2p\find2perl.PL
989 $(MINIPERL) ..\x2p\s2p.PL
990 $(LINK32) -subsystem:console -out:$@ @<<
991 $(LINK_FLAGS) $(LIBFILES) $(X2P_OBJ)
992<<
c8e599d3 993 $(EMBED_EXE_MANI)
9e42cd94 994
202d1001 995$(MINIDIR)\globals$(o) : $(UUDMAP_H)
9444d213 996
202d1001
SH
997$(UUDMAP_H) : $(GENUUDMAP)
998 $(GENUUDMAP) >$(UUDMAP_H)
9444d213 999
202d1001 1000$(GENUUDMAP) : $(GENUUDMAP_OBJ)
9444d213 1001 $(LINK32) -subsystem:console -out:$@ @<<
202d1001
SH
1002 $(LINK_FLAGS) $(LIBFILES) $(GENUUDMAP_OBJ)
1003<<
1004 $(EMBED_EXE_MANI)
9444d213 1005
9e42cd94
GS
1006perlmain.c : runperl.c
1007 copy runperl.c perlmain.c
1008
1009perlmain$(o) : perlmain.c
88c9158a 1010 $(CC) $(CFLAGS_O:-DPERLDLL=-UPERLDLL) $(OBJOUT_FLAG)$@ -c perlmain.c
9e42cd94 1011
4e036e4b
VK
1012perlmainst.c : runperl.c
1013 copy runperl.c perlmainst.c
1014
1015perlmainst$(o) : perlmainst.c
88c9158a 1016 $(CC) $(CFLAGS_O) $(OBJOUT_FLAG)$@ -c perlmainst.c
4e036e4b 1017
9e42cd94
GS
1018$(PERLEXE): $(PERLDLL) $(CONFIGPM) $(PERLEXE_OBJ) $(PERLEXE_RES)
1019 $(LINK32) -subsystem:console -out:$@ -stack:0x1000000 $(LINK_FLAGS) \
1020 $(LIBFILES) $(PERLEXE_OBJ) $(SETARGV_OBJ) $(PERLIMPLIB) $(PERLEXE_RES)
c8e599d3 1021 $(EMBED_EXE_MANI)
9e42cd94
GS
1022 copy $(PERLEXE) $(WPERLEXE)
1023 $(MINIPERL) -I..\lib bin\exetype.pl $(WPERLEXE) WINDOWS
1024 copy splittree.pl ..
1025 $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR)
1026
4e036e4b
VK
1027$(PERLEXESTATIC): $(PERLSTATICLIB) $(CONFIGPM) $(PERLEXEST_OBJ) $(PERLEXE_RES)
1028 $(LINK32) -subsystem:console -out:$@ -stack:0x1000000 $(LINK_FLAGS) \
a1f2e719 1029 @Extensions_static $(PERLSTATICLIB) /PDB:NONE \
4e036e4b
VK
1030 $(LIBFILES) $(PERLEXEST_OBJ) $(SETARGV_OBJ) $(PERLEXE_RES)
1031 $(EMBED_EXE_MANI)
1032
9e42cd94
GS
1033$(DYNALOADER).c: $(MINIPERL) $(EXTDIR)\DynaLoader\dl_win32.xs $(CONFIGPM)
1034 if not exist $(AUTODIR) mkdir $(AUTODIR)
1035 cd $(EXTDIR)\$(*B)
1036 ..\$(MINIPERL) -I..\..\lib $(*B)_pm.PL
1037 ..\$(MINIPERL) -I..\..\lib XSLoader_pm.PL
1038 cd ..\..\win32
1039 $(XCOPY) $(EXTDIR)\$(*B)\$(*B).pm $(LIBDIR)\$(NULL)
1040 $(XCOPY) $(EXTDIR)\$(*B)\XSLoader.pm $(LIBDIR)\$(NULL)
1041 cd $(EXTDIR)\$(*B)
1042 $(XSUBPP) dl_win32.xs > $(*B).c
1043 cd ..\..\win32
1044
1045$(EXTDIR)\DynaLoader\dl_win32.xs: dl_win32.xs
1046 copy dl_win32.xs $(EXTDIR)\DynaLoader\dl_win32.xs
1047
42e07562
MHM
1048MakePPPort: $(MINIPERL) $(CONFIGPM)
1049 $(MINIPERL) -I..\lib ..\mkppport
1050
1051MakePPPort_clean:
1052 -if exist $(MINIPERL) $(MINIPERL) -I..\lib ..\mkppport --clean
1053
9dcb9602 1054#-------------------------------------------------------------------------------
9e42cd94 1055Extensions: buildext.pl $(PERLDEP) $(CONFIGPM)
a5ca303d 1056 $(XCOPY) ..\*.h $(COREDIR)\*.*
595589fa 1057 $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) --dynamic
78ff2d7b 1058 -if exist ext $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext --dynamic
595589fa 1059
a24cc0c0 1060Extensions_reonly: buildext.pl $(PERLDEP) $(CONFIGPM)
a5ca303d 1061 $(XCOPY) ..\*.h $(COREDIR)\*.*
a24cc0c0 1062 $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) --dynamic +re
78ff2d7b 1063 -if exist ext $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext --dynamic +re
a24cc0c0 1064
50a9d373 1065Extensions_static : buildext.pl $(PERLDEP) $(CONFIGPM)
a5ca303d 1066 $(XCOPY) ..\*.h $(COREDIR)\*.*
595589fa 1067 $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) --static
78ff2d7b 1068 -if exist ext $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext --static
9e7cf449 1069 $(MINIPERL) -I..\lib buildext.pl --list-static-libs > Extensions_static
9e42cd94
GS
1070
1071Extensions_clean:
1072 -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) clean
78ff2d7b 1073 -if exist $(MINIPERL) if exist ext $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext clean
9e42cd94 1074
b4dc1df6
SH
1075Extensions_realclean:
1076 -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) realclean
78ff2d7b 1077 -if exist $(MINIPERL) if exist ext $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext realclean
b4dc1df6 1078
9dcb9602 1079#-------------------------------------------------------------------------------
9e42cd94
GS
1080
1081doc: $(PERLEXE)
b4a41557 1082 $(PERLEXE) -I..\lib ..\installhtml --podroot=.. --htmldir=$(HTMLDIR) \
9e42cd94
GS
1083 --podpath=pod:lib:ext:utils --htmlroot="file://$(INST_HTML::=|)" \
1084 --libpod=perlfunc:perlguts:perlvar:perlrun:perlop --recurse
1085
b0b6bf2b
AT
1086# Note that this next section is parsed (and regenerated) by pod/buildtoc
1087# so please check that script before making structural changes here
1088
9e42cd94
GS
1089utils: $(PERLEXE) $(X2P)
1090 cd ..\utils
1091 $(MAKE) PERL=$(MINIPERL)
1092 cd ..\pod
4cb44f92 1093 copy ..\vms\perlvms.pod .\perlvms.pod
b0b6bf2b
AT
1094 copy ..\README.aix ..\pod\perlaix.pod
1095 copy ..\README.amiga ..\pod\perlamiga.pod
1096 copy ..\README.apollo ..\pod\perlapollo.pod
1097 copy ..\README.beos ..\pod\perlbeos.pod
1098 copy ..\README.bs2000 ..\pod\perlbs2000.pod
1099 copy ..\README.ce ..\pod\perlce.pod
1100 copy ..\README.cn ..\pod\perlcn.pod
1101 copy ..\README.cygwin ..\pod\perlcygwin.pod
1102 copy ..\README.dgux ..\pod\perldgux.pod
1103 copy ..\README.dos ..\pod\perldos.pod
1104 copy ..\README.epoc ..\pod\perlepoc.pod
1105 copy ..\README.freebsd ..\pod\perlfreebsd.pod
9f968a8d 1106 copy ..\README.haiku ..\pod\perlhaiku.pod
b0b6bf2b
AT
1107 copy ..\README.hpux ..\pod\perlhpux.pod
1108 copy ..\README.hurd ..\pod\perlhurd.pod
1109 copy ..\README.irix ..\pod\perlirix.pod
1110 copy ..\README.jp ..\pod\perljp.pod
1111 copy ..\README.ko ..\pod\perlko.pod
6477b319 1112 copy ..\README.linux ..\pod\perllinux.pod
b0b6bf2b
AT
1113 copy ..\README.machten ..\pod\perlmachten.pod
1114 copy ..\README.macos ..\pod\perlmacos.pod
1115 copy ..\README.macosx ..\pod\perlmacosx.pod
1116 copy ..\README.mint ..\pod\perlmint.pod
1117 copy ..\README.mpeix ..\pod\perlmpeix.pod
1118 copy ..\README.netware ..\pod\perlnetware.pod
b0846812 1119 copy ..\README.openbsd ..\pod\perlopenbsd.pod
b0b6bf2b
AT
1120 copy ..\README.os2 ..\pod\perlos2.pod
1121 copy ..\README.os390 ..\pod\perlos390.pod
1122 copy ..\README.os400 ..\pod\perlos400.pod
1123 copy ..\README.plan9 ..\pod\perlplan9.pod
1124 copy ..\README.qnx ..\pod\perlqnx.pod
2f08ed66 1125 copy ..\README.riscos ..\pod\perlriscos.pod
b0b6bf2b 1126 copy ..\README.solaris ..\pod\perlsolaris.pod
27da23d5 1127 copy ..\README.symbian ..\pod\perlsymbian.pod
b0b6bf2b
AT
1128 copy ..\README.tru64 ..\pod\perltru64.pod
1129 copy ..\README.tw ..\pod\perltw.pod
1130 copy ..\README.uts ..\pod\perluts.pod
1131 copy ..\README.vmesa ..\pod\perlvmesa.pod
1132 copy ..\README.vms ..\pod\perlvms.pod
1133 copy ..\README.vos ..\pod\perlvos.pod
1134 copy ..\README.win32 ..\pod\perlwin32.pod
7120b314 1135 copy ..\pod\perl5110delta.pod ..\pod\perldelta.pod
9e42cd94
GS
1136 $(MAKE) -f ..\win32\pod.mak converters
1137 cd ..\lib
1138 $(PERLEXE) lib_pm.PL
1139 cd ..\win32
1140 $(PERLEXE) $(PL2BAT) $(UTILS)
1141
b0b6bf2b
AT
1142# Note that the pod cleanup in this next section is parsed (and regenerated
1143# by pod/buildtoc so please check that script before making changes here
1144
b4dc1df6 1145distclean: realclean
9e42cd94 1146 -del /f $(MINIPERL) $(PERLEXE) $(PERLDLL) $(GLOBEXE) \
4e036e4b
VK
1147 $(PERLIMPLIB) ..\miniperl.lib $(MINIMOD) \
1148 $(PERLEXESTATIC) $(PERLSTATICLIB)
9e42cd94 1149 -del /f *.def *.map
47ef3394 1150 -del /f $(DYNALOADER).c
9e42cd94 1151 -del /f $(EXTDIR)\DynaLoader\dl_win32.xs
ca67812f
SH
1152 -del /f $(EXTDIR)\DynaLoader\DynaLoader.pm
1153 -del /f $(EXTDIR)\DynaLoader\XSLoader.pm
1154 -del /f $(LIBDIR)\Encode.pm $(LIBDIR)\encoding.pm $(LIBDIR)\Errno.pm
1155 -del /f $(LIBDIR)\Config.pod $(LIBDIR)\POSIX.pod $(LIBDIR)\threads.pm
9e42cd94 1156 -del /f $(LIBDIR)\.exists $(LIBDIR)\attrs.pm $(LIBDIR)\DynaLoader.pm
b4dc1df6 1157 -del /f $(LIBDIR)\XSLoader.pm $(LIBDIR)\lib.pm
9e42cd94
GS
1158 -del /f $(LIBDIR)\Fcntl.pm $(LIBDIR)\IO.pm $(LIBDIR)\Opcode.pm
1159 -del /f $(LIBDIR)\ops.pm $(LIBDIR)\Safe.pm
1160 -del /f $(LIBDIR)\SDBM_File.pm $(LIBDIR)\Socket.pm $(LIBDIR)\POSIX.pm
1161 -del /f $(LIBDIR)\B.pm $(LIBDIR)\O.pm $(LIBDIR)\re.pm
9e42cd94 1162 -del /f $(LIBDIR)\Devel\Peek.pm $(LIBDIR)\Devel\DProf.pm
ca67812f 1163 -del /f $(LIBDIR)\Devel\PPPort.pm
9e42cd94
GS
1164 -del /f $(LIBDIR)\File\Glob.pm
1165 -del /f $(LIBDIR)\Storable.pm
9e42cd94 1166 -del /f $(LIBDIR)\Digest\MD5.pm
59717686 1167 -del /f $(LIBDIR)\Digest\SHA.pm
ca67812f 1168 -del /f $(LIBDIR)\PerlIO\encoding.pm
e934609f
JH
1169 -del /f $(LIBDIR)\PerlIO\scalar.pm
1170 -del /f $(LIBDIR)\PerlIO\via.pm
ca67812f 1171 -del /f $(LIBDIR)\Sys\Hostname.pm
ca67812f 1172 -del /f $(LIBDIR)\threads\shared.pm
9e42cd94 1173 -del /f $(LIBDIR)\Time\HiRes.pm
9e42cd94 1174 -del /f $(LIBDIR)\Unicode\Normalize.pm
4e74047c 1175 -del /f $(LIBDIR)\Math\BigInt\FastCalc.pm
b4ad57f4 1176 -del /f $(LIBDIR)\Win32.pm
37ca3c28 1177 -del /f $(LIBDIR)\Win32CORE.pm
00701878
SH
1178 -del /f $(LIBDIR)\Win32API\File.pm
1179 -del /f $(LIBDIR)\Win32API\File\cFile.pc
9e42cd94 1180 -if exist $(LIBDIR)\B rmdir /s /q $(LIBDIR)\B
46ffdcf0 1181 -if exist $(LIBDIR)\Compress rmdir /s /q $(LIBDIR)\Compress
9e42cd94 1182 -if exist $(LIBDIR)\Data rmdir /s /q $(LIBDIR)\Data
ca67812f 1183 -if exist $(LIBDIR)\Encode rmdir /s /q $(LIBDIR)\Encode
9e42cd94 1184 -if exist $(LIBDIR)\Filter\Util rmdir /s /q $(LIBDIR)\Filter\Util
96c33d98 1185 -if exist $(LIBDIR)\Hash rmdir /s /q $(LIBDIR)\Hash
c146e560
NC
1186 -if exist $(LIBDIR)\App rmdir /s /q $(LIBDIR)\App
1187 -if exist $(LIBDIR)\Module\Pluggable rmdir /s /q $(LIBDIR)\Module\Pluggable
1188 -if exist $(LIBDIR)\TAP rmdir /s /q $(LIBDIR)\TAP
b2685f0c 1189 -if exist $(LIBDIR)\mro rmdir /s /q $(LIBDIR)\mro
69f57184 1190 -if exist $(LIBDIR)\IO\Compress rmdir /s /q $(LIBDIR)\IO\Compress
69f57184 1191 -if exist $(LIBDIR)\IO\Socket rmdir /s /q $(LIBDIR)\IO\Socket
69f57184 1192 -if exist $(LIBDIR)\IO\Uncompress rmdir /s /q $(LIBDIR)\IO\Uncompress
69f57184 1193 -if exist $(LIBDIR)\List rmdir /s /q $(LIBDIR)\List
69f57184 1194 -if exist $(LIBDIR)\MIME rmdir /s /q $(LIBDIR)\MIME
849a608a 1195 -if exist $(LIBDIR)\re rmdir /s /q $(LIBDIR)\re
9e42cd94 1196 -if exist $(LIBDIR)\Scalar rmdir /s /q $(LIBDIR)\Scalar
6c4b87ea 1197 -if exist $(LIBDIR)\Sys rmdir /s /q $(LIBDIR)\Sys
6c4b87ea 1198 -if exist $(LIBDIR)\threads rmdir /s /q $(LIBDIR)\threads
9e42cd94 1199 -if exist $(LIBDIR)\XS rmdir /s /q $(LIBDIR)\XS
00701878 1200 -if exist $(LIBDIR)\Win32API rmdir /s /q $(LIBDIR)\Win32API
64ab118f 1201 -cd $(PODDIR) && del /f *.html *.bat podchecker \
9e42cd94 1202 perlaix.pod perlamiga.pod perlapollo.pod perlbeos.pod \
b0b6bf2b 1203 perlbs2000.pod perlce.pod perlcn.pod perlcygwin.pod \
1400179b 1204 perldelta.pod perldgux.pod perldos.pod perlepoc.pod \
9f968a8d
LB
1205 perlfreebsd.pod perlhaiku.pod perlhpux.pod perlhurd.pod \
1206 perlirix.pod perljp.pod perlko.pod perllinux.pod \
1207 perlmachten.pod perlmacos.pod perlmacosx.pod perlmint.pod \
1208 perlmpeix.pod perlnetware.pod perlopenbsd.pod perlos2.pod \
1209 perlos390.pod perlos400.pod perlplan9.pod perlqnx.pod \
1210 perlriscos.pod perlsolaris.pod perlsymbian.pod perltru64.pod \
1211 perltw.pod perluts.pod perlvmesa.pod perlvms.pod perlvms.pod \
1212 perlvos.pod perlwin32.pod \
b0b6bf2b 1213 pod2html pod2latex pod2man pod2text pod2usage \
9e42cd94 1214 podchecker podselect
ca67812f 1215 -cd ..\utils && del /f h2ph splain perlbug pl2pm c2ph pstruct h2xs \
de125441 1216 perldoc perlivp dprofpp libnetcfg enc2xs piconv cpan *.bat \
6aaee015 1217 xsubpp instmodsh prove ptar ptardiff cpanp-run-perl cpanp cpan2dist shasum corelist config_data
ca67812f 1218 -cd ..\x2p && del /f find2perl s2p psed *.bat
4e036e4b
VK
1219 -del /f ..\config.sh ..\splittree.pl perlmain.c dlutils.c config.h.new \
1220 perlmainst.c
9e42cd94
GS
1221 -del /f $(CONFIGPM)
1222 -del /f bin\*.bat
322fd642 1223 -del /f perllibst.h
ec25c072 1224 -del /f $(PERLEXE_ICO) perl.base
ca67812f
SH
1225 -cd .. && del /s *.lib *.map *.pdb *.ilk *.bs *$(o) .exists pm_to_blib
1226 -cd $(EXTDIR) && del /s *.def Makefile Makefile.old
9e42cd94 1227 -if exist $(AUTODIR) rmdir /s /q $(AUTODIR)
9e42cd94 1228 -if exist $(COREDIR) rmdir /s /q $(COREDIR)
b4a41557
SH
1229 -if exist pod2htmd.tmp del pod2htmd.tmp
1230 -if exist pod2htmi.tmp del pod2htmi.tmp
1231 -if exist $(HTMLDIR) rmdir /s /q $(HTMLDIR)
0279961e 1232 -del /f ..\t\test_state
9e42cd94
GS
1233
1234install : all installbare installhtml
1235
1236installbare : utils
1237 $(PERLEXE) ..\installperl
1238 if exist $(WPERLEXE) $(XCOPY) $(WPERLEXE) $(INST_BIN)\*.*
5548433c 1239 if exist $(PERLEXESTATIC) $(XCOPY) $(PERLEXESTATIC) $(INST_BIN)\*.*
9e42cd94 1240 $(XCOPY) $(GLOBEXE) $(INST_BIN)\*.*
ec25c072
SH
1241 if exist ..\perl*.pdb $(XCOPY) ..\perl*.pdb $(INST_BIN)\*.*
1242 if exist ..\x2p\a2p.pdb $(XCOPY) ..\x2p\a2p.pdb $(INST_BIN)\*.*
9e42cd94
GS
1243 $(XCOPY) bin\*.bat $(INST_SCRIPT)\*.*
1244
1245installhtml : doc
b4a41557 1246 $(RCOPY) $(HTMLDIR)\*.* $(INST_HTML)\*.*
9e42cd94
GS
1247
1248inst_lib : $(CONFIGPM)
1249 copy splittree.pl ..
1250 $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR)
1251 $(RCOPY) ..\lib $(INST_LIB)\*.*
1252
ca12659b 1253$(UNIDATAFILES) : $(MINIPERL) $(CONFIGPM) ..\lib\unicore\mktables
27a8011f 1254 cd ..\lib\unicore && \
6ae7e459 1255 ..\$(MINIPERL) -I.. mktables -check $@ $(FIRSTUNIFILE)
ca12659b
NC
1256
1257minitest : $(MINIPERL) $(GLOBEXE) $(CONFIGPM) utils $(UNIDATAFILES)
6c85d12e
SH
1258 $(XCOPY) $(MINIPERL) ..\t\$(NULL)
1259 if exist ..\t\perl.exe del /f ..\t\perl.exe
1260 rename ..\t\miniperl.exe perl.exe
9e42cd94
GS
1261 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1262 attrib -r ..\t\*.*
6c85d12e
SH
1263 cd ..\t && \
1264 $(MINIPERL) -I..\lib harness base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t
9e42cd94 1265
1266ad8f 1266test-prep : all utils unpack_files
9e42cd94
GS
1267 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1268 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1269 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1270
1271test : test-prep
1272 cd ..\t
89087c85 1273 $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES)
9e42cd94
GS
1274 cd ..\win32
1275
1266ad8f
YO
1276unpack_files:
1277 $(MINIPERL) -I..\lib ..\uupacktool.pl -u -d .. -m
1278
1279cleanup_unpacked_files:
c52ab9a3 1280 -if exist $(MINIPERL) $(MINIPERL) -I..\lib ..\uupacktool.pl -c -d .. -m
1266ad8f 1281
6ae7e459
YO
1282test-reonly : reonly utils
1283 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1284 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1285 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1286 cd ..\t
8c823cd6 1287 $(PERLEXE) -I..\lib harness $(OPT) -re \bpat\b \breg \bre\b \bsubst \brxcode $(EXTRA)
6ae7e459 1288 cd ..\win32
7bcddc65 1289
c900f745 1290regen :
7bcddc65
YO
1291 cd ..
1292 regen.pl
1293 cd win32
1294
9e42cd94
GS
1295test-notty : test-prep
1296 set PERL_SKIP_TTY_TEST=1
1297 cd ..\t
89087c85 1298 $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES)
9e42cd94
GS
1299 cd ..\win32
1300
b4a93add
NK
1301_test :
1302 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1303 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1304 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1305 cd ..\t
89087c85 1306 $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES)
b4a93add
NK
1307 cd ..\win32
1308
b4dc1df6 1309_clean :
9e42cd94
GS
1310 -@$(DEL) miniperlmain$(o)
1311 -@$(DEL) $(MINIPERL)
1312 -@$(DEL) perlglob$(o)
1313 -@$(DEL) perlmain$(o)
4e036e4b 1314 -@$(DEL) perlmainst$(o)
9e42cd94
GS
1315 -@$(DEL) config.w32
1316 -@$(DEL) config.h
1317 -@$(DEL) $(GLOBEXE)
1318 -@$(DEL) $(PERLEXE)
1319 -@$(DEL) $(WPERLEXE)
4e036e4b
VK
1320 -@$(DEL) $(PERLEXESTATIC)
1321 -@$(DEL) $(PERLSTATICLIB)
9e42cd94
GS
1322 -@$(DEL) $(PERLDLL)
1323 -@$(DEL) $(CORE_OBJ)
202d1001 1324 -@$(DEL) $(GENUUDMAP) $(GENUUDMAP_OBJ) $(UUDMAP_H)
9e42cd94 1325 -if exist $(MINIDIR) rmdir /s /q $(MINIDIR)
27a8011f 1326 -if exist $(UNIDATADIR1) rmdir /s /q $(UNIDATADIR1)
27a8011f 1327 -if exist $(UNIDATADIR2) rmdir /s /q $(UNIDATADIR2)
ca12659b 1328 -@$(DEL) $(UNIDATAFILES)
27a8011f 1329 -@$(DEL) $(WIN32_OBJ)
9e42cd94
GS
1330 -@$(DEL) $(DLL_OBJ)
1331 -@$(DEL) $(X2P_OBJ)
1332 -@$(DEL) ..\*$(o) ..\*.lib ..\*.exp *$(o) *.lib *.exp *.res
1333 -@$(DEL) ..\t\*.exe ..\t\*.dll ..\t\*.bat
1334 -@$(DEL) ..\x2p\*.exe ..\x2p\*.bat
1335 -@$(DEL) *.ilk
1336 -@$(DEL) *.pdb
9e7cf449 1337 -@$(DEL) Extensions_static
9e42cd94 1338
1266ad8f
YO
1339_preclean : cleanup_unpacked_files
1340
1341clean : _preclean Extensions_clean _clean
b4dc1df6 1342
1266ad8f 1343realclean : _preclean Extensions_realclean MakePPPort_clean _clean
b4dc1df6 1344
9e42cd94
GS
1345# Handy way to run perlbug -ok without having to install and run the
1346# installed perlbug. We don't re-run the tests here - we trust the user.
1347# Please *don't* use this unless all tests pass.
1348# If you want to report test failures, use "nmake nok" instead.
1349ok: utils
1350 $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)"
1351
1352okfile: utils
1353 $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)" -F perl.ok
1354
1355nok: utils
1356 $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)"
1357
1358nokfile: utils
1359 $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)" -F perl.nok