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