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