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