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 # (perl519.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.
32 # Comment this out if you DON'T want your perl installation to be versioned.
33 # This means that the new installation will overwrite any files from the
34 # old installation at the same INST_TOP location. Leaving it enabled is
35 # the safest route, as perl adds the extra version directory to all the
36 # locations it installs files to. If you disable it, an alternative
37 # versioned installation can be obtained by setting INST_TOP above to a
38 # path that includes an arbitrary version string.
43 # Comment this out if you DON'T want your perl installation to have
44 # architecture specific components. This means that architecture-
45 # specific files will be installed along with the architecture-neutral
46 # files. Leaving it enabled is safer and more flexible, in case you
47 # want to build multiple flavors of perl and install them together in
48 # the same location. Commenting it out gives you a simpler
49 # installation that is easier to understand for beginners.
51 #INST_ARCH = \$(ARCHNAME)
54 # Uncomment this if you want perl to run
55 # $Config{sitelibexp}\sitecustomize.pl
56 # before anything else. This script can then be set up, for example,
57 # to add additional entries to @INC.
59 #USE_SITECUST = define
62 # uncomment to enable multiple interpreters. This is need for fork()
63 # emulation and for thread support.
68 # Beginnings of interpreter cloning/threads; now reasonably complete.
69 # This should be enabled to get the fork() emulation. This needs
75 # uncomment to enable the implicit "host" layer for all system calls
76 # made by perl. This needs USE_MULTI above. This is also needed to
82 # Comment out next assign to disable perl's I/O subsystem and use compiler's
83 # stdio for IO - depending on your compiler vendor and run time library you may
84 # then get a number of fails from make test i.e. bugs - complain to them not us ;-).
85 # You will also be unable to take full advantage of perl5.8's support for multiple
86 # encodings and may see lower IO performance. You have been warned.
90 # Comment this out if you don't want to enable large file support for
91 # some reason. Should normally only be changed to maintain compatibility
92 # with an older release of perl.
93 USE_LARGE_FILES = define
96 # Uncomment this if you're building a 32-bit perl and want 64-bit integers.
97 # (If you're building a 64-bit perl then you will have 64-bit integers whether
98 # or not this is uncommented.)
99 #USE_64_BIT_INT = define
102 # uncomment exactly one of the following
104 # Visual C++ 6.x (aka Visual C++ 98)
106 # Visual C++ .NET 2002/2003 (aka Visual C++ 7.x) (full version)
108 # Visual C++ Toolkit 2003 (aka Visual C++ 7.x) (free command-line tools)
110 # Windows Server 2003 SP1 Platform SDK (April 2005)
112 # Visual C++ 2005 (aka Visual C++ 8.x) (full version)
114 # Visual C++ 2005 Express Edition (aka Visual C++ 8.x) (free version)
116 # Visual C++ 2008 (aka Visual C++ 9.x) (full version)
118 # Visual C++ 2008 Express Edition (aka Visual C++ 9.x) (free version)
120 # Visual C++ 2010 (aka Visual C++ 10.x) (full version)
122 # Visual C++ 2010 Express Edition (aka Visual C++ 10.x) (free version)
123 #CCTYPE = MSVC100FREE
124 # Visual C++ 2012 (aka Visual C++ 11.x) (full version)
126 # Visual C++ 2012 Express Edition (aka Visual C++ 11.x) (free version)
127 #CCTYPE = MSVC110FREE
130 # uncomment next line if you want debug version of perl (big,slow)
131 # If not enabled, we automatically try to use maximum optimization
132 # with all compilers that are known to have a working optimizer.
137 # uncomment to enable linking with setargv.obj under the Visual C
138 # compiler. Setting this options enables perl to expand wildcards in
139 # arguments, but it may be harder to use alternate methods like
140 # File::DosGlob that are more powerful. This option is supported only with
143 #USE_SETARGV = define
146 # set this if you wish to use perl's malloc
147 # WARNING: Turning this on/off WILL break binary compatibility with extensions
148 # you may have compiled with/without it. Be prepared to recompile all
149 # extensions if you change the default. Currently, this cannot be enabled
150 # if you ask for USE_IMP_SYS above.
152 #PERL_MALLOC = define
155 # set this to enable debugging mstats
156 # This must be enabled to use the Devel::Peek::mstat() function. This cannot
157 # be enabled without PERL_MALLOC as well.
159 #DEBUG_MSTATS = define
162 # set this to additionally provide a statically linked perl-static.exe.
163 # Note that dynamic loading will not work with this perl, so you must
164 # include required modules statically using the STATIC_EXT or ALL_STATIC
165 # variables below. A static library perl519s.lib will also be created.
166 # Ordinary perl.exe is not affected by this option.
168 #BUILD_STATIC = define
171 # in addition to BUILD_STATIC the option ALL_STATIC makes *every*
172 # extension get statically built
173 # This will result in a very large perl executable, but the main purpose
174 # is to have proper linking set so as to be able to create miscellaneous
175 # executables with different built-in extensions
181 # set the install locations of the compiler include/libraries
182 # Running VCVARS32.BAT is *required* when using Visual C.
183 # Some versions of Visual C don't define MSVCDIR in the environment,
184 # so you may have to set CCHOME explicitly (spaces in the path name should
188 CCINCDIR = $(CCHOME)\include
189 CCLIBDIR = $(CCHOME)\lib
192 # Additional compiler flags can be specified here.
194 BUILDOPT = $(BUILDOPTEXTRA)
197 # This should normally be disabled. Enabling it will disable the File::Glob
198 # implementation of CORE::glob.
200 #BUILDOPT = $(BUILDOPT) -DPERL_EXTERNAL_GLOB
203 # Perl needs to read scripts in text mode so that the DATA filehandle
204 # works correctly with seek() and tell(), or around auto-flushes of
205 # all filehandles (e.g. by system(), backticks, fork(), etc).
207 # The current version on the ByteLoader module on CPAN however only
208 # works if scripts are read in binary mode. But before you disable text
209 # mode script reading (and break some DATA filehandle functionality)
210 # please check first if an updated ByteLoader isn't available on CPAN.
212 BUILDOPT = $(BUILDOPT) -DPERL_TEXTMODE_SCRIPTS
215 # specify semicolon-separated list of extra directories that modules will
216 # look for libraries (spaces in path names need not be quoted)
221 # set this to your email address (perl will guess a value from
222 # from your loginname and your hostname, which may not be right)
227 ## Build configuration ends.
230 ##################### CHANGE THESE ONLY IF YOU MUST #####################
232 !IF "$(USE_IMP_SYS)" == "define"
237 !IF "$(PERL_MALLOC)" == ""
242 !IF "$(DEBUG_MSTATS)" == ""
246 !IF "$(DEBUG_MSTATS)" == "define"
247 BUILDOPT = $(BUILDOPT) -DPERL_DEBUGGING_MSTATS
250 !IF "$(USE_SITECUST)" == ""
254 !IF "$(USE_MULTI)" == ""
258 !IF "$(USE_ITHREADS)" == ""
262 !IF "$(USE_IMP_SYS)" == ""
266 !IF "$(USE_PERLIO)" == ""
270 !IF "$(USE_LARGE_FILES)" == ""
271 USE_LARGE_FILES = undef
274 !IF "$(USE_64_BIT_INT)" == ""
275 USE_64_BIT_INT = undef
278 !IF "$(USE_IMP_SYS)$(USE_MULTI)" == "defineundef"
282 !IF "$(USE_ITHREADS)$(USE_MULTI)" == "defineundef"
286 !IF "$(USE_SITECUST)" == "define"
287 BUILDOPT = $(BUILDOPT) -DUSE_SITECUSTOMIZE
290 !IF "$(USE_MULTI)" != "undef"
291 BUILDOPT = $(BUILDOPT) -DPERL_IMPLICIT_CONTEXT
294 !IF "$(USE_IMP_SYS)" != "undef"
295 BUILDOPT = $(BUILDOPT) -DPERL_IMPLICIT_SYS
298 !IF "$(PROCESSOR_ARCHITECTURE)" == ""
299 PROCESSOR_ARCHITECTURE = x86
303 # When we are running from a 32bit cmd.exe on AMD64 then
304 # PROCESSOR_ARCHITECTURE is set to x86 and PROCESSOR_ARCHITEW6432
306 !IF "$(PROCESSOR_ARCHITEW6432)" != ""
307 PROCESSOR_ARCHITECTURE = $(PROCESSOR_ARCHITEW6432)
310 !IF "$(PROCESSOR_ARCHITECTURE)" == "AMD64" || "$(PROCESSOR_ARCHITECTURE)" == "IA64"
318 !IF "$(WIN64)" == "define"
319 USE_64_BIT_INT = define
322 # Treat 64-bit MSVC60 (doesn't really exist) as SDK2003SP1 because
323 # both link against MSVCRT.dll (which is part of Windows itself) and
324 # not against a compiler specific versioned runtime.
325 !IF "$(WIN64)" == "define" && "$(CCTYPE)" == "MSVC60"
329 # Most relevant compiler-specific options fall into two groups:
330 # either pre-MSVC80 or MSVC80 onwards, so define a macro for this.
331 !IF "$(CCTYPE)" == "MSVC60" || \
332 "$(CCTYPE)" == "MSVC70" || "$(CCTYPE)" == "MSVC70FREE"
338 ARCHITECTURE = $(PROCESSOR_ARCHITECTURE)
339 !IF "$(ARCHITECTURE)" == "AMD64"
342 !IF "$(ARCHITECTURE)" == "IA64"
346 !IF "$(USE_MULTI)" == "define"
347 ARCHNAME = MSWin32-$(ARCHITECTURE)-multi
349 !IF "$(USE_PERLIO)" == "define"
350 ARCHNAME = MSWin32-$(ARCHITECTURE)-perlio
352 ARCHNAME = MSWin32-$(ARCHITECTURE)
356 !IF "$(USE_PERLIO)" == "define"
357 BUILDOPT = $(BUILDOPT) -DUSE_PERLIO
360 !IF "$(USE_ITHREADS)" == "define"
361 ARCHNAME = $(ARCHNAME)-thread
364 !IF "$(WIN64)" != "define"
365 !IF "$(USE_64_BIT_INT)" == "define"
366 ARCHNAME = $(ARCHNAME)-64int
370 # All but the free version of VC++ 7.x can load DLLs on demand. Makes the test
371 # suite run in about 10% less time.
372 !IF "$(CCTYPE)" != "MSVC70FREE"
373 DELAYLOAD = -DELAYLOAD:ws2_32.dll delayimp.lib
376 # Visual C++ 2005 and 2008 (VC++ 8.x and 9.x) create manifest files for EXEs and
377 # DLLs. These either need copying everywhere with the binaries, or else need
378 # embedding in them otherwise MSVCR80.dll or MSVCR90.dll won't be found. For
379 # simplicity, embed them if they exist (and delete them afterwards so that they
380 # don't get installed too).
381 EMBED_EXE_MANI = if exist $@.manifest mt -nologo -manifest $@.manifest -outputresource:$@;1 && \
382 if exist $@.manifest del $@.manifest
383 EMBED_DLL_MANI = if exist $@.manifest mt -nologo -manifest $@.manifest -outputresource:$@;2 && \
384 if exist $@.manifest del $@.manifest
386 ARCHDIR = ..\lib\$(ARCHNAME)
387 COREDIR = ..\lib\CORE
388 AUTODIR = ..\lib\auto
394 EXTUTILSDIR = $(LIBDIR)\ExtUtils
398 INST_SCRIPT = $(INST_TOP)$(INST_VER)\bin
399 INST_BIN = $(INST_SCRIPT)$(INST_ARCH)
400 INST_LIB = $(INST_TOP)$(INST_VER)\lib
401 INST_ARCHLIB = $(INST_LIB)$(INST_ARCH)
402 INST_COREDIR = $(INST_ARCHLIB)\CORE
403 INST_HTML = $(INST_TOP)$(INST_VER)\html
406 # Programs to compile, build .lib files and link
411 LIB32 = $(LINK32) -lib
418 INCLUDES = -I$(COREDIR) -I.\include -I. -I..
419 #PCHFLAGS = -Fpc:\temp\vcmoduls.pch -YX
420 DEFINES = -DWIN32 -D_CONSOLE -DNO_STRICT
421 LOCDEFS = -DPERLDLL -DPERL_CORE
427 !IF "$(CFG)" == "Debug"
428 OPTIMIZE = -Od -MD -Zi -DDEBUGGING
431 # -O1 yields smaller code, which turns out to be faster than -O2 on x86 and x64
432 OPTIMIZE = -O1 -MD -Zi -DNDEBUG
433 # we enable debug symbols in release builds also
434 LINK_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
441 ! IF "$(WIN64)" == "define"
442 # enable Whole Program Optimizations (WPO) and Link Time Code Generation (LTCG)
443 OPTIMIZE = $(OPTIMIZE) -GL
444 LINK_DBG = $(LINK_DBG) -ltcg
448 !IF "$(WIN64)" == "define"
449 DEFINES = $(DEFINES) -DWIN64 -DCONSERVATIVE
450 OPTIMIZE = $(OPTIMIZE) -fp:precise
453 # For now, silence warnings from VC++ 8.x onwards about "unsafe" CRT functions
454 # and POSIX CRT function names being deprecated.
455 !IF "$(PREMSVC80)" == "undef"
456 DEFINES = $(DEFINES) -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE
459 # In VS 2005 (VC++ 8.0) Microsoft changes time_t from 32-bit to
460 # 64-bit, even in 32-bit mode. It also provides the _USE_32BIT_TIME_T
461 # preprocessor option to revert back to the old functionality for
462 # backward compatibility. We define this symbol here for older 32-bit
463 # compilers only (which aren't using it at all) for the sole purpose
464 # of getting it into $Config{ccflags}. That way if someone builds
465 # Perl itself with e.g. VC6 but later installs an XS module using VC8
466 # the time_t types will still be compatible.
467 !IF "$(WIN64)" == "undef"
468 ! IF "$(PREMSVC80)" == "define"
469 BUILDOPT = $(BUILDOPT) -D_USE_32BIT_TIME_T
474 oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.lib \
475 comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \
476 netapi32.lib uuid.lib ws2_32.lib mpr.lib winmm.lib \
477 version.lib odbc32.lib odbccp32.lib comctl32.lib
479 # The 64 bit Windows Server 2003 SP1 SDK compilers link against MSVCRT.dll, which
480 # doesn't include the buffer overrun verification code used by the /GS switch.
481 # Since the code links against libraries that are compiled with /GS, this
482 # "security cookie verification" code must be included via bufferoverflow.lib.
483 !IF "$(WIN64)" == "define" && "$(CCTYPE)" == "SDK2003SP1"
484 LIBBASEFILES = $(LIBBASEFILES) bufferoverflowU.lib
487 LIBFILES = $(LIBBASEFILES) $(LIBC)
489 #EXTRACFLAGS = -nologo -GF -W4 -wd4127 -wd4706
490 EXTRACFLAGS = -nologo -GF -W3
491 CFLAGS = $(EXTRACFLAGS) $(INCLUDES) $(DEFINES) $(LOCDEFS) \
492 $(PCHFLAGS) $(OPTIMIZE)
493 LINK_FLAGS = -nologo -nodefaultlib $(LINK_DBG) \
494 -libpath:"$(INST_COREDIR)" \
495 -machine:$(PROCESSOR_ARCHITECTURE)
500 CFLAGS_O = $(CFLAGS) $(BUILDOPT)
502 !IF "$(PREMSVC80)" == "undef"
503 LINK_FLAGS = $(LINK_FLAGS) "/manifestdependency:type='Win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'"
505 RSC_FLAGS = -DINCLUDE_MANIFEST
509 #################### do not edit below this line #######################
510 ############# NO USER-SERVICEABLE PARTS BEYOND THIS POINT ##############
518 .SUFFIXES : .c $(o) .dll .lib .exe .rc .res
521 $(CC) -c -I$(<D) $(CFLAGS_O) $(OBJOUT_FLAG)$@ $<
524 $(CC) -c -I$(<D) $(CFLAGS_O) -P $(OBJOUT_FLAG)$@ $<
530 $(LINK32) -dll -subsystem:windows -implib:$(*B).lib -def:$(*B).def \
531 -out:$@ $(LINK_FLAGS) $(LIBFILES) $< $(LIBPERL)
535 $(RSC) -i.. $(RSC_FLAGS) $<
540 # makedef.pl must be updated if this changes, and this should normally
541 # only change when there is an incompatible revision of the public API.
542 PERLIMPLIB = ..\perl519.lib
543 PERLSTATICLIB = ..\perl519s.lib
544 PERLDLL = ..\perl519.dll
546 MINIPERL = ..\miniperl.exe
548 PERLEXE = ..\perl.exe
549 WPERLEXE = ..\wperl.exe
550 PERLEXESTATIC = ..\perl-static.exe
551 GLOBEXE = ..\perlglob.exe
552 CONFIGPM = ..\lib\Config.pm ..\lib\Config_heavy.pl
553 MINIMOD = ..\lib\ExtUtils\Miniperl.pm
555 GENUUDMAP = ..\generate_uudmap.exe
556 !IF "$(BUILD_STATIC)" == "define" || "$(ALL_STATIC)" == "define"
562 # Unicode data files generated by mktables
563 FIRSTUNIFILE = ..\lib\unicore\Decomposition.pl
564 UNIDATAFILES = ..\lib\unicore\Decomposition.pl \
565 ..\lib\unicore\CombiningClass.pl ..\lib\unicore\Name.pl \
566 ..\lib\unicore\Heavy.pl ..\lib\unicore\mktables.lst \
567 ..\lib\unicore\UCD.pl ..\lib\unicore\Name.pm \
568 ..\lib\unicore\TestProp.pl
570 # Directories of Unicode data files generated by mktables
571 UNIDATADIR1 = ..\lib\unicore\To
572 UNIDATADIR2 = ..\lib\unicore\lib
574 PERLEXE_MANIFEST= .\perlexe.manifest
575 PERLEXE_ICO = .\perlexe.ico
576 PERLEXE_RES = .\perlexe.res
579 # Nominate a target which causes extensions to be re-built
580 # This used to be $(PERLEXE), but at worst it is the .dll that they depend
581 # on and really only the interface - i.e. the .def file used to export symbols
583 PERLDEP = perldll.def
585 PL2BAT = bin\pl2bat.pl
586 GLOBBAT = bin\perlglob.bat
601 ..\utils\config_data \
609 ..\utils\zipdetails \
626 CFGSH_TMPL = config.vc
627 CFGH_TMPL = config_H.vc
629 XCOPY = xcopy /f /r /i /d /y
630 RCOPY = xcopy /f /r /i /e /d /y
674 EXTRACORE_SRC = $(EXTRACORE_SRC) perllib.c
676 !IF "$(PERL_MALLOC)" == "define"
677 EXTRACORE_SRC = $(EXTRACORE_SRC) ..\malloc.c
680 EXTRACORE_SRC = $(EXTRACORE_SRC) ..\perlio.c
688 # We need this for miniperl build unless we override canned
689 # config.h #define building mini\*
690 #!IF "$(USE_PERLIO)" == "define"
691 WIN32_SRC = $(WIN32_SRC) .\win32io.c
740 .\include\sys\socket.h \
743 CORE_H = $(CORE_NOCFG_H) .\config.h ..\git_version.h
745 UUDMAP_H = ..\uudmap.h
746 BITCOUNT_H = ..\bitcount.h
747 MG_DATA_H = ..\mg_data.h
748 GENERATED_HEADERS = $(UUDMAP_H) $(BITCOUNT_H) $(MG_DATA_H)
750 MICROCORE_OBJ = $(MICROCORE_SRC:.c=.obj)
751 CORE_OBJ = $(MICROCORE_OBJ) $(EXTRACORE_SRC:.c=.obj)
752 WIN32_OBJ = $(WIN32_SRC:.c=.obj)
753 MINICORE_OBJ = $(MICROCORE_OBJ:..\=.\mini\) \
754 $(MINIDIR)\miniperlmain$(o) \
755 $(MINIDIR)\perlio$(o)
756 MINIWIN32_OBJ = $(WIN32_OBJ:.\=.\mini\)
757 MINI_OBJ = $(MINICORE_OBJ) $(MINIWIN32_OBJ)
758 DLL_OBJ = $(DYNALOADER)
759 X2P_OBJ = $(X2P_SRC:.c=.obj)
760 GENUUDMAP_OBJ = $(GENUUDMAP:.exe=.obj)
762 PERLDLL_OBJ = $(CORE_OBJ)
763 PERLEXE_OBJ = perlmain$(o)
764 PERLEXEST_OBJ = perlmainst$(o)
766 PERLDLL_OBJ = $(PERLDLL_OBJ) $(WIN32_OBJ) $(DLL_OBJ)
768 !IF "$(USE_SETARGV)" != ""
769 SETARGV_OBJ = setargv$(o)
772 !IF "$(ALL_STATIC)" == "define"
773 # some exclusions, unfortunately, until fixed:
774 # - MakeMaker isn't capable enough for SDBM_File (small bug)
775 STATIC_EXT = * !SDBM_File
777 # specify static extensions here, for example:
778 # (be sure to include Win32CORE to load Win32 on demand)
779 #STATIC_EXT = Win32CORE Cwd Compress/Raw/Zlib
780 STATIC_EXT = Win32CORE
783 DYNALOADER = ..\DynaLoader$(o)
786 "INST_TOP=$(INST_TOP)" \
787 "INST_VER=$(INST_VER)" \
788 "INST_ARCH=$(INST_ARCH)" \
789 "archname=$(ARCHNAME)" \
792 "ccflags=$(EXTRACFLAGS) $(OPTIMIZE:"=\") $(DEFINES) $(BUILDOPT)" \
793 "cf_email=$(EMAIL)" \
794 "d_mymalloc=$(PERL_MALLOC)" \
796 "incpath=$(CCINCDIR:"=\")" \
797 "libperl=$(PERLIMPLIB:..\=)" \
798 "libpth=$(CCLIBDIR:"=\");$(EXTRALIBDIRS:"=\")" \
800 "make=$(MAKE_BARE)" \
801 "static_ext=$(STATIC_EXT)" \
802 "usethreads=$(USE_ITHREADS)" \
803 "useithreads=$(USE_ITHREADS)" \
804 "usemultiplicity=$(USE_MULTI)" \
805 "useperlio=$(USE_PERLIO)" \
806 "use64bitint=$(USE_64_BIT_INT)" \
807 "uselargefiles=$(USE_LARGE_FILES)" \
808 "usesitecustomize=$(USE_SITECUST)" \
809 "LINK_FLAGS=$(LINK_FLAGS:"=\")" \
810 "optimize=$(OPTIMIZE:"=\")" \
813 ICWD = -I..\dist\Cwd -I..\dist\Cwd\lib
819 all : .\config.h ..\git_version.h $(GLOBEXE) $(MINIMOD) $(CONFIGPM) \
820 $(UNIDATAFILES) MakePPPort $(PERLEXE) $(X2P) Extensions_nonxs Extensions $(PERLSTATIC)
821 @echo Everything is up to date. '$(MAKE_BARE) test' to run test suite.
823 regnodes : ..\regnodes.h
825 ..\regcomp$(o) : ..\regnodes.h ..\regcharclass.h
827 ..\regexec$(o) : ..\regnodes.h ..\regcharclass.h
829 reonly : regnodes .\config.h ..\git_version.h $(GLOBEXE) $(MINIMOD) $(CONFIGPM) \
830 $(UNIDATAFILES) $(PERLEXE) $(X2P) Extensions_reonly
831 @echo Perl and 're' are up to date.
833 static: $(PERLEXESTATIC)
835 #------------------------------------------------------------
837 $(GLOBEXE) : perlglob$(o)
838 $(LINK32) $(LINK_FLAGS) $(LIBFILES) -out:$@ -subsystem:$(SUBSYS) \
839 perlglob$(o) setargv$(o)
842 perlglob$(o) : perlglob.c
844 config.w32 : $(CFGSH_TMPL)
845 copy $(CFGSH_TMPL) config.w32
848 # Copy the template config.h and set configurables at the end of it
849 # as per the options chosen and compiler used.
850 # Note: This config.h is only used to build miniperl.exe anyway, but
851 # it's as well to have its options correct to be sure that it builds
852 # and so that it's "-V" options are correct for use by makedef.pl. The
853 # real config.h used to build perl.exe is generated from the top-level
854 # config_h.SH by config_h.PL (run by miniperl.exe).
856 .\config.h : $(CFGH_TMPL)
858 copy $(CFGH_TMPL) config.h
860 @echo #ifndef _config_h_footer_>>$@
861 @echo #define _config_h_footer_>>$@
862 @echo #undef PTRSIZE>>$@
863 @echo #undef SSize_t>>$@
864 @echo #undef HAS_ATOLL>>$@
865 @echo #undef HAS_STRTOLL>>$@
866 @echo #undef HAS_STRTOULL>>$@
867 @echo #undef IVTYPE>>$@
868 @echo #undef UVTYPE>>$@
869 @echo #undef IVSIZE>>$@
870 @echo #undef UVSIZE>>$@
871 @echo #undef NV_PRESERVES_UV>>$@
872 @echo #undef NV_PRESERVES_UV_BITS>>$@
873 @echo #undef IVdf>>$@
874 @echo #undef UVuf>>$@
875 @echo #undef UVof>>$@
876 @echo #undef UVxf>>$@
877 @echo #undef UVXf>>$@
878 @echo #undef USE_64_BIT_INT>>$@
879 @echo #undef Size_t_size>>$@
880 !IF "$(WIN64)"=="define"
881 @echo #define PTRSIZE ^8>>$@
882 @echo #define SSize_t __int64>>$@
883 @echo #define HAS_ATOLL>>$@
884 @echo #define HAS_STRTOLL>>$@
885 @echo #define HAS_STRTOULL>>$@
886 @echo #define Size_t_size ^8>>$@
888 @echo #define PTRSIZE ^4>>$@
889 @echo #define SSize_t int>>$@
890 @echo #undef HAS_ATOLL>>$@
891 @echo #undef HAS_STRTOLL>>$@
892 @echo #undef HAS_STRTOULL>>$@
893 @echo #define Size_t_size ^4>>$@
895 !IF "$(USE_64_BIT_INT)"=="define"
896 @echo #define IVTYPE __int64>>$@
897 @echo #define UVTYPE unsigned __int64>>$@
898 @echo #define IVSIZE ^8>>$@
899 @echo #define UVSIZE ^8>>$@
900 @echo #undef NV_PRESERVES_UV>>$@
901 @echo #define NV_PRESERVES_UV_BITS 53>>$@
902 @echo #define IVdf "I64d">>$@
903 @echo #define UVuf "I64u">>$@
904 @echo #define UVof "I64o">>$@
905 @echo #define UVxf "I64x">>$@
906 @echo #define UVXf "I64X">>$@
907 @echo #define USE_64_BIT_INT>>$@
909 @echo #define IVTYPE long>>$@
910 @echo #define UVTYPE unsigned long>>$@
911 @echo #define IVSIZE ^4>>$@
912 @echo #define UVSIZE ^4>>$@
913 @echo #define NV_PRESERVES_UV>>$@
914 @echo #define NV_PRESERVES_UV_BITS 32>>$@
915 @echo #define IVdf "ld">>$@
916 @echo #define UVuf "lu">>$@
917 @echo #define UVof "lo">>$@
918 @echo #define UVxf "lx">>$@
919 @echo #define UVXf "lX">>$@
920 @echo #undef USE_64_BIT_INT>>$@
924 ..\git_version.h : $(MINIPERL) ..\make_patchnum.pl
926 miniperl -Ilib make_patchnum.pl
929 # make sure that we recompile perl.c if the git version changes
930 ..\perl$(o) : ..\git_version.h
932 ..\config.sh : config.w32 $(MINIPERL) config_sh.PL FindExt.pm
933 $(MINIPERL) -I..\lib config_sh.PL $(CFG_VARS) config.w32 > ..\config.sh
935 # This target is for when changes to the main config.sh happen.
936 # Edit config.vc, then make perl in a minimal configuration (i.e. with MULTI,
937 # ITHREADS, IMP_SYS, LARGE_FILES and PERLIO off), then make this target
938 # to regenerate config_H.vc.
940 $(MINIPERL) -I..\lib config_sh.PL $(CFG_VARS) $(CFGSH_TMPL) > ..\config.sh
941 $(MINIPERL) -I..\lib ..\configpm --chdir=..
943 -$(MINIPERL) -I..\lib config_h.PL
944 rename config.h $(CFGH_TMPL)
946 $(CONFIGPM) : $(MINIPERL) ..\config.sh config_h.PL ..\minimod.pl
947 $(MINIPERL) -I..\lib ..\configpm --chdir=..
948 if exist lib\* $(RCOPY) lib\*.* ..\lib\$(NULL)
949 $(XCOPY) ..\*.h $(COREDIR)\*.*
950 $(XCOPY) *.h $(COREDIR)\*.*
951 $(RCOPY) include $(COREDIR)\*.*
952 -$(MINIPERL) -I..\lib config_h.PL
953 if errorlevel 1 $(MAKE) /$(MAKEFLAGS) $(CONFIGPM)
955 # See the comment in Makefile.SH explaining this seemingly cranky ordering
956 $(MINIPERL) : ..\lib\buildcustomize.pl
958 ..\lib\buildcustomize.pl : $(MINIDIR) $(MINI_OBJ) ..\write_buildcustomize.pl
959 $(LINK32) -subsystem:console -out:$(MINIPERL) @<<
960 $(LINK_FLAGS) $(DELAYLOAD) $(LIBFILES) $(MINI_OBJ)
963 $(MINIPERL) -I..\lib -f ..\write_buildcustomize.pl ..
966 if not exist "$(MINIDIR)" mkdir "$(MINIDIR)"
968 $(MINICORE_OBJ) : $(CORE_NOCFG_H)
969 $(CC) -c $(CFLAGS) -DPERL_EXTERNAL_GLOB -DPERL_IS_MINIPERL $(OBJOUT_FLAG)$@ ..\$(*F).c
971 $(MINIWIN32_OBJ) : $(CORE_NOCFG_H)
972 $(CC) -c $(CFLAGS) -DPERL_IS_MINIPERL $(OBJOUT_FLAG)$@ $(*F).c
974 # -DPERL_IMPLICIT_SYS needs C++ for perllib.c
975 # This is the only file that depends on perlhost.h, vmem.h, and vdir.h
976 !IF "$(USE_IMP_SYS)" == "define"
977 perllib$(o) : perllib.c .\perlhost.h .\vdir.h .\vmem.h
978 $(CC) -c -I. $(CFLAGS_O) $(CXX_FLAG) $(OBJOUT_FLAG)$@ perllib.c
981 # 1. we don't want to rebuild miniperl.exe when config.h changes
982 # 2. we don't want to rebuild miniperl.exe with non-default config.h
983 # 3. we can't have miniperl.exe depend on git_version.h, as miniperl creates it
984 $(MINI_OBJ) : $(CORE_NOCFG_H)
986 $(WIN32_OBJ) : $(CORE_H)
987 $(CORE_OBJ) : $(CORE_H)
988 $(DLL_OBJ) : $(CORE_H)
989 $(X2P_OBJ) : $(CORE_H)
991 perldll.def : $(MINIPERL) $(CONFIGPM) ..\embed.fnc ..\makedef.pl create_perllibst_h.pl
992 $(MINIPERL) -I..\lib create_perllibst_h.pl
993 $(MINIPERL) -I..\lib -w ..\makedef.pl PLATFORM=win32 $(OPTIMIZE) $(DEFINES) $(BUILDOPT) \
994 CCTYPE=$(CCTYPE) TARG_DIR=..\ > perldll.def
996 $(PERLDLL): perldll.def $(PERLDLL_OBJ) $(PERLDLL_RES) Extensions_static
997 $(LINK32) -dll -def:perldll.def -base:0x28000000 -out:$@ @Extensions_static @<<
998 $(LINK_FLAGS) $(DELAYLOAD) $(LIBFILES) $(PERLDLL_OBJ) $(PERLDLL_RES)
1001 $(XCOPY) $(PERLIMPLIB) $(COREDIR)
1003 $(PERLSTATICLIB): Extensions_static
1004 $(LIB32) $(LIB_FLAGS) -out:$@ @Extensions_static @<<
1007 $(XCOPY) $(PERLSTATICLIB) $(COREDIR)
1009 $(PERLEXE_RES): perlexe.rc $(PERLEXE_MANIFEST) $(PERLEXE_ICO)
1011 $(MINIMOD) : $(MINIPERL) ..\minimod.pl
1013 miniperl minimod.pl > lib\ExtUtils\Miniperl.pm
1016 ..\x2p\a2p$(o) : ..\x2p\a2p.c
1017 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\a2p.c
1019 ..\x2p\hash$(o) : ..\x2p\hash.c
1020 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\hash.c
1022 ..\x2p\str$(o) : ..\x2p\str.c
1023 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\str.c
1025 ..\x2p\util$(o) : ..\x2p\util.c
1026 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\util.c
1028 ..\x2p\walk$(o) : ..\x2p\walk.c
1029 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\walk.c
1031 $(X2P) : $(MINIPERL) $(X2P_OBJ) Extensions
1032 $(MINIPERL) -I..\lib ..\x2p\find2perl.PL
1033 $(MINIPERL) -I..\lib ..\x2p\s2p.PL
1034 $(LINK32) -subsystem:console -out:$@ @<<
1035 $(LINK_FLAGS) $(LIBFILES) $(X2P_OBJ)
1039 $(MINIDIR)\globals$(o) : $(GENERATED_HEADERS)
1041 $(UUDMAP_H) $(MG_DATA_H) : $(BITCOUNT_H)
1043 $(BITCOUNT_H) : $(GENUUDMAP)
1044 $(GENUUDMAP) $(GENERATED_HEADERS)
1046 $(GENUUDMAP_OBJ) : ..\mg_raw.h
1048 $(GENUUDMAP) : $(GENUUDMAP_OBJ)
1049 $(LINK32) -subsystem:console -out:$@ @<<
1050 $(LINK_FLAGS) $(LIBFILES) $(GENUUDMAP_OBJ)
1054 perlmain.c : runperl.c
1055 copy runperl.c perlmain.c
1057 perlmain$(o) : perlmain.c
1058 $(CC) $(CFLAGS_O:-DPERLDLL=-UPERLDLL) $(OBJOUT_FLAG)$@ -c perlmain.c
1060 perlmainst.c : runperl.c
1061 copy runperl.c perlmainst.c
1063 perlmainst$(o) : perlmainst.c
1064 $(CC) $(CFLAGS_O) $(OBJOUT_FLAG)$@ -c perlmainst.c
1066 $(PERLEXE): $(PERLDLL) $(CONFIGPM) $(PERLEXE_OBJ) $(PERLEXE_RES)
1067 $(LINK32) -subsystem:console -out:$@ $(LINK_FLAGS) \
1068 $(PERLEXE_OBJ) $(PERLEXE_RES) $(PERLIMPLIB) $(LIBFILES) $(SETARGV_OBJ)
1070 copy $(PERLEXE) $(WPERLEXE)
1071 $(MINIPERL) -I..\lib bin\exetype.pl $(WPERLEXE) WINDOWS
1073 $(PERLEXESTATIC): $(PERLSTATICLIB) $(CONFIGPM) $(PERLEXEST_OBJ) $(PERLEXE_RES)
1074 $(LINK32) -subsystem:console -out:$@ $(LINK_FLAGS) \
1075 $(PERLEXEST_OBJ) $(PERLEXE_RES) $(PERLSTATICLIB) $(LIBFILES) $(SETARGV_OBJ)
1078 MakePPPort: $(MINIPERL) $(CONFIGPM) Extensions_nonxs
1079 $(MINIPERL) -I..\lib ..\mkppport
1081 #-------------------------------------------------------------------------------
1082 # There's no direct way to mark a dependency on
1083 # DynaLoader.pm, so this will have to do
1084 Extensions: ..\make_ext.pl ..\lib\buildcustomize.pl $(PERLDEP) $(CONFIGPM) $(DYNALOADER)
1085 $(XCOPY) ..\*.h $(COREDIR)\*.*
1086 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --dynamic
1088 Extensions_reonly: ..\make_ext.pl ..\lib\buildcustomize.pl $(PERLDEP) $(CONFIGPM) $(DYNALOADER)
1089 $(XCOPY) ..\*.h $(COREDIR)\*.*
1090 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --dynamic +re
1092 Extensions_static : ..\make_ext.pl ..\lib\buildcustomize.pl list_static_libs.pl $(PERLDEP) $(CONFIGPM)
1093 $(XCOPY) ..\*.h $(COREDIR)\*.*
1094 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --static
1095 $(MINIPERL) -I..\lib list_static_libs.pl > Extensions_static
1097 Extensions_nonxs: ..\make_ext.pl ..\lib\buildcustomize.pl $(PERLDEP) $(CONFIGPM) ..\pod\perlfunc.pod
1098 $(XCOPY) ..\*.h $(COREDIR)\*.*
1099 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --nonxs
1101 $(DYNALOADER) : ..\make_ext.pl ..\lib\buildcustomize.pl $(PERLDEP) $(CONFIGPM) Extensions_nonxs
1102 $(XCOPY) ..\*.h $(COREDIR)\*.*
1103 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(EXTDIR) --dynaloader
1106 -if exist $(MINIPERL) $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --all --target=clean
1108 Extensions_realclean:
1109 -if exist $(MINIPERL) $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --all --target=realclean
1111 #-------------------------------------------------------------------------------
1113 doc: $(PERLEXE) ..\pod\perltoc.pod
1114 $(PERLEXE) -I..\lib ..\installhtml --podroot=.. --htmldir=$(HTMLDIR) \
1115 --podpath=pod:lib:utils --htmlroot="file://$(INST_HTML::=|)" \
1118 # Note that this next section is parsed (and regenerated) by pod/buildtoc
1119 # so please check that script before making structural changes here
1121 utils: $(PERLEXE) $(X2P)
1123 $(MAKE) PERL=$(MINIPERL)
1125 copy ..\README.aix ..\pod\perlaix.pod
1126 copy ..\README.amiga ..\pod\perlamiga.pod
1127 copy ..\README.bs2000 ..\pod\perlbs2000.pod
1128 copy ..\README.ce ..\pod\perlce.pod
1129 copy ..\README.cn ..\pod\perlcn.pod
1130 copy ..\README.cygwin ..\pod\perlcygwin.pod
1131 copy ..\README.dos ..\pod\perldos.pod
1132 copy ..\README.freebsd ..\pod\perlfreebsd.pod
1133 copy ..\README.haiku ..\pod\perlhaiku.pod
1134 copy ..\README.hpux ..\pod\perlhpux.pod
1135 copy ..\README.hurd ..\pod\perlhurd.pod
1136 copy ..\README.irix ..\pod\perlirix.pod
1137 copy ..\README.jp ..\pod\perljp.pod
1138 copy ..\README.ko ..\pod\perlko.pod
1139 copy ..\README.linux ..\pod\perllinux.pod
1140 copy ..\README.macos ..\pod\perlmacos.pod
1141 copy ..\README.macosx ..\pod\perlmacosx.pod
1142 copy ..\README.netware ..\pod\perlnetware.pod
1143 copy ..\README.openbsd ..\pod\perlopenbsd.pod
1144 copy ..\README.os2 ..\pod\perlos2.pod
1145 copy ..\README.os390 ..\pod\perlos390.pod
1146 copy ..\README.os400 ..\pod\perlos400.pod
1147 copy ..\README.plan9 ..\pod\perlplan9.pod
1148 copy ..\README.qnx ..\pod\perlqnx.pod
1149 copy ..\README.riscos ..\pod\perlriscos.pod
1150 copy ..\README.solaris ..\pod\perlsolaris.pod
1151 copy ..\README.symbian ..\pod\perlsymbian.pod
1152 copy ..\README.tru64 ..\pod\perltru64.pod
1153 copy ..\README.tw ..\pod\perltw.pod
1154 copy ..\README.vos ..\pod\perlvos.pod
1155 copy ..\README.win32 ..\pod\perlwin32.pod
1156 copy ..\pod\perldelta.pod ..\pod\perl5191delta.pod
1158 $(PERLEXE) $(PL2BAT) $(UTILS)
1159 $(PERLEXE) $(ICWD) ..\autodoc.pl ..
1160 $(PERLEXE) $(ICWD) ..\pod\perlmodlib.pl -q
1162 ..\pod\perltoc.pod: $(PERLEXE) Extensions Extensions_nonxs
1163 $(PERLEXE) -f ..\pod\buildtoc -q
1165 # Note that the pod cleanup in this next section is parsed (and regenerated
1166 # by pod/buildtoc so please check that script before making changes here
1168 distclean: realclean
1169 -del /f $(MINIPERL) $(PERLEXE) $(PERLDLL) $(GLOBEXE) \
1170 $(PERLIMPLIB) ..\miniperl.lib $(MINIMOD) \
1171 $(PERLEXESTATIC) $(PERLSTATICLIB)
1173 -del /f $(LIBDIR)\Encode.pm $(LIBDIR)\encoding.pm $(LIBDIR)\Errno.pm
1174 -del /f $(LIBDIR)\Config.pod $(LIBDIR)\POSIX.pod $(LIBDIR)\threads.pm
1175 -del /f $(LIBDIR)\.exists $(LIBDIR)\attributes.pm $(LIBDIR)\DynaLoader.pm
1176 -del /f $(LIBDIR)\Fcntl.pm $(LIBDIR)\IO.pm $(LIBDIR)\Opcode.pm
1177 -del /f $(LIBDIR)\ops.pm $(LIBDIR)\Safe.pm
1178 -del /f $(LIBDIR)\SDBM_File.pm $(LIBDIR)\Socket.pm $(LIBDIR)\POSIX.pm
1179 -del /f $(LIBDIR)\B.pm $(LIBDIR)\O.pm $(LIBDIR)\re.pm
1180 -del /f $(LIBDIR)\File\Glob.pm
1181 -del /f $(LIBDIR)\Storable.pm
1182 -del /f $(LIBDIR)\Sys\Hostname.pm
1183 -del /f $(LIBDIR)\Time\HiRes.pm
1184 -del /f $(LIBDIR)\Unicode\Normalize.pm
1185 -del /f $(LIBDIR)\Math\BigInt\FastCalc.pm
1186 -del /f $(LIBDIR)\Win32.pm
1187 -del /f $(LIBDIR)\Win32CORE.pm
1188 -del /f $(LIBDIR)\Win32API\File.pm
1189 -del /f $(LIBDIR)\Win32API\File\cFile.pc
1190 -del /f $(LIBDIR)\buildcustomize.pl
1191 -del /f $(DISTDIR)\XSLoader\XSLoader.pm
1192 -if exist $(LIBDIR)\App rmdir /s /q $(LIBDIR)\App
1193 -if exist $(LIBDIR)\Archive rmdir /s /q $(LIBDIR)\Archive
1194 -if exist $(LIBDIR)\Attribute rmdir /s /q $(LIBDIR)\Attribute
1195 -if exist $(LIBDIR)\autodie rmdir /s /q $(LIBDIR)\autodie
1196 -if exist $(LIBDIR)\B rmdir /s /q $(LIBDIR)\B
1197 -if exist $(LIBDIR)\CGI rmdir /s /q $(LIBDIR)\CGI
1198 -if exist $(LIBDIR)\CPAN rmdir /s /q $(LIBDIR)\CPAN
1199 -if exist $(LIBDIR)\Compress rmdir /s /q $(LIBDIR)\Compress
1200 -if exist $(LIBDIR)\Data rmdir /s /q $(LIBDIR)\Data
1201 -if exist $(LIBDIR)\Devel rmdir /s /q $(LIBDIR)\Devel
1202 -if exist $(LIBDIR)\Digest rmdir /s /q $(LIBDIR)\Digest
1203 -if exist $(LIBDIR)\Encode rmdir /s /q $(LIBDIR)\Encode
1204 -if exist $(LIBDIR)\encoding rmdir /s /q $(LIBDIR)\encoding
1205 -if exist $(LIBDIR)\ExtUtils\CBuilder rmdir /s /q $(LIBDIR)\ExtUtils\CBuilder
1206 -if exist $(LIBDIR)\ExtUtils\Command rmdir /s /q $(LIBDIR)\ExtUtils\Command
1207 -if exist $(LIBDIR)\ExtUtils\Constant rmdir /s /q $(LIBDIR)\ExtUtils\Constant
1208 -if exist $(LIBDIR)\ExtUtils\Liblist rmdir /s /q $(LIBDIR)\ExtUtils\Liblist
1209 -if exist $(LIBDIR)\ExtUtils\MakeMaker rmdir /s /q $(LIBDIR)\ExtUtils\MakeMaker
1210 -if exist $(LIBDIR)\File\Spec rmdir /s /q $(LIBDIR)\File\Spec
1211 -if exist $(LIBDIR)\Filter rmdir /s /q $(LIBDIR)\Filter
1212 -if exist $(LIBDIR)\Hash rmdir /s /q $(LIBDIR)\Hash
1213 -if exist $(LIBDIR)\I18N\LangTags rmdir /s /q $(LIBDIR)\I18N\LangTags
1214 -if exist $(LIBDIR)\inc rmdir /s /q $(LIBDIR)\inc
1215 -if exist $(LIBDIR)\Module\Pluggable rmdir /s /q $(LIBDIR)\Module\Pluggable
1216 -if exist $(LIBDIR)\IO rmdir /s /q $(LIBDIR)\IO
1217 -if exist $(LIBDIR)\IPC rmdir /s /q $(LIBDIR)\IPC
1218 -if exist $(LIBDIR)\List rmdir /s /q $(LIBDIR)\List
1219 -if exist $(LIBDIR)\Locale rmdir /s /q $(LIBDIR)\Locale
1220 -if exist $(LIBDIR)\Log rmdir /s /q $(LIBDIR)\Log
1221 -if exist $(LIBDIR)\Math rmdir /s /q $(LIBDIR)\Math
1222 -if exist $(LIBDIR)\Memoize rmdir /s /q $(LIBDIR)\Memoize
1223 -if exist $(LIBDIR)\MIME rmdir /s /q $(LIBDIR)\MIME
1224 -if exist $(LIBDIR)\Module rmdir /s /q $(LIBDIR)\Module
1225 -if exist $(LIBDIR)\mro rmdir /s /q $(LIBDIR)\mro
1226 -if exist $(LIBDIR)\Net\FTP rmdir /s /q $(LIBDIR)\Net\FTP
1227 -if exist $(LIBDIR)\Object rmdir /s /q $(LIBDIR)\Object
1228 -if exist $(LIBDIR)\Package rmdir /s /q $(LIBDIR)\Package
1229 -if exist $(LIBDIR)\Params rmdir /s /q $(LIBDIR)\Params
1230 -if exist $(LIBDIR)\Parse rmdir /s /q $(LIBDIR)\Parse
1231 -if exist $(LIBDIR)\PerlIO rmdir /s /q $(LIBDIR)\PerlIO
1232 -if exist $(LIBDIR)\Pod\Perldoc rmdir /s /q $(LIBDIR)\Pod\Perldoc
1233 -if exist $(LIBDIR)\Pod\Simple rmdir /s /q $(LIBDIR)\Pod\Simple
1234 -if exist $(LIBDIR)\Pod\Text rmdir /s /q $(LIBDIR)\Pod\Text
1235 -if exist $(LIBDIR)\re rmdir /s /q $(LIBDIR)\re
1236 -if exist $(LIBDIR)\Scalar rmdir /s /q $(LIBDIR)\Scalar
1237 -if exist $(LIBDIR)\Sys rmdir /s /q $(LIBDIR)\Sys
1238 -if exist $(LIBDIR)\TAP rmdir /s /q $(LIBDIR)\TAP
1239 -if exist $(LIBDIR)\Term\UI rmdir /s /q $(LIBDIR)\Term\UI
1240 -if exist $(LIBDIR)\Test rmdir /s /q $(LIBDIR)\Test
1241 -if exist $(LIBDIR)\Thread rmdir /s /q $(LIBDIR)\Thread
1242 -if exist $(LIBDIR)\threads rmdir /s /q $(LIBDIR)\threads
1243 -if exist $(LIBDIR)\Tie\Hash rmdir /s /q $(LIBDIR)\Tie\Hash
1244 -if exist $(LIBDIR)\Unicode\Collate rmdir /s /q $(LIBDIR)\Unicode\Collate
1245 -if exist $(LIBDIR)\XS rmdir /s /q $(LIBDIR)\XS
1246 -if exist $(LIBDIR)\Win32API rmdir /s /q $(LIBDIR)\Win32API
1247 -cd $(PODDIR) && del /f *.html *.bat roffitall \
1248 perl5191delta.pod perlaix.pod perlamiga.pod perlapi.pod \
1249 perlbs2000.pod perlce.pod perlcn.pod perlcygwin.pod perldos.pod \
1250 perlfreebsd.pod perlhaiku.pod perlhpux.pod perlhurd.pod \
1251 perlintern.pod perlirix.pod perljp.pod perlko.pod perllinux.pod \
1252 perlmacos.pod perlmacosx.pod perlmodlib.pod perlnetware.pod \
1253 perlopenbsd.pod perlos2.pod perlos390.pod perlos400.pod \
1254 perlplan9.pod perlqnx.pod perlriscos.pod perlsolaris.pod \
1255 perlsymbian.pod perltoc.pod perltru64.pod perltw.pod \
1256 perluniprops.pod perlvos.pod perlwin32.pod
1257 -cd ..\utils && del /f h2ph splain perlbug pl2pm c2ph pstruct h2xs \
1258 perldoc perlivp libnetcfg enc2xs piconv cpan *.bat \
1259 xsubpp pod2html instmodsh json_pp prove ptar ptardiff ptargrep shasum corelist config_data zipdetails
1260 -cd ..\x2p && del /f find2perl s2p psed *.bat
1261 -del /f ..\config.sh perlmain.c dlutils.c config.h.new \
1264 -del /f ..\lib\Config_git.pl
1267 -del /f $(PERLEXE_RES) perl.base
1268 -cd .. && del /s *.lib *.map *.pdb *.ilk *.bs *$(o) .exists pm_to_blib ppport.h
1269 -cd $(EXTDIR) && del /s *.def Makefile Makefile.old
1270 -cd $(DISTDIR) && del /s *.def Makefile Makefile.old
1271 -cd $(CPANDIR) && del /s *.def Makefile Makefile.old
1272 -if exist $(AUTODIR) rmdir /s /q $(AUTODIR)
1273 -if exist $(COREDIR) rmdir /s /q $(COREDIR)
1274 -if exist pod2htmd.tmp del pod2htmd.tmp
1275 -if exist $(HTMLDIR) rmdir /s /q $(HTMLDIR)
1276 -del /f ..\t\test_state
1278 install : all installbare installhtml
1280 installbare : utils ..\pod\perltoc.pod
1281 $(PERLEXE) ..\installperl
1282 if exist $(WPERLEXE) $(XCOPY) $(WPERLEXE) $(INST_BIN)\*.*
1283 if exist $(PERLEXESTATIC) $(XCOPY) $(PERLEXESTATIC) $(INST_BIN)\*.*
1284 $(XCOPY) $(GLOBEXE) $(INST_BIN)\*.*
1285 if exist ..\perl*.pdb $(XCOPY) ..\perl*.pdb $(INST_BIN)\*.*
1286 if exist ..\x2p\a2p.pdb $(XCOPY) ..\x2p\a2p.pdb $(INST_BIN)\*.*
1287 $(XCOPY) bin\*.bat $(INST_SCRIPT)\*.*
1290 $(RCOPY) $(HTMLDIR)\*.* $(INST_HTML)\*.*
1292 inst_lib : $(CONFIGPM)
1293 $(RCOPY) ..\lib $(INST_LIB)\*.*
1295 $(UNIDATAFILES) ..\pod\perluniprops.pod : $(MINIPERL) $(CONFIGPM) ..\lib\unicore\mktables Extensions_nonxs
1296 cd ..\lib\unicore && \
1297 ..\$(MINIPERL) -I.. -I..\..\dist\Cwd\lib -I..\..\dist\Cwd mktables -P ..\..\pod -maketest -makelist -p -check $@ $(FIRSTUNIFILE)
1299 minitest : $(MINIPERL) $(GLOBEXE) $(CONFIGPM) utils $(UNIDATAFILES)
1300 $(XCOPY) $(MINIPERL) ..\t\$(NULL)
1301 if exist ..\t\perl.exe del /f ..\t\perl.exe
1302 rename ..\t\miniperl.exe perl.exe
1303 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1306 $(MINIPERL) -I..\lib harness base/*.t comp/*.t cmd/*.t io/*.t opbasic/*.t op/*.t pragma/*.t
1308 test-prep : all utils ../pod/perltoc.pod
1309 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1310 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1311 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1312 set PERL_STATIC_EXT=$(STATIC_EXT)
1316 $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES)
1319 test_porting : test-prep
1321 $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) porting\*.t ..\lib\diagnostics.t
1324 test-reonly : reonly utils
1325 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1326 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1327 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1329 $(PERLEXE) -I..\lib harness $(OPT) -re \bre\\/ $(EXTRA)
1337 test-notty : test-prep
1338 set PERL_SKIP_TTY_TEST=1
1340 $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES)
1344 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1345 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1346 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1348 $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES)
1352 -@$(DEL) miniperlmain$(o)
1353 -@$(DEL) $(MINIPERL)
1354 -@$(DEL) perlglob$(o)
1355 -@$(DEL) perlmain$(o)
1356 -@$(DEL) perlmainst$(o)
1359 -@$(DEL) ..\git_version.h
1362 -@$(DEL) $(WPERLEXE)
1363 -@$(DEL) $(PERLEXESTATIC)
1364 -@$(DEL) $(PERLSTATICLIB)
1366 -@$(DEL) $(CORE_OBJ)
1367 -@$(DEL) $(GENUUDMAP) $(GENUUDMAP_OBJ) $(GENERATED_HEADERS)
1368 -if exist $(MINIDIR) rmdir /s /q $(MINIDIR)
1369 -if exist $(UNIDATADIR1) rmdir /s /q $(UNIDATADIR1)
1370 -if exist $(UNIDATADIR2) rmdir /s /q $(UNIDATADIR2)
1371 -@$(DEL) $(UNIDATAFILES)
1372 -@$(DEL) $(WIN32_OBJ)
1375 -@$(DEL) ..\*$(o) ..\*.lib ..\*.exp *$(o) *.lib *.exp *.res
1376 -@$(DEL) ..\t\*.exe ..\t\*.dll ..\t\*.bat
1377 -@$(DEL) ..\x2p\*.exe ..\x2p\*.bat
1380 -@$(DEL) Extensions_static
1382 clean : Extensions_clean _clean
1384 realclean : Extensions_realclean _clean
1386 # Handy way to run perlbug -ok without having to install and run the
1387 # installed perlbug. We don't re-run the tests here - we trust the user.
1388 # Please *don't* use this unless all tests pass.
1389 # If you want to report test failures, use "nmake nok" instead.
1391 $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)"
1394 $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)" -F perl.ok
1397 $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)"
1400 $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)" -F perl.nok