2 # Makefile to build perl on Windows using Microsoft NMAKE.
4 # Microsoft Visual C++ 6.0 or later
5 # Windows SDK 64-bit compiler and tools
7 # This is set up to build a perl.exe that runs off a shared library
8 # (perl523.dll). Also makes individual DLLs for the XS extensions.
12 ## Make sure you read README.win32 *before* you mess with anything here!
16 ## Build configuration. Edit the values below to suit your needs.
20 # Set these to wherever you want "nmake install" to put your
24 INST_TOP = $(INST_DRV)\perl
27 # Uncomment if you want to build a 32-bit Perl using a 32-bit compiler
28 # on a 64-bit version of Windows.
33 # Comment this out if you DON'T want your perl installation to be versioned.
34 # This means that the new installation will overwrite any files from the
35 # old installation at the same INST_TOP location. Leaving it enabled is
36 # the safest route, as perl adds the extra version directory to all the
37 # locations it installs files to. If you disable it, an alternative
38 # versioned installation can be obtained by setting INST_TOP above to a
39 # path that includes an arbitrary version string.
44 # Comment this out if you DON'T want your perl installation to have
45 # architecture specific components. This means that architecture-
46 # specific files will be installed along with the architecture-neutral
47 # files. Leaving it enabled is safer and more flexible, in case you
48 # want to build multiple flavors of perl and install them together in
49 # the same location. Commenting it out gives you a simpler
50 # installation that is easier to understand for beginners.
52 #INST_ARCH = \$(ARCHNAME)
55 # Uncomment this if you want perl to run
56 # $Config{sitelibexp}\sitecustomize.pl
57 # before anything else. This script can then be set up, for example,
58 # to add additional entries to @INC.
60 #USE_SITECUST = define
63 # uncomment to enable multiple interpreters. This is needed for fork()
64 # emulation and for thread support, and is auto-enabled by USE_IMP_SYS
65 # and USE_ITHREADS below.
70 # Interpreter cloning/threads; now reasonably complete.
71 # This should be enabled to get the fork() emulation. This needs (and
72 # will auto-enable) USE_MULTI above.
77 # uncomment to enable the implicit "host" layer for all system calls
78 # made by perl. This is also needed to get fork(). This needs (and
79 # will auto-enable) USE_MULTI above.
84 # Comment this out if you don't want to enable large file support for
85 # some reason. Should normally only be changed to maintain compatibility
86 # with an older release of perl.
88 USE_LARGE_FILES = define
91 # Uncomment this if you're building a 32-bit perl and want 64-bit integers.
92 # (If you're building a 64-bit perl then you will have 64-bit integers whether
93 # or not this is uncommented.)
94 # Note: This option is not supported in 32-bit MSVC60 builds.
96 #USE_64_BIT_INT = define
99 # uncomment exactly one of the following
101 # Visual C++ 6.x (aka Visual C++ 98)
103 # Visual C++ .NET 2002/2003 (aka Visual C++ 7.x) (full version)
105 # Visual C++ Toolkit 2003 (aka Visual C++ 7.x) (free command-line tools)
107 # Windows Server 2003 SP1 Platform SDK (April 2005)
109 # Visual C++ 2005 (aka Visual C++ 8.x) (full version)
111 # Visual C++ 2005 Express Edition (aka Visual C++ 8.x) (free version)
113 # Visual C++ 2008 (aka Visual C++ 9.x) (full version)
115 # Visual C++ 2008 Express Edition (aka Visual C++ 9.x) (free version)
117 # Visual C++ 2010 (aka Visual C++ 10.x) (full version)
119 # Visual C++ 2010 Express Edition (aka Visual C++ 10.x) (free version)
120 #CCTYPE = MSVC100FREE
121 # Visual C++ 2012 (aka Visual C++ 11.x) (full version)
123 # Visual C++ 2012 Express Edition (aka Visual C++ 11.x) (free version)
124 #CCTYPE = MSVC110FREE
125 # Visual C++ 2013 (aka Visual C++ 12.x) (full version)
127 # Visual C++ 2013 Express Edition (aka Visual C++ 12.x) (free version)
128 #CCTYPE = MSVC120FREE
131 # If you are using Intel C++ Compiler uncomment this
136 # Uncomment this if you want to build everything in C++ mode
138 #USE_CPLUSPLUS = define
141 # uncomment next line if you want debug version of perl (big/slow)
142 # If not enabled, we automatically try to use maximum optimization
143 # with all compilers that are known to have a working optimizer.
145 # You can also set CFG = DebugSymbols for a slightly smaller/faster
146 # debug build without the special debugging code in perl which is
147 # enabled via -DDEBUGGING;
149 # or you can set CFG = DebugFull for an even fuller (bigger/slower)
150 # debug build using the debug version of the CRT, and enabling VC++
151 # debug features such as extra assertions and invalid parameter warnings
152 # in perl and CRT code via -D_DEBUG. (Note that the invalid parameter
153 # handler does get triggered from time to time in this configuration,
154 # which causes warnings to be printed on STDERR, which in turn causes a
155 # few tests to fail.)
160 # uncomment to enable linking with setargv.obj under the Visual C
161 # compiler. Setting this options enables perl to expand wildcards in
162 # arguments, but it may be harder to use alternate methods like
163 # File::DosGlob that are more powerful. This option is supported only with
166 #USE_SETARGV = define
169 # set this if you wish to use perl's malloc
170 # WARNING: Turning this on/off WILL break binary compatibility with extensions
171 # you may have compiled with/without it. Be prepared to recompile all
172 # extensions if you change the default. Currently, this cannot be enabled
173 # if you ask for USE_IMP_SYS above.
175 #PERL_MALLOC = define
178 # set this to enable debugging mstats
179 # This must be enabled to use the Devel::Peek::mstat() function. This cannot
180 # be enabled without PERL_MALLOC as well.
182 #DEBUG_MSTATS = define
185 # set this to additionally provide a statically linked perl-static.exe.
186 # Note that dynamic loading will not work with this perl, so you must
187 # include required modules statically using the STATIC_EXT or ALL_STATIC
188 # variables below. A static library perl523s.lib will also be created.
189 # Ordinary perl.exe is not affected by this option.
191 #BUILD_STATIC = define
194 # in addition to BUILD_STATIC the option ALL_STATIC makes *every*
195 # extension get statically built
196 # This will result in a very large perl executable, but the main purpose
197 # is to have proper linking set so as to be able to create miscellaneous
198 # executables with different built-in extensions
204 # set the install locations of the compiler include/libraries
205 # Running VCVARS32.BAT is *required* when using Visual C.
206 # Some versions of Visual C don't define MSVCDIR in the environment,
207 # so you may have to set CCHOME explicitly (spaces in the path name should
211 CCINCDIR = $(CCHOME)\include
212 CCLIBDIR = $(CCHOME)\lib
215 # Additional compiler flags can be specified here.
217 BUILDOPT = $(BUILDOPTEXTRA)
220 # This should normally be disabled. Enabling it will disable the File::Glob
221 # implementation of CORE::glob.
223 #BUILDOPT = $(BUILDOPT) -DPERL_EXTERNAL_GLOB
226 # Perl needs to read scripts in text mode so that the DATA filehandle
227 # works correctly with seek() and tell(), or around auto-flushes of
228 # all filehandles (e.g. by system(), backticks, fork(), etc).
230 # The current version on the ByteLoader module on CPAN however only
231 # works if scripts are read in binary mode. But before you disable text
232 # mode script reading (and break some DATA filehandle functionality)
233 # please check first if an updated ByteLoader isn't available on CPAN.
235 BUILDOPT = $(BUILDOPT) -DPERL_TEXTMODE_SCRIPTS
238 # specify semicolon-separated list of extra directories that modules will
239 # look for libraries (spaces in path names need not be quoted)
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)
250 ## Build configuration ends.
253 ##################### CHANGE THESE ONLY IF YOU MUST #####################
255 !IF "$(USE_IMP_SYS)" == "define"
260 !IF "$(PERL_MALLOC)" == ""
265 !IF "$(DEBUG_MSTATS)" == ""
269 !IF "$(DEBUG_MSTATS)" == "define"
270 BUILDOPT = $(BUILDOPT) -DPERL_DEBUGGING_MSTATS
273 !IF "$(USE_SITECUST)" == ""
277 !IF "$(USE_MULTI)" == ""
281 !IF "$(USE_ITHREADS)" == ""
285 !IF "$(USE_IMP_SYS)" == ""
289 !IF "$(USE_LARGE_FILES)" == ""
290 USE_LARGE_FILES = undef
293 !IF "$(USE_64_BIT_INT)" == ""
294 USE_64_BIT_INT = undef
297 !IF "$(USE_IMP_SYS)$(USE_MULTI)" == "defineundef"
301 !IF "$(USE_ITHREADS)$(USE_MULTI)" == "defineundef"
305 !IF "$(USE_SITECUST)" == "define"
306 BUILDOPT = $(BUILDOPT) -DUSE_SITECUSTOMIZE
309 !IF "$(USE_MULTI)" != "undef"
310 BUILDOPT = $(BUILDOPT) -DPERL_IMPLICIT_CONTEXT
313 !IF "$(USE_IMP_SYS)" != "undef"
314 BUILDOPT = $(BUILDOPT) -DPERL_IMPLICIT_SYS
317 !IF "$(PROCESSOR_ARCHITECTURE)" == ""
318 PROCESSOR_ARCHITECTURE = x86
322 # When we are running from a 32bit cmd.exe on AMD64 then
323 # PROCESSOR_ARCHITECTURE is set to x86 and PROCESSOR_ARCHITEW6432
325 !IF "$(PROCESSOR_ARCHITEW6432)" != ""
326 PROCESSOR_ARCHITECTURE = $(PROCESSOR_ARCHITEW6432)
329 !IF "$(PROCESSOR_ARCHITECTURE)" == "AMD64" || "$(PROCESSOR_ARCHITECTURE)" == "IA64"
337 !IF "$(WIN64)" == "define"
338 USE_64_BIT_INT = define
341 # Treat 64-bit MSVC60 (doesn't really exist) as SDK2003SP1 because
342 # both link against MSVCRT.dll (which is part of Windows itself) and
343 # not against a compiler specific versioned runtime.
344 !IF "$(WIN64)" == "define" && "$(CCTYPE)" == "MSVC60"
348 # Disable the 64-bit-int option for (32-bit) MSVC60 builds since that compiler
349 # does not support it.
350 !IF "$(CCTYPE)" == "MSVC60"
351 !UNDEF USE_64_BIT_INT
352 USE_64_BIT_INT = undef
355 # Most relevant compiler-specific options fall into two groups:
356 # either pre-MSVC80 or MSVC80 onwards, so define a macro for this.
357 !IF "$(CCTYPE)" == "MSVC60" || \
358 "$(CCTYPE)" == "MSVC70" || "$(CCTYPE)" == "MSVC70FREE"
364 ARCHITECTURE = $(PROCESSOR_ARCHITECTURE)
365 !IF "$(ARCHITECTURE)" == "AMD64"
368 !IF "$(ARCHITECTURE)" == "IA64"
372 !IF "$(USE_MULTI)" == "define"
373 ARCHNAME = MSWin32-$(ARCHITECTURE)-multi
375 ARCHNAME = MSWin32-$(ARCHITECTURE)-perlio
378 !IF "$(USE_ITHREADS)" == "define"
379 ARCHNAME = $(ARCHNAME)-thread
382 !IF "$(WIN64)" != "define"
383 !IF "$(USE_64_BIT_INT)" == "define"
384 ARCHNAME = $(ARCHNAME)-64int
388 # All but the free version of VC++ 7.x can load DLLs on demand. Makes the test
389 # suite run in about 10% less time.
390 !IF "$(CCTYPE)" != "MSVC70FREE"
391 DELAYLOAD = -DELAYLOAD:ws2_32.dll delayimp.lib
394 # Visual C++ 2005 and 2008 (VC++ 8.x and 9.x) create manifest files for EXEs and
395 # DLLs. These either need copying everywhere with the binaries, or else need
396 # embedding in them otherwise MSVCR80.dll or MSVCR90.dll won't be found. For
397 # simplicity, embed them if they exist (and delete them afterwards so that they
398 # don't get installed too).
399 EMBED_EXE_MANI = if exist $@.manifest mt -nologo -manifest $@.manifest -outputresource:$@;1 && \
400 if exist $@.manifest del $@.manifest
401 EMBED_DLL_MANI = if exist $@.manifest mt -nologo -manifest $@.manifest -outputresource:$@;2 && \
402 if exist $@.manifest del $@.manifest
404 ARCHDIR = ..\lib\$(ARCHNAME)
405 COREDIR = ..\lib\CORE
406 AUTODIR = ..\lib\auto
415 INST_SCRIPT = $(INST_TOP)$(INST_VER)\bin
416 INST_BIN = $(INST_SCRIPT)$(INST_ARCH)
417 INST_LIB = $(INST_TOP)$(INST_VER)\lib
418 INST_ARCHLIB = $(INST_LIB)$(INST_ARCH)
419 INST_COREDIR = $(INST_ARCHLIB)\CORE
420 INST_HTML = $(INST_TOP)$(INST_VER)\html
423 # Programs to compile, build .lib files and link
426 !IF "$(__ICC)" != "define"
433 LIB32 = $(LINK32) -lib
440 INCLUDES = -I$(COREDIR) -I.\include -I. -I..
441 #PCHFLAGS = -Fpc:\temp\vcmoduls.pch -YX
442 DEFINES = -DWIN32 -D_CONSOLE -DNO_STRICT
443 LOCDEFS = -DPERLDLL -DPERL_CORE
448 !IF "$(CFG)" == "Debug"
449 OPTIMIZE = -Od -MD -Zi -DDEBUGGING
452 !IF "$(CFG)" == "DebugSymbols"
453 OPTIMIZE = -Od -MD -Zi
456 !IF "$(CFG)" == "DebugFull"
458 OPTIMIZE = -Od -MDd -Zi -D_DEBUG -DDEBUGGING
461 # -O1 yields smaller code, which turns out to be faster than -O2 on x86 and x64
462 OPTIMIZE = -O1 -MD -Zi -DNDEBUG
463 # we enable debug symbols in release builds also
464 LINK_DBG = -debug -opt:ref,icf
465 # you may want to enable this if you want COFF symbols in the executables
466 # in addition to the PDB symbols. The default Dr. Watson that ships with
467 # Windows can use the the former but not latter. The free WinDbg can be
468 # installed to get better stack traces from just the PDB symbols, so we
469 # avoid the bloat of COFF symbols by default.
470 #LINK_DBG = $(LINK_DBG) -debugtype:both
471 ! IF "$(CCTYPE)" != "MSVC60"
472 # enable Whole Program Optimizations (WPO) and Link Time Code Generation (LTCG)
473 OPTIMIZE = $(OPTIMIZE) -GL
474 LINK_DBG = $(LINK_DBG) -ltcg
481 !IF "$(WIN64)" == "define"
482 DEFINES = $(DEFINES) -DWIN64 -DCONSERVATIVE
483 OPTIMIZE = $(OPTIMIZE) -fp:precise
486 # For now, silence warnings from VC++ 8.x onwards about "unsafe" CRT functions
487 # and POSIX CRT function names being deprecated.
488 !IF "$(PREMSVC80)" == "undef"
489 DEFINES = $(DEFINES) -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE
492 # In VS 2005 (VC++ 8.0) Microsoft changes time_t from 32-bit to
493 # 64-bit, even in 32-bit mode. It also provides the _USE_32BIT_TIME_T
494 # preprocessor option to revert back to the old functionality for
495 # backward compatibility. We define this symbol here for older 32-bit
496 # compilers only (which aren't using it at all) for the sole purpose
497 # of getting it into $Config{ccflags}. That way if someone builds
498 # Perl itself with e.g. VC6 but later installs an XS module using VC8
499 # the time_t types will still be compatible.
500 !IF "$(WIN64)" == "undef"
501 ! IF "$(PREMSVC80)" == "define"
502 BUILDOPT = $(BUILDOPT) -D_USE_32BIT_TIME_T
507 oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.lib \
508 comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \
509 netapi32.lib uuid.lib ws2_32.lib mpr.lib winmm.lib \
510 version.lib odbc32.lib odbccp32.lib comctl32.lib
512 # Avoid __intel_new_proc_init link error for libircmt.
513 # libmmd is /MD equivelent, other variants exist.
514 # libmmd is Intel C's math addon funcs to MS CRT, contains long doubles, C99,
515 # and optimized C89 funcs
516 !IF "$(__ICC)" == "define"
517 LIBBASEFILES = $(LIBBASEFILES) libircmt.lib libmmd.lib
520 # The 64 bit Windows Server 2003 SP1 SDK compilers link against MSVCRT.dll, which
521 # doesn't include the buffer overrun verification code used by the /GS switch.
522 # Since the code links against libraries that are compiled with /GS, this
523 # "security cookie verification" code must be included via bufferoverflow.lib.
524 !IF "$(WIN64)" == "define" && "$(CCTYPE)" == "SDK2003SP1"
525 LIBBASEFILES = $(LIBBASEFILES) bufferoverflowU.lib
528 LIBFILES = $(LIBBASEFILES) $(LIBC)
530 #EXTRACFLAGS = -nologo -GF -W4 -wd4127 -wd4706
531 EXTRACFLAGS = -nologo -GF -W3
532 !IF "$(__ICC)" == "define"
533 EXTRACFLAGS = $(EXTRACFLAGS) -Qstd=c99
535 !IF "$(USE_CPLUSPLUS)" == "define"
536 EXTRACFLAGS = $(EXTRACFLAGS) $(CXX_FLAG)
538 CFLAGS = $(EXTRACFLAGS) $(INCLUDES) $(DEFINES) $(LOCDEFS) \
539 $(PCHFLAGS) $(OPTIMIZE)
540 LINK_FLAGS = -nologo -nodefaultlib $(LINK_DBG) \
541 -libpath:"$(INST_COREDIR)" \
542 -machine:$(PROCESSOR_ARCHITECTURE)
543 LIB_FLAGS = $(LIB_FLAGS) -nologo
547 CFLAGS_O = $(CFLAGS) $(BUILDOPT)
549 !IF "$(PREMSVC80)" == "undef"
550 LINK_FLAGS = $(LINK_FLAGS) "/manifestdependency:type='Win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'"
552 RSC_FLAGS = -DINCLUDE_MANIFEST
555 # For XP support in >= 2013, subsystem is always in Config.pm LINK_FLAGS
556 # else subsystem is only needed for EXE building, not XS DLL building
557 # Console vs GUI makes no difference for DLLs, so use default for cleaner
559 !IF "$(CCTYPE)" == "MSVC120" || "$(CCTYPE)" == "MSVC120FREE" \
560 || "$(CCTYPE)" == "MSVC150" || "$(CCTYPE)" == "MSVC150FREE"
561 ! IF "$(WIN64)" == "define"
562 LINK_FLAGS = $(LINK_FLAGS) -subsystem:console,"5.02"
564 LINK_FLAGS = $(LINK_FLAGS) -subsystem:console,"5.01"
569 PRIV_LINK_FLAGS = -subsystem:console
572 BLINK_FLAGS = $(PRIV_LINK_FLAGS) $(LINK_FLAGS)
574 #################### do not edit below this line #######################
575 ############# NO USER-SERVICEABLE PARTS BEYOND THIS POINT ##############
583 #clear the list, we dont support .cxx .bas .cbl .for .pas .f .f90
584 # .asm .cpp are not currently used but they are included for completeness
586 .SUFFIXES : .c $(o) .cpp .asm .dll .lib .exe .rc .res
589 $(CC) -c -I$(<D) $(CFLAGS_O) $(OBJOUT_FLAG)$@ $<
592 $(CC) -c -I$(<D) $(CFLAGS_O) -P $(OBJOUT_FLAG)$@ $<
598 $(LINK32) -dll -implib:$(*B).lib -def:$(*B).def \
599 -out:$@ $(BLINK_FLAGS) $(LIBFILES) $< $(LIBPERL)
603 $(RSC) -i.. $(RSC_FLAGS) $<
608 # makedef.pl must be updated if this changes, and this should normally
609 # only change when there is an incompatible revision of the public API.
610 PERLIMPLIB = ..\perl523.lib
611 PERLSTATICLIB = ..\perl523s.lib
612 PERLDLL = ..\perl523.dll
614 MINIPERL = ..\miniperl.exe
616 PERLEXE = ..\perl.exe
617 WPERLEXE = ..\wperl.exe
618 PERLEXESTATIC = ..\perl-static.exe
619 GLOBEXE = ..\perlglob.exe
620 CONFIGPM = ..\lib\Config.pm ..\lib\Config_heavy.pl
621 GENUUDMAP = ..\generate_uudmap.exe
622 !IF "$(BUILD_STATIC)" == "define" || "$(ALL_STATIC)" == "define"
628 # Unicode data files generated by mktables
629 FIRSTUNIFILE = ..\lib\unicore\Decomposition.pl
630 UNIDATAFILES = ..\lib\unicore\Decomposition.pl \
631 ..\lib\unicore\CombiningClass.pl ..\lib\unicore\Name.pl \
632 ..\lib\unicore\Heavy.pl ..\lib\unicore\mktables.lst \
633 ..\lib\unicore\UCD.pl ..\lib\unicore\Name.pm \
634 ..\lib\unicore\TestProp.pl
636 # Directories of Unicode data files generated by mktables
637 UNIDATADIR1 = ..\lib\unicore\To
638 UNIDATADIR2 = ..\lib\unicore\lib
640 PERLEXE_MANIFEST= .\perlexe.manifest
641 PERLEXE_ICO = .\perlexe.ico
642 PERLEXE_RES = .\perlexe.res
645 # Nominate a target which causes extensions to be re-built
646 # This used to be $(PERLEXE), but at worst it is the .dll that they depend
647 # on and really only the interface - i.e. the .def file used to export symbols
649 PERLDEP = perldll.def
651 PL2BAT = bin\pl2bat.pl
652 GLOBBAT = bin\perlglob.bat
675 ..\utils\zipdetails \
689 CFGSH_TMPL = config.vc
690 CFGH_TMPL = config_H.vc
692 XCOPY = xcopy /f /r /i /d /y
693 RCOPY = xcopy /f /r /i /e /d /y
740 EXTRACORE_SRC = $(EXTRACORE_SRC) perllib.c
742 !IF "$(PERL_MALLOC)" == "define"
743 EXTRACORE_SRC = $(EXTRACORE_SRC) ..\malloc.c
746 EXTRACORE_SRC = $(EXTRACORE_SRC) ..\perlio.c
792 .\include\sys\errno2.h \
793 .\include\sys\socket.h \
796 CORE_H = $(CORE_NOCFG_H) .\config.h ..\git_version.h
798 UUDMAP_H = ..\uudmap.h
799 BITCOUNT_H = ..\bitcount.h
800 MG_DATA_H = ..\mg_data.h
801 GENERATED_HEADERS = $(UUDMAP_H) $(BITCOUNT_H) $(MG_DATA_H)
803 MICROCORE_OBJ = $(MICROCORE_SRC:.c=.obj)
804 CORE_OBJ = $(MICROCORE_OBJ) $(EXTRACORE_SRC:.c=.obj)
805 WIN32_OBJ = $(WIN32_SRC:.c=.obj)
806 MINICORE_OBJ = $(MICROCORE_OBJ:..\=.\mini\) \
807 $(MINIDIR)\miniperlmain$(o) \
808 $(MINIDIR)\perlio$(o)
809 MINIWIN32_OBJ = $(WIN32_OBJ:.\=.\mini\)
810 MINI_OBJ = $(MINICORE_OBJ) $(MINIWIN32_OBJ)
811 DLL_OBJ = $(DYNALOADER)
812 GENUUDMAP_OBJ = $(GENUUDMAP:.exe=.obj)
814 PERLDLL_OBJ = $(CORE_OBJ)
815 PERLEXE_OBJ = perlmain$(o)
816 PERLEXEST_OBJ = perlmainst$(o)
818 PERLDLL_OBJ = $(PERLDLL_OBJ) $(WIN32_OBJ) $(DLL_OBJ)
820 !IF "$(USE_SETARGV)" != ""
821 SETARGV_OBJ = setargv$(o)
824 !IF "$(ALL_STATIC)" == "define"
825 # some exclusions, unfortunately, until fixed:
826 # - MakeMaker isn't capable enough for SDBM_File (small bug)
827 STATIC_EXT = * !SDBM_File
829 # specify static extensions here, for example:
830 # (be sure to include Win32CORE to load Win32 on demand)
831 #STATIC_EXT = Win32CORE Cwd Compress/Raw/Zlib
832 STATIC_EXT = Win32CORE
835 DYNALOADER = ..\DynaLoader$(o)
838 "INST_TOP=$(INST_TOP)" \
839 "INST_VER=$(INST_VER)" \
840 "INST_ARCH=$(INST_ARCH)" \
841 "archname=$(ARCHNAME)" \
844 "ccflags=$(EXTRACFLAGS) $(OPTIMIZE:"=\") $(DEFINES) $(BUILDOPT)" \
845 "usecplusplus=$(USE_CPLUSPLUS)" \
846 "cf_email=$(EMAIL)" \
847 "d_mymalloc=$(PERL_MALLOC)" \
849 "incpath=$(CCINCDIR:"=\")" \
850 "libperl=$(PERLIMPLIB:..\=)" \
851 "libpth=$(CCLIBDIR:"=\");$(EXTRALIBDIRS:"=\")" \
853 "make=$(MAKE_BARE)" \
854 "static_ext=$(STATIC_EXT)" \
855 "usethreads=$(USE_ITHREADS)" \
856 "useithreads=$(USE_ITHREADS)" \
857 "usemultiplicity=$(USE_MULTI)" \
858 "use64bitint=$(USE_64_BIT_INT)" \
859 "uselongdouble=undef" \
860 "uselargefiles=$(USE_LARGE_FILES)" \
861 "usesitecustomize=$(USE_SITECUST)" \
862 "LINK_FLAGS=$(LINK_FLAGS:"=\")" \
863 "optimize=$(OPTIMIZE:"=\")" \
870 all : .\config.h ..\git_version.h $(GLOBEXE) $(CONFIGPM) \
871 $(UNIDATAFILES) MakePPPort $(PERLEXE) Extensions_nonxs Extensions $(PERLSTATIC)
872 @echo Everything is up to date. '$(MAKE_BARE) test' to run test suite.
874 regnodes : ..\regnodes.h
876 ..\regcomp$(o) : ..\regnodes.h ..\regcharclass.h
878 ..\regexec$(o) : ..\regnodes.h ..\regcharclass.h
880 reonly : regnodes .\config.h ..\git_version.h $(GLOBEXE) $(CONFIGPM) \
881 $(UNIDATAFILES) $(PERLEXE) Extensions_reonly
882 @echo Perl and 're' are up to date.
884 static: $(PERLEXESTATIC)
886 #------------------------------------------------------------
888 $(GLOBEXE) : perlglob$(o)
889 $(LINK32) $(BLINK_FLAGS) $(LIBFILES) -out:$@ \
890 perlglob$(o) setargv$(o)
893 perlglob$(o) : perlglob.c
895 config.w32 : $(CFGSH_TMPL)
896 copy $(CFGSH_TMPL) config.w32
899 # Copy the template config.h and set configurables at the end of it
900 # as per the options chosen and compiler used.
901 # Note: This config.h is only used to build miniperl.exe anyway, but
902 # it's as well to have its options correct to be sure that it builds
903 # and so that it's "-V" options are correct for use by makedef.pl. The
904 # real config.h used to build perl.exe is generated from the top-level
905 # config_h.SH by config_h.PL (run by miniperl.exe).
907 .\config.h : $(CFGH_TMPL)
909 copy $(CFGH_TMPL) config.h
911 @echo #ifndef _config_h_footer_>>$@
912 @echo #define _config_h_footer_>>$@
913 @echo #undef Off_t>>$@
914 @echo #undef LSEEKSIZE>>$@
915 @echo #undef Off_t_size>>$@
916 @echo #undef PTRSIZE>>$@
917 @echo #undef SSize_t>>$@
918 @echo #undef HAS_ATOLL>>$@
919 @echo #undef HAS_STRTOLL>>$@
920 @echo #undef HAS_STRTOULL>>$@
921 @echo #undef IVTYPE>>$@
922 @echo #undef UVTYPE>>$@
923 @echo #undef IVSIZE>>$@
924 @echo #undef UVSIZE>>$@
925 @echo #undef NV_PRESERVES_UV>>$@
926 @echo #undef NV_PRESERVES_UV_BITS>>$@
927 @echo #undef IVdf>>$@
928 @echo #undef UVuf>>$@
929 @echo #undef UVof>>$@
930 @echo #undef UVxf>>$@
931 @echo #undef UVXf>>$@
932 @echo #undef USE_64_BIT_INT>>$@
933 @echo #undef Size_t_size>>$@
934 @echo #undef USE_CPLUSPLUS>>$@
935 !IF "$(USE_LARGE_FILES)"=="define"
936 @echo #define Off_t __int64>>$@
937 @echo #define LSEEKSIZE ^8>>$@
938 @echo #define Off_t_size ^8>>$@
940 @echo #define Off_t long>>$@
941 @echo #define LSEEKSIZE ^4>>$@
942 @echo #define Off_t_size ^4>>$@
944 !IF "$(WIN64)"=="define"
945 @echo #define PTRSIZE ^8>>$@
946 @echo #define SSize_t __int64>>$@
947 @echo #define HAS_ATOLL>>$@
948 @echo #define HAS_STRTOLL>>$@
949 @echo #define HAS_STRTOULL>>$@
950 @echo #define Size_t_size ^8>>$@
952 @echo #define PTRSIZE ^4>>$@
953 @echo #define SSize_t int>>$@
954 @echo #undef HAS_ATOLL>>$@
955 @echo #undef HAS_STRTOLL>>$@
956 @echo #undef HAS_STRTOULL>>$@
957 @echo #define Size_t_size ^4>>$@
959 !IF "$(USE_64_BIT_INT)"=="define"
960 @echo #define IVTYPE __int64>>$@
961 @echo #define UVTYPE unsigned __int64>>$@
962 @echo #define IVSIZE ^8>>$@
963 @echo #define UVSIZE ^8>>$@
964 @echo #undef NV_PRESERVES_UV>>$@
965 @echo #define NV_PRESERVES_UV_BITS 53>>$@
966 @echo #define IVdf "I64d">>$@
967 @echo #define UVuf "I64u">>$@
968 @echo #define UVof "I64o">>$@
969 @echo #define UVxf "I64x">>$@
970 @echo #define UVXf "I64X">>$@
971 @echo #define USE_64_BIT_INT>>$@
973 @echo #define IVTYPE long>>$@
974 @echo #define UVTYPE unsigned long>>$@
975 @echo #define IVSIZE ^4>>$@
976 @echo #define UVSIZE ^4>>$@
977 @echo #define NV_PRESERVES_UV>>$@
978 @echo #define NV_PRESERVES_UV_BITS 32>>$@
979 @echo #define IVdf "ld">>$@
980 @echo #define UVuf "lu">>$@
981 @echo #define UVof "lo">>$@
982 @echo #define UVxf "lx">>$@
983 @echo #define UVXf "lX">>$@
984 @echo #undef USE_64_BIT_INT>>$@
986 !IF "$(USE_CPLUSPLUS)"=="define"
987 @echo #define USE_CPLUSPLUS>>$@
989 @echo #undef USE_CPLUSPLUS>>$@
993 ..\git_version.h : $(MINIPERL) ..\make_patchnum.pl
994 cd .. && miniperl -Ilib make_patchnum.pl && cd win32
996 # make sure that we recompile perl.c if the git version changes
997 ..\perl$(o) : ..\git_version.h
999 ..\config.sh : config.w32 $(MINIPERL) config_sh.PL FindExt.pm
1000 $(MINIPERL) -I..\lib config_sh.PL $(CFG_VARS) config.w32 > ..\config.sh
1002 # This target is for when changes to the main config.sh happen.
1003 # Edit config.vc, then make perl in a minimal configuration (i.e. with MULTI,
1004 # ITHREADS, IMP_SYS and LARGE_FILES off), then make this target
1005 # to regenerate config_H.vc.
1007 $(MINIPERL) -I..\lib config_sh.PL $(CFG_VARS) $(CFGSH_TMPL) > ..\config.sh
1008 $(MINIPERL) -I..\lib ..\configpm --chdir=..
1009 -del /f $(CFGH_TMPL)
1010 -$(MINIPERL) -I..\lib config_h.PL
1011 rename config.h $(CFGH_TMPL)
1013 $(CONFIGPM) : $(MINIPERL) ..\config.sh config_h.PL
1014 $(MINIPERL) -I..\lib ..\configpm --chdir=..
1015 $(XCOPY) ..\*.h $(COREDIR)\*.*
1016 $(XCOPY) *.h $(COREDIR)\*.*
1017 $(RCOPY) include $(COREDIR)\*.*
1018 -$(MINIPERL) -I..\lib config_h.PL
1019 if errorlevel 1 $(MAKE) /$(MAKEFLAGS) $(CONFIGPM)
1021 # See the comment in Makefile.SH explaining this seemingly cranky ordering
1022 $(MINIPERL) : ..\lib\buildcustomize.pl
1024 ..\lib\buildcustomize.pl : $(MINIDIR) $(MINI_OBJ) ..\write_buildcustomize.pl
1025 $(LINK32) -out:$(MINIPERL) @<<
1026 $(BLINK_FLAGS) $(DELAYLOAD) $(LIBFILES) $(MINI_OBJ)
1028 $(EMBED_EXE_MANI:..\lib\buildcustomize.pl=..\miniperl.exe)
1029 $(MINIPERL) -I..\lib -f ..\write_buildcustomize.pl ..
1032 if not exist "$(MINIDIR)" mkdir "$(MINIDIR)"
1034 $(MINICORE_OBJ) : $(CORE_NOCFG_H)
1035 $(CC) -c $(CFLAGS) -DPERL_EXTERNAL_GLOB -DPERL_IS_MINIPERL $(OBJOUT_FLAG)$@ ..\$(*F).c
1037 $(MINIWIN32_OBJ) : $(CORE_NOCFG_H)
1038 $(CC) -c $(CFLAGS) -DPERL_IS_MINIPERL $(OBJOUT_FLAG)$@ $(*F).c
1040 # -DPERL_IMPLICIT_SYS needs C++ for perllib.c
1041 # This is the only file that depends on perlhost.h, vmem.h, and vdir.h
1042 !IF "$(USE_IMP_SYS)" == "define"
1043 perllib$(o) : perllib.c .\perlhost.h .\vdir.h .\vmem.h
1044 $(CC) -c -I. $(CFLAGS_O) $(CXX_FLAG) $(OBJOUT_FLAG)$@ perllib.c
1047 # 1. we don't want to rebuild miniperl.exe when config.h changes
1048 # 2. we don't want to rebuild miniperl.exe with non-default config.h
1049 # 3. we can't have miniperl.exe depend on git_version.h, as miniperl creates it
1050 $(MINI_OBJ) : $(CORE_NOCFG_H)
1052 $(WIN32_OBJ) : $(CORE_H)
1053 $(CORE_OBJ) : $(CORE_H)
1054 $(DLL_OBJ) : $(CORE_H)
1056 perldll.def : $(MINIPERL) $(CONFIGPM) ..\embed.fnc ..\makedef.pl create_perllibst_h.pl
1057 $(MINIPERL) -I..\lib create_perllibst_h.pl
1058 $(MINIPERL) -I..\lib -w ..\makedef.pl PLATFORM=win32 $(OPTIMIZE) $(DEFINES) $(BUILDOPT) \
1059 CCTYPE=$(CCTYPE) TARG_DIR=..\ > perldll.def
1061 $(PERLDLL): perldll.def $(PERLDLL_OBJ) $(PERLDLL_RES) Extensions_static
1062 $(LINK32) -dll -def:perldll.def -base:0x28000000 -out:$@ @Extensions_static @<<
1063 $(BLINK_FLAGS) $(DELAYLOAD) $(LIBFILES) $(PERLDLL_OBJ) $(PERLDLL_RES)
1066 $(XCOPY) $(PERLIMPLIB) $(COREDIR)
1068 $(PERLSTATICLIB): Extensions_static
1069 $(LIB32) $(LIB_FLAGS) -out:$@ @Extensions_static @<<
1072 $(XCOPY) $(PERLSTATICLIB) $(COREDIR)
1074 $(PERLEXE_RES): perlexe.rc $(PERLEXE_MANIFEST) $(PERLEXE_ICO)
1076 $(MINIDIR)\globals$(o) : $(GENERATED_HEADERS)
1078 $(UUDMAP_H) $(MG_DATA_H) : $(BITCOUNT_H)
1080 $(BITCOUNT_H) : $(GENUUDMAP)
1081 $(GENUUDMAP) $(GENERATED_HEADERS)
1083 $(GENUUDMAP_OBJ) : ..\mg_raw.h
1085 $(GENUUDMAP) : $(GENUUDMAP_OBJ)
1086 $(LINK32) -out:$@ @<<
1087 $(BLINK_FLAGS) $(LIBFILES) $(GENUUDMAP_OBJ)
1091 perlmain.c : runperl.c
1092 copy runperl.c perlmain.c
1094 perlmain$(o) : perlmain.c
1095 $(CC) $(CFLAGS_O:-DPERLDLL=-UPERLDLL) $(OBJOUT_FLAG)$@ -c perlmain.c
1097 perlmainst.c : runperl.c
1098 copy runperl.c perlmainst.c
1100 perlmainst$(o) : perlmainst.c
1101 $(CC) $(CFLAGS_O) $(OBJOUT_FLAG)$@ -c perlmainst.c
1103 $(PERLEXE): $(PERLDLL) $(CONFIGPM) $(PERLEXE_OBJ) $(PERLEXE_RES)
1104 $(LINK32) -out:$@ $(BLINK_FLAGS) \
1105 $(PERLEXE_OBJ) $(PERLEXE_RES) $(PERLIMPLIB) $(LIBFILES) $(SETARGV_OBJ)
1107 copy $(PERLEXE) $(WPERLEXE)
1108 $(MINIPERL) -I..\lib bin\exetype.pl $(WPERLEXE) WINDOWS
1110 $(PERLEXESTATIC): $(PERLSTATICLIB) $(CONFIGPM) $(PERLEXEST_OBJ) $(PERLEXE_RES)
1111 $(LINK32) -out:$@ $(BLINK_FLAGS) \
1112 $(PERLEXEST_OBJ) $(PERLEXE_RES) $(PERLSTATICLIB) $(LIBFILES) $(SETARGV_OBJ)
1115 MakePPPort: $(MINIPERL) $(CONFIGPM) Extensions_nonxs
1116 $(MINIPERL) -I..\lib ..\mkppport
1118 #-------------------------------------------------------------------------------
1119 # There's no direct way to mark a dependency on
1120 # DynaLoader.pm, so this will have to do
1121 Extensions: ..\make_ext.pl ..\lib\buildcustomize.pl $(PERLDEP) $(CONFIGPM) $(DYNALOADER)
1122 $(XCOPY) ..\*.h $(COREDIR)\*.*
1123 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --dynamic
1125 Extensions_reonly: ..\make_ext.pl ..\lib\buildcustomize.pl $(PERLDEP) $(CONFIGPM) $(DYNALOADER)
1126 $(XCOPY) ..\*.h $(COREDIR)\*.*
1127 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --dynamic +re
1129 Extensions_static : ..\make_ext.pl ..\lib\buildcustomize.pl list_static_libs.pl $(PERLDEP) $(CONFIGPM) Extensions_nonxs
1130 $(XCOPY) ..\*.h $(COREDIR)\*.*
1131 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --static
1132 $(MINIPERL) -I..\lib list_static_libs.pl > Extensions_static
1134 Extensions_nonxs: ..\make_ext.pl ..\lib\buildcustomize.pl $(PERLDEP) $(CONFIGPM) ..\pod\perlfunc.pod
1135 $(XCOPY) ..\*.h $(COREDIR)\*.*
1136 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --nonxs
1138 $(DYNALOADER) : ..\make_ext.pl ..\lib\buildcustomize.pl $(PERLDEP) $(CONFIGPM) Extensions_nonxs
1139 $(XCOPY) ..\*.h $(COREDIR)\*.*
1140 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(EXTDIR) --dynaloader
1143 -if exist $(MINIPERL) $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --all --target=clean
1145 Extensions_realclean:
1146 -if exist $(MINIPERL) $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --all --target=realclean
1148 #-------------------------------------------------------------------------------
1150 doc: $(PERLEXE) ..\pod\perltoc.pod
1151 $(PERLEXE) ..\installhtml --podroot=.. --htmldir=$(HTMLDIR) \
1152 --podpath=pod:lib:utils --htmlroot="file://$(INST_HTML::=|)" \
1155 ..\utils\Makefile: $(CONFIGPM) ..\utils\Makefile.PL
1156 $(MINIPERL) -I..\lib ..\utils\Makefile.PL ..
1158 # Note that this next section is parsed (and regenerated) by pod/buildtoc
1159 # so please check that script before making structural changes here
1161 utils: $(PERLEXE) ..\utils\Makefile
1163 $(MAKE) PERL=$(MINIPERL)
1165 copy ..\README.aix ..\pod\perlaix.pod
1166 copy ..\README.amiga ..\pod\perlamiga.pod
1167 copy ..\README.android ..\pod\perlandroid.pod
1168 copy ..\README.bs2000 ..\pod\perlbs2000.pod
1169 copy ..\README.ce ..\pod\perlce.pod
1170 copy ..\README.cn ..\pod\perlcn.pod
1171 copy ..\README.cygwin ..\pod\perlcygwin.pod
1172 copy ..\README.dos ..\pod\perldos.pod
1173 copy ..\README.freebsd ..\pod\perlfreebsd.pod
1174 copy ..\README.haiku ..\pod\perlhaiku.pod
1175 copy ..\README.hpux ..\pod\perlhpux.pod
1176 copy ..\README.hurd ..\pod\perlhurd.pod
1177 copy ..\README.irix ..\pod\perlirix.pod
1178 copy ..\README.jp ..\pod\perljp.pod
1179 copy ..\README.ko ..\pod\perlko.pod
1180 copy ..\README.linux ..\pod\perllinux.pod
1181 copy ..\README.macos ..\pod\perlmacos.pod
1182 copy ..\README.macosx ..\pod\perlmacosx.pod
1183 copy ..\README.netware ..\pod\perlnetware.pod
1184 copy ..\README.openbsd ..\pod\perlopenbsd.pod
1185 copy ..\README.os2 ..\pod\perlos2.pod
1186 copy ..\README.os390 ..\pod\perlos390.pod
1187 copy ..\README.os400 ..\pod\perlos400.pod
1188 copy ..\README.plan9 ..\pod\perlplan9.pod
1189 copy ..\README.qnx ..\pod\perlqnx.pod
1190 copy ..\README.riscos ..\pod\perlriscos.pod
1191 copy ..\README.solaris ..\pod\perlsolaris.pod
1192 copy ..\README.symbian ..\pod\perlsymbian.pod
1193 copy ..\README.synology ..\pod\perlsynology.pod
1194 copy ..\README.tru64 ..\pod\perltru64.pod
1195 copy ..\README.tw ..\pod\perltw.pod
1196 copy ..\README.vos ..\pod\perlvos.pod
1197 copy ..\README.win32 ..\pod\perlwin32.pod
1198 copy ..\pod\perldelta.pod ..\pod\perl5232delta.pod
1200 $(PERLEXE) $(PL2BAT) $(UTILS)
1201 $(MINIPERL) -I..\lib ..\autodoc.pl ..
1202 $(MINIPERL) -I..\lib ..\pod\perlmodlib.PL -q ..
1204 ..\pod\perltoc.pod: $(PERLEXE) Extensions Extensions_nonxs
1205 $(PERLEXE) -f ..\pod\buildtoc -q
1207 # Note that the pod cleanup in this next section is parsed (and regenerated
1208 # by pod/buildtoc so please check that script before making changes here
1210 distclean: realclean
1211 -del /f $(MINIPERL) $(PERLEXE) $(PERLDLL) $(GLOBEXE) \
1212 $(PERLIMPLIB) ..\miniperl.lib $(PERLEXESTATIC) $(PERLSTATICLIB)
1213 -del /f $(LIBDIR)\Encode.pm $(LIBDIR)\encoding.pm $(LIBDIR)\Errno.pm
1214 -del /f $(LIBDIR)\Config.pod $(LIBDIR)\POSIX.pod $(LIBDIR)\threads.pm
1215 -del /f $(LIBDIR)\.exists $(LIBDIR)\attributes.pm $(LIBDIR)\DynaLoader.pm
1216 -del /f $(LIBDIR)\Fcntl.pm $(LIBDIR)\IO.pm $(LIBDIR)\Opcode.pm
1217 -del /f $(LIBDIR)\ops.pm $(LIBDIR)\Safe.pm
1218 -del /f $(LIBDIR)\SDBM_File.pm $(LIBDIR)\Socket.pm $(LIBDIR)\POSIX.pm
1219 -del /f $(LIBDIR)\B.pm $(LIBDIR)\O.pm $(LIBDIR)\re.pm
1220 -del /f $(LIBDIR)\File\Glob.pm
1221 -del /f $(LIBDIR)\Storable.pm
1222 -del /f $(LIBDIR)\Sys\Hostname.pm
1223 -del /f $(LIBDIR)\Time\HiRes.pm
1224 -del /f $(LIBDIR)\Unicode\Normalize.pm
1225 -del /f $(LIBDIR)\Math\BigInt\FastCalc.pm
1226 -del /f $(LIBDIR)\Win32.pm
1227 -del /f $(LIBDIR)\Win32CORE.pm
1228 -del /f $(LIBDIR)\Win32API\File.pm
1229 -del /f $(LIBDIR)\Win32API\File\cFile.pc
1230 -del /f $(LIBDIR)\buildcustomize.pl
1231 -del /f $(DISTDIR)\XSLoader\XSLoader.pm
1233 -if exist $(LIBDIR)\App rmdir /s /q $(LIBDIR)\App
1234 -if exist $(LIBDIR)\Archive rmdir /s /q $(LIBDIR)\Archive
1235 -if exist $(LIBDIR)\Attribute rmdir /s /q $(LIBDIR)\Attribute
1236 -if exist $(LIBDIR)\autodie rmdir /s /q $(LIBDIR)\autodie
1237 -if exist $(LIBDIR)\Carp rmdir /s /q $(LIBDIR)\Carp
1238 -if exist $(LIBDIR)\Compress rmdir /s /q $(LIBDIR)\Compress
1239 -if exist $(LIBDIR)\Config\Perl rmdir /s /q $(LIBDIR)\Config\Perl
1240 -if exist $(LIBDIR)\CPAN rmdir /s /q $(LIBDIR)\CPAN
1241 -if exist $(LIBDIR)\Data rmdir /s /q $(LIBDIR)\Data
1242 -if exist $(LIBDIR)\Devel rmdir /s /q $(LIBDIR)\Devel
1243 -if exist $(LIBDIR)\Digest rmdir /s /q $(LIBDIR)\Digest
1244 -if exist $(LIBDIR)\Encode rmdir /s /q $(LIBDIR)\Encode
1245 -if exist $(LIBDIR)\encoding rmdir /s /q $(LIBDIR)\encoding
1246 -if exist $(LIBDIR)\Exporter rmdir /s /q $(LIBDIR)\Exporter
1247 -if exist $(LIBDIR)\ExtUtils\CBuilder rmdir /s /q $(LIBDIR)\ExtUtils\CBuilder
1248 -if exist $(LIBDIR)\ExtUtils\Command rmdir /s /q $(LIBDIR)\ExtUtils\Command
1249 -if exist $(LIBDIR)\ExtUtils\Constant rmdir /s /q $(LIBDIR)\ExtUtils\Constant
1250 -if exist $(LIBDIR)\ExtUtils\Liblist rmdir /s /q $(LIBDIR)\ExtUtils\Liblist
1251 -if exist $(LIBDIR)\ExtUtils\MakeMaker rmdir /s /q $(LIBDIR)\ExtUtils\MakeMaker
1252 -if exist $(LIBDIR)\ExtUtils\ParseXS rmdir /s /q $(LIBDIR)\ExtUtils\ParseXS
1253 -if exist $(LIBDIR)\ExtUtils\Typemaps rmdir /s /q $(LIBDIR)\ExtUtils\Typemaps
1254 -if exist $(LIBDIR)\File\Spec rmdir /s /q $(LIBDIR)\File\Spec
1255 -if exist $(LIBDIR)\Filter rmdir /s /q $(LIBDIR)\Filter
1256 -if exist $(LIBDIR)\Hash rmdir /s /q $(LIBDIR)\Hash
1257 -if exist $(LIBDIR)\HTTP rmdir /s /q $(LIBDIR)\HTTP
1258 -if exist $(LIBDIR)\I18N rmdir /s /q $(LIBDIR)\I18N
1259 -if exist $(LIBDIR)\IO rmdir /s /q $(LIBDIR)\IO
1260 -if exist $(LIBDIR)\IPC rmdir /s /q $(LIBDIR)\IPC
1261 -if exist $(LIBDIR)\JSON rmdir /s /q $(LIBDIR)\JSON
1262 -if exist $(LIBDIR)\List rmdir /s /q $(LIBDIR)\List
1263 -if exist $(LIBDIR)\Locale rmdir /s /q $(LIBDIR)\Locale
1264 -if exist $(LIBDIR)\Math rmdir /s /q $(LIBDIR)\Math
1265 -if exist $(LIBDIR)\Memoize rmdir /s /q $(LIBDIR)\Memoize
1266 -if exist $(LIBDIR)\MIME rmdir /s /q $(LIBDIR)\MIME
1267 -if exist $(LIBDIR)\Module rmdir /s /q $(LIBDIR)\Module
1268 -if exist $(LIBDIR)\Net\FTP rmdir /s /q $(LIBDIR)\Net\FTP
1269 -if exist $(LIBDIR)\Params rmdir /s /q $(LIBDIR)\Params
1270 -if exist $(LIBDIR)\Parse rmdir /s /q $(LIBDIR)\Parse
1271 -if exist $(LIBDIR)\Perl rmdir /s /q $(LIBDIR)\Perl
1272 -if exist $(LIBDIR)\PerlIO rmdir /s /q $(LIBDIR)\PerlIO
1273 -if exist $(LIBDIR)\Pod\Perldoc rmdir /s /q $(LIBDIR)\Pod\Perldoc
1274 -if exist $(LIBDIR)\Pod\Simple rmdir /s /q $(LIBDIR)\Pod\Simple
1275 -if exist $(LIBDIR)\Pod\Text rmdir /s /q $(LIBDIR)\Pod\Text
1276 -if exist $(LIBDIR)\Scalar rmdir /s /q $(LIBDIR)\Scalar
1277 -if exist $(LIBDIR)\Search rmdir /s /q $(LIBDIR)\Search
1278 -if exist $(LIBDIR)\Sub rmdir /s /q $(LIBDIR)\Sub
1279 -if exist $(LIBDIR)\Sys rmdir /s /q $(LIBDIR)\Sys
1280 -if exist $(LIBDIR)\TAP rmdir /s /q $(LIBDIR)\TAP
1281 -if exist $(LIBDIR)\Term rmdir /s /q $(LIBDIR)\Term
1282 -if exist $(LIBDIR)\Test rmdir /s /q $(LIBDIR)\Test
1283 -if exist $(LIBDIR)\Text rmdir /s /q $(LIBDIR)\Text
1284 -if exist $(LIBDIR)\Thread rmdir /s /q $(LIBDIR)\Thread
1285 -if exist $(LIBDIR)\threads rmdir /s /q $(LIBDIR)\threads
1286 -if exist $(LIBDIR)\Tie\Hash rmdir /s /q $(LIBDIR)\Tie\Hash
1287 -if exist $(LIBDIR)\Unicode\Collate rmdir /s /q $(LIBDIR)\Unicode\Collate
1288 -if exist $(LIBDIR)\Unicode\Collate\Locale rmdir /s /q $(LIBDIR)\Unicode\Collate\Locale
1289 -if exist $(LIBDIR)\version rmdir /s /q $(LIBDIR)\version
1290 -if exist $(LIBDIR)\VMS rmdir /s /q $(LIBDIR)\VMS
1291 -if exist $(LIBDIR)\Win32API rmdir /s /q $(LIBDIR)\Win32API
1292 -if exist $(LIBDIR)\XS rmdir /s /q $(LIBDIR)\XS
1293 -cd $(PODDIR) && del /f *.html *.bat roffitall \
1294 perl5232delta.pod perlaix.pod perlamiga.pod perlandroid.pod \
1295 perlapi.pod perlbs2000.pod perlce.pod perlcn.pod perlcygwin.pod \
1296 perldos.pod perlfreebsd.pod perlhaiku.pod perlhpux.pod \
1297 perlhurd.pod perlintern.pod perlirix.pod perljp.pod perlko.pod \
1298 perllinux.pod perlmacos.pod perlmacosx.pod perlmodlib.pod \
1299 perlnetware.pod perlopenbsd.pod perlos2.pod perlos390.pod \
1300 perlos400.pod perlplan9.pod perlqnx.pod perlriscos.pod \
1301 perlsolaris.pod perlsymbian.pod perlsynology.pod perltoc.pod \
1302 perltru64.pod perltw.pod perluniprops.pod perlvos.pod \
1304 -cd ..\utils && del /f h2ph splain perlbug pl2pm c2ph pstruct h2xs \
1305 perldoc perlivp libnetcfg enc2xs encguess piconv cpan *.bat \
1306 xsubpp pod2html instmodsh json_pp prove ptar ptardiff ptargrep shasum corelist zipdetails
1307 -del /f ..\config.sh perlmain.c dlutils.c config.h.new \
1310 -del /f ..\lib\Config_git.pl
1313 -del /f $(PERLEXE_RES) perl.base
1314 -cd .. && del /s *.lib *.map *.pdb *.ilk *.bs *$(o) .exists pm_to_blib ppport.h
1315 -cd $(EXTDIR) && del /s *.def Makefile Makefile.old
1316 -cd $(DISTDIR) && del /s *.def Makefile Makefile.old
1317 -cd $(CPANDIR) && del /s *.def Makefile Makefile.old
1318 -del /s ..\utils\Makefile
1319 -if exist $(AUTODIR) rmdir /s /q $(AUTODIR)
1320 -if exist $(COREDIR) rmdir /s /q $(COREDIR)
1321 -if exist pod2htmd.tmp del pod2htmd.tmp
1322 -if exist $(HTMLDIR) rmdir /s /q $(HTMLDIR)
1323 -del /f ..\t\test_state
1325 install : all installbare installhtml
1327 installbare : utils ..\pod\perltoc.pod
1328 $(PERLEXE) ..\installperl
1329 if exist $(WPERLEXE) $(XCOPY) $(WPERLEXE) $(INST_BIN)\*.*
1330 if exist $(PERLEXESTATIC) $(XCOPY) $(PERLEXESTATIC) $(INST_BIN)\*.*
1331 $(XCOPY) $(GLOBEXE) $(INST_BIN)\*.*
1332 if exist ..\perl*.pdb $(XCOPY) ..\perl*.pdb $(INST_BIN)\*.*
1333 $(XCOPY) bin\*.bat $(INST_SCRIPT)\*.*
1336 $(RCOPY) $(HTMLDIR)\*.* $(INST_HTML)\*.*
1338 inst_lib : $(CONFIGPM)
1339 $(RCOPY) ..\lib $(INST_LIB)\*.*
1341 $(UNIDATAFILES) ..\pod\perluniprops.pod : $(MINIPERL) $(CONFIGPM) ..\lib\unicore\mktables Extensions_nonxs
1342 cd ..\lib\unicore && \
1343 ..\$(MINIPERL) -I.. mktables -P ..\..\pod -maketest -makelist -p -check $@ $(FIRSTUNIFILE)
1345 minitest : .\config.h $(MINIPERL) ..\git_version.h $(GLOBEXE) $(CONFIGPM) $(UNIDATAFILES)
1346 $(XCOPY) $(MINIPERL) ..\t\$(NULL)
1347 if exist ..\t\perl.exe del /f ..\t\perl.exe
1348 rename ..\t\miniperl.exe perl.exe
1349 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1350 # Note this perl.exe is miniperl
1351 cd ..\t && perl.exe TEST base/*.t comp/*.t cmd/*.t run/*.t io/*.t re/*.t opbasic/*.t op/*.t uni/*.t perf/*.t pragma/*.t
1353 test-prep : all utils ../pod/perltoc.pod
1354 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1355 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1356 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1357 set PERL_STATIC_EXT=$(STATIC_EXT)
1361 perl.exe harness $(TEST_SWITCHES) $(TEST_FILES)
1364 test_porting : test-prep
1366 perl.exe harness $(TEST_SWITCHES) porting\*.t ..\lib\diagnostics.t
1369 test-reonly : reonly utils
1370 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1371 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1372 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1374 perl.exe harness $(OPT) -re \bre\\/ $(EXTRA)
1382 test-notty : test-prep
1383 set PERL_SKIP_TTY_TEST=1
1385 perl.exe harness $(TEST_SWITCHES) $(TEST_FILES)
1389 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1390 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1391 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1393 perl.exe harness $(TEST_SWITCHES) $(TEST_FILES)
1397 -@$(DEL) miniperlmain$(o)
1398 -@$(DEL) $(MINIPERL)
1399 -@$(DEL) perlglob$(o)
1400 -@$(DEL) perlmain$(o)
1401 -@$(DEL) perlmainst$(o)
1404 -@$(DEL) ..\git_version.h
1407 -@$(DEL) $(WPERLEXE)
1408 -@$(DEL) $(PERLEXESTATIC)
1409 -@$(DEL) $(PERLSTATICLIB)
1411 -@$(DEL) $(CORE_OBJ)
1412 -@$(DEL) $(GENUUDMAP) $(GENUUDMAP_OBJ) $(GENERATED_HEADERS)
1413 -if exist $(MINIDIR) rmdir /s /q $(MINIDIR)
1414 -if exist $(UNIDATADIR1) rmdir /s /q $(UNIDATADIR1)
1415 -if exist $(UNIDATADIR2) rmdir /s /q $(UNIDATADIR2)
1416 -@$(DEL) $(UNIDATAFILES)
1417 -@$(DEL) $(WIN32_OBJ)
1419 -@$(DEL) ..\*$(o) ..\*.lib ..\*.exp *$(o) *.lib *.exp *.res
1420 -@$(DEL) ..\t\*.exe ..\t\*.dll ..\t\*.bat
1423 -@$(DEL) Extensions_static
1425 clean : Extensions_clean _clean
1427 realclean : Extensions_realclean _clean
1429 # Handy way to run perlbug -ok without having to install and run the
1430 # installed perlbug. We don't re-run the tests here - we trust the user.
1431 # Please *don't* use this unless all tests pass.
1432 # If you want to report test failures, use "nmake nok" instead.
1434 $(PERLEXE) ..\utils\perlbug -ok -s "(UNINSTALLED)"
1437 $(PERLEXE) ..\utils\perlbug -ok -s "(UNINSTALLED)" -F perl.ok
1440 $(PERLEXE) ..\utils\perlbug -nok -s "(UNINSTALLED)"
1443 $(PERLEXE) ..\utils\perlbug -nok -s "(UNINSTALLED)" -F perl.nok