2 # Makefile to build perl on Windows using DMAKE.
4 # Microsoft Visual C++ 6.0 or later
5 # MinGW with gcc-3.4.5 or later
6 # Windows SDK 64-bit compiler and tools
8 # This is set up to build a perl.exe that runs off a shared library
9 # (perl521.dll). Also makes individual DLLs for the XS extensions.
13 ## Make sure you read README.win32 *before* you mess with anything here!
17 # Import everything from the environment like NMAKE does.
22 ## Build configuration. Edit the values below to suit your needs.
26 # Set these to wherever you want "dmake install" to put your
30 INST_TOP *= $(INST_DRV)\perl
33 # Uncomment if you want to build a 32-bit Perl using a 32-bit compiler
34 # on a 64-bit version of Windows.
38 # Comment this out if you DON'T want your perl installation to be versioned.
39 # This means that the new installation will overwrite any files from the
40 # old installation at the same INST_TOP location. Leaving it enabled is
41 # the safest route, as perl adds the extra version directory to all the
42 # locations it installs files to. If you disable it, an alternative
43 # versioned installation can be obtained by setting INST_TOP above to a
44 # path that includes an arbitrary version string.
49 # Comment this out if you DON'T want your perl installation to have
50 # architecture specific components. This means that architecture-
51 # specific files will be installed along with the architecture-neutral
52 # files. Leaving it enabled is safer and more flexible, in case you
53 # want to build multiple flavors of perl and install them together in
54 # the same location. Commenting it out gives you a simpler
55 # installation that is easier to understand for beginners.
57 #INST_ARCH *= \$(ARCHNAME)
60 # Uncomment this if you want perl to run
61 # $Config{sitelibexp}\sitecustomize.pl
62 # before anything else. This script can then be set up, for example,
63 # to add additional entries to @INC.
65 #USE_SITECUST *= define
68 # uncomment to enable multiple interpreters. This is needed for fork()
69 # emulation and for thread support, and is auto-enabled by USE_IMP_SYS
70 # and USE_ITHREADS below.
75 # Interpreter cloning/threads; now reasonably complete.
76 # This should be enabled to get the fork() emulation. This needs (and
77 # will auto-enable) USE_MULTI above.
79 USE_ITHREADS *= define
82 # uncomment to enable the implicit "host" layer for all system calls
83 # made by perl. This is also needed to get fork(). This needs (and
84 # will auto-enable) USE_MULTI above.
89 # Comment out next assign to disable perl's I/O subsystem and use compiler's
90 # stdio for IO - depending on your compiler vendor and run time library you may
91 # then get a number of fails from make test i.e. bugs - complain to them not us ;-).
92 # You will also be unable to take full advantage of perl5.8's support for multiple
93 # encodings and may see lower IO performance. You have been warned.
97 # Comment this out if you don't want to enable large file support for
98 # some reason. Should normally only be changed to maintain compatibility
99 # with an older release of perl.
100 USE_LARGE_FILES *= define
103 # Uncomment this if you're building a 32-bit perl and want 64-bit integers.
104 # (If you're building a 64-bit perl then you will have 64-bit integers whether
105 # or not this is uncommented.)
106 # Note: This option is not supported in 32-bit MSVC60 builds.
107 #USE_64_BIT_INT *= define
110 # uncomment exactly one of the following
112 # Visual C++ 6.x (aka Visual C++ 98)
114 # Visual C++ .NET 2002/2003 (aka Visual C++ 7.x) (full version)
116 # Visual C++ Toolkit 2003 (aka Visual C++ 7.x) (free command-line tools)
117 #CCTYPE *= MSVC70FREE
118 # Windows Server 2003 SP1 Platform SDK (April 2005)
120 # Visual C++ 2005 (aka Visual C++ 8.x) (full version)
122 # Visual C++ 2005 Express Edition (aka Visual C++ 8.x) (free version)
123 #CCTYPE *= MSVC80FREE
124 # Visual C++ 2008 (aka Visual C++ 9.x) (full version)
126 # Visual C++ 2008 Express Edition (aka Visual C++ 9.x) (free version)
127 #CCTYPE *= MSVC90FREE
128 # Visual C++ 2010 (aka Visual C++ 10.x) (full version)
130 # Visual C++ 2010 Express Edition (aka Visual C++ 10.x) (free version)
131 #CCTYPE = MSVC100FREE
132 # Visual C++ 2012 (aka Visual C++ 11.x) (full version)
134 # Visual C++ 2012 Express Edition (aka Visual C++ 11.x) (free version)
135 #CCTYPE = MSVC110FREE
136 # Visual C++ 2013 (aka Visual C++ 12.x) (full version)
138 # Visual C++ 2013 Express Edition (aka Visual C++ 12.x) (free version)
139 #CCTYPE = MSVC120FREE
140 # MinGW or mingw-w64 with gcc-3.4.5 or later
144 # If you are using GCC, 4.3 or later by default we add the -fwrapv option.
145 # See https://rt.perl.org/Ticket/Display.html?id=121505
150 # If you are using Intel C++ Compiler uncomment this
155 # uncomment next line if you want debug version of perl (big,slow)
156 # If not enabled, we automatically try to use maximum optimization
157 # with all compilers that are known to have a working optimizer.
162 # uncomment to enable linking with setargv.obj under the Visual C
163 # compiler. Setting this options enables perl to expand wildcards in
164 # arguments, but it may be harder to use alternate methods like
165 # File::DosGlob that are more powerful. This option is supported only with
168 #USE_SETARGV *= define
171 # set this if you wish to use perl's malloc
172 # WARNING: Turning this on/off WILL break binary compatibility with extensions
173 # you may have compiled with/without it. Be prepared to recompile all
174 # extensions if you change the default. Currently, this cannot be enabled
175 # if you ask for USE_IMP_SYS above.
177 #PERL_MALLOC *= define
180 # set this to enable debugging mstats
181 # This must be enabled to use the Devel::Peek::mstat() function. This cannot
182 # be enabled without PERL_MALLOC as well.
184 #DEBUG_MSTATS *= define
187 # set this to additionally provide a statically linked perl-static.exe.
188 # Note that dynamic loading will not work with this perl, so you must
189 # include required modules statically using the STATIC_EXT or ALL_STATIC
190 # variables below. A static library perl521s.lib will also be created.
191 # Ordinary perl.exe is not affected by this option.
193 #BUILD_STATIC *= define
196 # in addition to BUILD_STATIC the option ALL_STATIC makes *every*
197 # extension get statically built
198 # This will result in a very large perl executable, but the main purpose
199 # is to have proper linking set so as to be able to create miscellaneous
200 # executables with different built-in extensions
202 #ALL_STATIC *= define
205 # set the install locations of the compiler include/libraries
206 # Running VCVARS32.BAT is *required* when using Visual C.
207 # Some versions of Visual C don't define MSVCDIR in the environment,
208 # so you may have to set CCHOME explicitly (spaces in the path name should
211 .IF "$(CCTYPE)" == "GCC"
218 # uncomment this if you are using x86_64-w64-mingw32 cross-compiler
219 # ie if your gcc executable is called 'x86_64-w64-mingw32-gcc'
220 # instead of the usual 'gcc'.
225 # Following sets $Config{incpath} and $Config{libpth}
228 .IF "$(GCCCROSS)" == "define"
229 CCINCDIR *= $(CCHOME)\x86_64-w64-mingw32\include
230 CCLIBDIR *= $(CCHOME)\x86_64-w64-mingw32\lib
231 CCDLLDIR *= $(CCLIBDIR)
233 CCINCDIR *= $(CCHOME)\include
234 CCLIBDIR *= $(CCHOME)\lib
235 CCDLLDIR *= $(CCHOME)\bin
239 # Additional compiler flags can be specified here.
241 BUILDOPT *= $(BUILDOPTEXTRA)
244 # This should normally be disabled. Enabling it will disable the File::Glob
245 # implementation of CORE::glob.
247 #BUILDOPT += -DPERL_EXTERNAL_GLOB
250 # Perl needs to read scripts in text mode so that the DATA filehandle
251 # works correctly with seek() and tell(), or around auto-flushes of
252 # all filehandles (e.g. by system(), backticks, fork(), etc).
254 # The current version on the ByteLoader module on CPAN however only
255 # works if scripts are read in binary mode. But before you disable text
256 # mode script reading (and break some DATA filehandle functionality)
257 # please check first if an updated ByteLoader isn't available on CPAN.
259 BUILDOPT += -DPERL_TEXTMODE_SCRIPTS
262 # specify semicolon-separated list of extra directories that modules will
263 # look for libraries (spaces in path names need not be quoted)
268 # set this to point to cmd.exe (only needed if you use some
269 # alternate shell that doesn't grok cmd.exe style commands)
271 #SHELL *= g:\winnt\system32\cmd.exe
274 # set this to your email address (perl will guess a value from
275 # from your loginname and your hostname, which may not be right)
280 ## Build configuration ends.
283 ##################### CHANGE THESE ONLY IF YOU MUST #####################
286 DEBUG_MSTATS *= undef
288 USE_SITECUST *= undef
290 USE_ITHREADS *= undef
293 USE_LARGE_FILES *= undef
294 USE_64_BIT_INT *= undef
296 .IF "$(USE_IMP_SYS)" == "define"
300 .IF "$(PERL_MALLOC)" == "undef"
304 .IF "$(DEBUG_MSTATS)" == "define"
305 BUILDOPT += -DPERL_DEBUGGING_MSTATS
308 .IF "$(USE_IMP_SYS) $(USE_MULTI)" == "define undef"
312 .IF "$(USE_ITHREADS) $(USE_MULTI)" == "define undef"
316 .IF "$(USE_SITECUST)" == "define"
317 BUILDOPT += -DUSE_SITECUSTOMIZE
320 .IF "$(USE_MULTI)" != "undef"
321 BUILDOPT += -DPERL_IMPLICIT_CONTEXT
324 .IF "$(USE_IMP_SYS)" != "undef"
325 BUILDOPT += -DPERL_IMPLICIT_SYS
328 PROCESSOR_ARCHITECTURE *= x86
331 # When we are running from a 32bit cmd.exe on AMD64 then
332 # PROCESSOR_ARCHITECTURE is set to x86 and PROCESSOR_ARCHITEW6432
334 .IF "$(PROCESSOR_ARCHITEW6432)" != ""
335 PROCESSOR_ARCHITECTURE != $(PROCESSOR_ARCHITEW6432)
337 .ELIF "$(PROCESSOR_ARCHITECTURE)" == "AMD64" || "$(PROCESSOR_ARCHITECTURE)" == "IA64"
344 .IF "$(WIN64)" == "define"
345 USE_64_BIT_INT = define
348 # Treat 64-bit MSVC60 (doesn't really exist) as SDK2003SP1 because
349 # both link against MSVCRT.dll (which is part of Windows itself) and
350 # not against a compiler specific versioned runtime.
351 .IF "$(WIN64)" == "define" && "$(CCTYPE)" == "MSVC60"
355 # Disable the 64-bit-int option for (32-bit) MSVC60 builds since that compiler
356 # does not support it.
357 .IF "$(CCTYPE)" == "MSVC60"
358 USE_64_BIT_INT != undef
361 ARCHITECTURE = $(PROCESSOR_ARCHITECTURE)
362 .IF "$(ARCHITECTURE)" == "AMD64"
365 .IF "$(ARCHITECTURE)" == "IA64"
369 .IF "$(USE_MULTI)" == "define"
370 ARCHNAME = MSWin32-$(ARCHITECTURE)-multi
372 .IF "$(USE_PERLIO)" == "define"
373 ARCHNAME = MSWin32-$(ARCHITECTURE)-perlio
375 ARCHNAME = MSWin32-$(ARCHITECTURE)
379 .IF "$(USE_PERLIO)" == "define"
380 BUILDOPT += -DUSE_PERLIO
383 .IF "$(USE_ITHREADS)" == "define"
384 ARCHNAME !:= $(ARCHNAME)-thread
387 .IF "$(WIN64)" != "define"
388 .IF "$(USE_64_BIT_INT)" == "define"
389 ARCHNAME !:= $(ARCHNAME)-64int
393 ARCHDIR = ..\lib\$(ARCHNAME)
394 COREDIR = ..\lib\CORE
395 AUTODIR = ..\lib\auto
404 INST_SCRIPT = $(INST_TOP)$(INST_VER)\bin
405 INST_BIN = $(INST_SCRIPT)$(INST_ARCH)
406 INST_LIB = $(INST_TOP)$(INST_VER)\lib
407 INST_ARCHLIB = $(INST_LIB)$(INST_ARCH)
408 INST_COREDIR = $(INST_ARCHLIB)\CORE
409 INST_HTML = $(INST_TOP)$(INST_VER)\html
412 # Programs to compile, build .lib files and link
419 .IF "$(CCTYPE)" == "GCC"
421 .IF "$(GCCCROSS)" == "define"
422 ARCHPREFIX = x86_64-w64-mingw32-
425 CC = $(ARCHPREFIX)gcc
426 LINK32 = $(ARCHPREFIX)g++
427 LIB32 = $(ARCHPREFIX)ar rc
428 IMPLIB = $(ARCHPREFIX)dlltool
429 RSC = $(ARCHPREFIX)windres
431 GCCWRAPV *= $(shell for /f "delims=. tokens=1,2,3" %i in ('$(CC) -dumpversion') do @if "%i"=="4" (if "%j" geq "3" echo define) else if "%i" geq "5" (echo define))
433 .IF "$(GCCWRAPV)" == "define"
435 MINIBUILDOPT += -fwrapv
446 INCLUDES = -I.\include -I. -I.. -I$(COREDIR)
448 .IF "$(WIN64)" == "define"
449 DEFINES += -DWIN64 -DCONSERVATIVE
451 LOCDEFS = -DPERLDLL -DPERL_CORE
455 # Current releases of MinGW 5.1.4 (as of 11-Aug-2009) will fail to link
456 # correctly if -lmsvcrt is specified explicitly.
462 -lmoldname -lkernel32 -luser32 -lgdi32 \
463 -lwinspool -lcomdlg32 -ladvapi32 -lshell32 -lole32 \
464 -loleaut32 -lnetapi32 -luuid -lws2_32 -lmpr \
465 -lwinmm -lversion -lodbc32 -lodbccp32 -lcomctl32
467 .IF "$(CFG)" == "Debug"
468 OPTIMIZE = -g -O2 -DDEBUGGING
476 CFLAGS = $(EXTRACFLAGS) $(INCLUDES) $(DEFINES) $(LOCDEFS) $(OPTIMIZE)
477 LINK_FLAGS = $(LINK_DBG) -L"$(INST_COREDIR)" -L"$(CCLIBDIR)"
482 BUILDOPT += -fno-strict-aliasing -mms-bitfields
486 # All but the free version of VC++ 7.x can load DLLs on demand. Makes the test
487 # suite run in about 10% less time.
488 .IF "$(CCTYPE)" != "MSVC70FREE"
489 DELAYLOAD = -DELAYLOAD:ws2_32.dll delayimp.lib
492 # Visual C++ 2005 and 2008 (VC++ 8.x and 9.x) create manifest files for EXEs and
493 # DLLs. These either need copying everywhere with the binaries, or else need
494 # embedding in them otherwise MSVCR80.dll or MSVCR90.dll won't be found. For
495 # simplicity, embed them if they exist (and delete them afterwards so that they
496 # don't get installed too).
497 EMBED_EXE_MANI = if exist $@.manifest mt -nologo -manifest $@.manifest -outputresource:$@;1 && \
498 if exist $@.manifest del $@.manifest
499 EMBED_DLL_MANI = if exist $@.manifest mt -nologo -manifest $@.manifest -outputresource:$@;2 && \
500 if exist $@.manifest del $@.manifest
502 # Most relevant compiler-specific options fall into two groups:
503 # either pre-MSVC80 or MSVC80 onwards, so define a macro for this.
504 .IF "$(CCTYPE)" == "MSVC60" || \
505 "$(CCTYPE)" == "MSVC70" || "$(CCTYPE)" == "MSVC70FREE"
511 .IF "$(__ICC)" != "define"
518 LIB32 = $(LINK32) -lib
525 INCLUDES = -I$(COREDIR) -I.\include -I. -I..
526 #PCHFLAGS = -Fpc:\temp\vcmoduls.pch -YX
527 DEFINES = -DWIN32 -D_CONSOLE -DNO_STRICT
528 LOCDEFS = -DPERLDLL -DPERL_CORE
534 .IF "$(CFG)" == "Debug"
535 OPTIMIZE = -Od -MD -Zi -DDEBUGGING
538 # -O1 yields smaller code, which turns out to be faster than -O2 on x86 and x64
539 OPTIMIZE = -O1 -MD -Zi -DNDEBUG
540 # we enable debug symbols in release builds also
541 LINK_DBG = -debug -opt:ref,icf
542 # you may want to enable this if you want COFF symbols in the executables
543 # in addition to the PDB symbols. The default Dr. Watson that ships with
544 # Windows can use the the former but not latter. The free WinDbg can be
545 # installed to get better stack traces from just the PDB symbols, so we
546 # avoid the bloat of COFF symbols by default.
547 #LINK_DBG = $(LINK_DBG) -debugtype:both
548 .IF "$(CCTYPE)" != "MSVC60"
549 # enable Whole Program Optimizations (WPO) and Link Time Code Generation (LTCG)
556 .IF "$(WIN64)" == "define"
557 DEFINES += -DWIN64 -DCONSERVATIVE
558 OPTIMIZE += -fp:precise
561 # For now, silence warnings from VC++ 8.x onwards about "unsafe" CRT functions
562 # and POSIX CRT function names being deprecated.
563 .IF "$(PREMSVC80)" == "undef"
564 DEFINES += -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE
567 # In VS 2005 (VC++ 8.0) Microsoft changes time_t from 32-bit to
568 # 64-bit, even in 32-bit mode. It also provides the _USE_32BIT_TIME_T
569 # preprocessor option to revert back to the old functionality for
570 # backward compatibility. We define this symbol here for older 32-bit
571 # compilers only (which aren't using it at all) for the sole purpose
572 # of getting it into $Config{ccflags}. That way if someone builds
573 # Perl itself with e.g. VC6 but later installs an XS module using VC8
574 # the time_t types will still be compatible.
575 .IF "$(WIN64)" == "undef"
576 .IF "$(PREMSVC80)" == "define"
577 BUILDOPT += -D_USE_32BIT_TIME_T
582 oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.lib \
583 comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \
584 netapi32.lib uuid.lib ws2_32.lib mpr.lib winmm.lib \
585 version.lib odbc32.lib odbccp32.lib comctl32.lib
587 # Avoid __intel_new_proc_init link error for libircmt.
588 # libmmd is /MD equivelent, other variants exist.
589 # libmmd is Intel C's math addon funcs to MS CRT, contains long doubles, C99,
590 # and optimized C89 funcs
591 .IF "$(__ICC)" == "define"
592 LIBBASEFILES += libircmt.lib libmmd.lib
595 # The 64 bit Windows Server 2003 SP1 SDK compilers link against MSVCRT.dll, which
596 # doesn't include the buffer overrun verification code used by the /GS switch.
597 # Since the code links against libraries that are compiled with /GS, this
598 # "security cookie verification" code must be included via bufferoverflow.lib.
599 .IF "$(WIN64)" == "define" && "$(CCTYPE)" == "SDK2003SP1"
600 LIBBASEFILES += bufferoverflowU.lib
603 LIBFILES = $(LIBBASEFILES) $(LIBC)
605 EXTRACFLAGS = -nologo -GF -W3
606 CFLAGS = $(EXTRACFLAGS) $(INCLUDES) $(DEFINES) $(LOCDEFS) \
607 $(PCHFLAGS) $(OPTIMIZE)
608 LINK_FLAGS = -nologo -nodefaultlib $(LINK_DBG) \
609 -libpath:"$(INST_COREDIR)" \
610 -machine:$(PROCESSOR_ARCHITECTURE)
611 LIB_FLAGS = $(LIB_FLAGS) -nologo
618 CFLAGS_O = $(CFLAGS) $(BUILDOPT)
620 .IF "$(PREMSVC80)" == "undef"
621 LINK_FLAGS += "/manifestdependency:type='Win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'"
623 RSC_FLAGS = -DINCLUDE_MANIFEST
627 # used to allow local linking flags that are not propogated into Config.pm,
631 BLINK_FLAGS = $(PRIV_LINK_FLAGS) $(LINK_FLAGS)
633 #################### do not edit below this line #######################
634 ############# NO USER-SERVICEABLE PARTS BEYOND THIS POINT ##############
636 # Some old dmakes (including Sarathy's one at
637 # http://search.cpan.org/CPAN/authors/id/G/GS/GSAR/dmake-4.1pl1-win32.zip)
638 # don't support logical OR (||) or logical AND (&&) in conditional
639 # expressions and hence don't process this makefile correctly. Determine
640 # whether this is the case so that we can give the user an error message.
657 .SUFFIXES : .c .i $(o) .dll $(a) .exe .rc .res
660 $(CC) -c $(null,$(<:d) $(NULL) -I$(<:d)) $(CFLAGS_O) $(OBJOUT_FLAG)$@ $<
663 $(CC) -c $(null,$(<:d) $(NULL) -I$(<:d)) $(CFLAGS_O) -E $< >$@
669 .IF "$(CCTYPE)" == "GCC"
670 $(LINK32) -o $@ $(BLINK_FLAGS) $< $(LIBFILES)
671 $(IMPLIB) --input-def $(*B).def --output-lib $(*B).a $@
673 $(LINK32) -dll -subsystem:windows -implib:$(*B).lib -def:$(*B).def \
674 -out:$@ $(BLINK_FLAGS) $(LIBFILES) $< $(LIBPERL)
679 .IF "$(CCTYPE)" == "GCC"
680 $(RSC) --use-temp-file --include-dir=. --include-dir=.. -O COFF -D INCLUDE_MANIFEST -i $< -o $@
682 $(RSC) -i.. -DINCLUDE_MANIFEST $<
687 MINIPERL = ..\miniperl.exe
689 PERLEXE = ..\perl.exe
690 WPERLEXE = ..\wperl.exe
691 PERLEXESTATIC = ..\perl-static.exe
692 STATICDIR = .\static.tmp
693 GLOBEXE = ..\perlglob.exe
694 CONFIGPM = ..\lib\Config.pm ..\lib\Config_heavy.pl
695 GENUUDMAP = ..\generate_uudmap.exe
696 .IF "$(BUILD_STATIC)" == "define" || "$(ALL_STATIC)" == "define"
702 # Unicode data files generated by mktables
703 UNIDATAFILES = ..\lib\unicore\Decomposition.pl ..\lib\unicore\TestProp.pl \
704 ..\lib\unicore\CombiningClass.pl ..\lib\unicore\Name.pl \
705 ..\lib\unicore\UCD.pl ..\lib\unicore\Name.pm \
706 ..\lib\unicore\Heavy.pl ..\lib\unicore\mktables.lst
708 # Directories of Unicode data files generated by mktables
709 UNIDATADIR1 = ..\lib\unicore\To
710 UNIDATADIR2 = ..\lib\unicore\lib
712 PERLEXE_MANIFEST= .\perlexe.manifest
713 PERLEXE_ICO = .\perlexe.ico
714 PERLEXE_RES = .\perlexe.res
717 # Nominate a target which causes extensions to be re-built
718 # This used to be $(PERLEXE), but at worst it is the .dll that they depend
719 # on and really only the interface - i.e. the .def file used to export symbols
721 PERLDEP = perldll.def
724 PL2BAT = bin\pl2bat.pl
747 ..\utils\zipdetails \
757 .IF "$(CCTYPE)" == "GCC"
759 CFGSH_TMPL = config.gc
760 CFGH_TMPL = config_H.gc
761 PERLIMPLIB = ..\libperl521$(a)
762 PERLSTATICLIB = ..\libperl521s$(a)
767 CFGSH_TMPL = config.vc
768 CFGH_TMPL = config_H.vc
773 # makedef.pl must be updated if this changes, and this should normally
774 # only change when there is an incompatible revision of the public API.
775 PERLIMPLIB *= ..\perl521$(a)
776 PERLSTATICLIB *= ..\perl521s$(a)
777 PERLDLL = ..\perl521.dll
779 XCOPY = xcopy /f /r /i /d /y
780 RCOPY = xcopy /f /r /i /e /d /y
822 EXTRACORE_SRC += perllib.c
824 .IF "$(PERL_MALLOC)" == "define"
825 EXTRACORE_SRC += ..\malloc.c
828 EXTRACORE_SRC += ..\perlio.c
836 # We need this for miniperl build unless we override canned
837 # config.h #define building mini\*
838 #.IF "$(USE_PERLIO)" == "define"
839 WIN32_SRC += .\win32io.c
879 .\include\sys\errno2.h \
880 .\include\sys\socket.h \
883 CORE_H = $(CORE_NOCFG_H) .\config.h ..\git_version.h
885 UUDMAP_H = ..\uudmap.h
886 BITCOUNT_H = ..\bitcount.h
887 MG_DATA_H = ..\mg_data.h
888 GENERATED_HEADERS = $(UUDMAP_H) $(BITCOUNT_H) $(MG_DATA_H)
890 MICROCORE_OBJ = $(MICROCORE_SRC:db:+$(o))
891 CORE_OBJ = $(MICROCORE_OBJ) $(EXTRACORE_SRC:db:+$(o))
892 WIN32_OBJ = $(WIN32_SRC:db:+$(o))
893 MINICORE_OBJ = $(MINIDIR)\{$(MICROCORE_OBJ:f) miniperlmain$(o) perlio$(o)}
894 MINIWIN32_OBJ = $(MINIDIR)\{$(WIN32_OBJ:f)}
895 MINI_OBJ = $(MINICORE_OBJ) $(MINIWIN32_OBJ)
896 DLL_OBJ = $(DYNALOADER)
897 GENUUDMAP_OBJ = $(GENUUDMAP:db:+$(o))
899 PERLDLL_OBJ = $(CORE_OBJ)
900 PERLEXE_OBJ = perlmain$(o)
901 PERLEXEST_OBJ = perlmainst$(o)
903 PERLDLL_OBJ += $(WIN32_OBJ) $(DLL_OBJ)
905 .IF "$(USE_SETARGV)" != ""
906 SETARGV_OBJ = setargv$(o)
909 .IF "$(ALL_STATIC)" == "define"
910 # some exclusions, unfortunately, until fixed:
911 # - MakeMaker isn't capable enough for SDBM_File (small bug)
912 STATIC_EXT = * !SDBM_File
914 # specify static extensions here, for example:
915 # (be sure to include Win32CORE to load Win32 on demand)
916 #STATIC_EXT = Win32CORE Cwd Compress/Raw/Zlib
917 STATIC_EXT = Win32CORE
920 DYNALOADER = ..\DynaLoader$(o)
922 # vars must be separated by "\t+~\t+", since we're using the tempfile
923 # version of config_sh.pl (we were overflowing someone's buffer by
924 # trying to fit them all on the command line)
927 INST_TOP=$(INST_TOP) ~ \
928 INST_VER=$(INST_VER) ~ \
929 INST_ARCH=$(INST_ARCH) ~ \
930 archname=$(ARCHNAME) ~ \
933 ccflags=$(EXTRACFLAGS) $(OPTIMIZE) $(DEFINES) $(BUILDOPT) ~ \
934 cf_email=$(EMAIL) ~ \
935 d_mymalloc=$(PERL_MALLOC) ~ \
936 libs=$(LIBFILES:f) ~ \
937 incpath=$(CCINCDIR) ~ \
938 libperl=$(PERLIMPLIB:f) ~ \
939 libpth=$(CCLIBDIR);$(EXTRALIBDIRS) ~ \
946 static_ext=$(STATIC_EXT) ~ \
947 usethreads=$(USE_ITHREADS) ~ \
948 useithreads=$(USE_ITHREADS) ~ \
949 usemultiplicity=$(USE_MULTI) ~ \
950 useperlio=$(USE_PERLIO) ~ \
951 use64bitint=$(USE_64_BIT_INT) ~ \
952 uselargefiles=$(USE_LARGE_FILES) ~ \
953 usesitecustomize=$(USE_SITECUST) ~ \
954 LINK_FLAGS=$(LINK_FLAGS) ~ \
955 optimize=$(OPTIMIZE) ~ \
956 ARCHPREFIX=$(ARCHPREFIX) ~ \
963 all : CHECKDMAKE .\config.h ..\git_version.h $(GLOBEXE) $(MINIPERL) \
964 $(CONFIGPM) $(UNIDATAFILES) MakePPPort \
965 $(PERLEXE) Extensions Extensions_nonxs $(PERLSTATIC)
967 regnodes : ..\regnodes.h
969 ..\regcomp$(o) : ..\regnodes.h ..\regcharclass.h
971 ..\regexec$(o) : ..\regnodes.h ..\regcharclass.h
973 reonly : regnodes .\config.h ..\git_version.h $(GLOBEXE) $(MINIPERL) \
974 $(CONFIGPM) $(UNIDATAFILES) $(PERLEXE) \
977 static: $(PERLEXESTATIC)
979 #----------------------------------------------------------------
982 .IF "$(NEWDMAKE)" == "define"
985 @echo Your dmake doesn't support ^|^| or ^&^& in conditional expressions.
986 @echo Please get the latest dmake from http://search.cpan.org/dist/dmake/
990 $(GLOBEXE) : perlglob$(o)
991 .IF "$(CCTYPE)" == "GCC"
992 $(LINK32) $(BLINK_FLAGS) -mconsole -o $@ perlglob$(o) $(LIBFILES)
994 $(LINK32) $(BLINK_FLAGS) $(LIBFILES) -out:$@ -subsystem:$(SUBSYS) \
995 perlglob$(o) setargv$(o)
999 perlglob$(o) : perlglob.c
1001 config.w32 : $(CFGSH_TMPL)
1002 copy $(CFGSH_TMPL) config.w32
1005 # Copy the template config.h and set configurables at the end of it
1006 # as per the options chosen and compiler used.
1007 # Note: This config.h is only used to build miniperl.exe anyway, but
1008 # it's as well to have its options correct to be sure that it builds
1009 # and so that it's "-V" options are correct for use by makedef.pl. The
1010 # real config.h used to build perl.exe is generated from the top-level
1011 # config_h.SH by config_h.PL (run by miniperl.exe).
1013 .\config.h : $(CFGH_TMPL) $(CORE_NOCFG_H)
1015 copy $(CFGH_TMPL) config.h
1017 @echo #ifndef _config_h_footer_>>$@
1018 @echo #define _config_h_footer_>>$@
1019 @echo #undef Off_t>>$@
1020 @echo #undef LSEEKSIZE>>$@
1021 @echo #undef Off_t_size>>$@
1022 @echo #undef PTRSIZE>>$@
1023 @echo #undef SSize_t>>$@
1024 @echo #undef HAS_ATOLL>>$@
1025 @echo #undef HAS_STRTOLL>>$@
1026 @echo #undef HAS_STRTOULL>>$@
1027 @echo #undef IVTYPE>>$@
1028 @echo #undef UVTYPE>>$@
1029 @echo #undef IVSIZE>>$@
1030 @echo #undef UVSIZE>>$@
1031 @echo #undef NV_PRESERVES_UV>>$@
1032 @echo #undef NV_PRESERVES_UV_BITS>>$@
1033 @echo #undef IVdf>>$@
1034 @echo #undef UVuf>>$@
1035 @echo #undef UVof>>$@
1036 @echo #undef UVxf>>$@
1037 @echo #undef UVXf>>$@
1038 @echo #undef USE_64_BIT_INT>>$@
1039 @echo #undef Size_t_size>>$@
1040 .IF "$(USE_LARGE_FILES)"=="define"
1041 @echo #define Off_t $(INT64)>>$@
1042 @echo #define LSEEKSIZE ^8>>$@
1043 @echo #define Off_t_size ^8>>$@
1045 @echo #define Off_t long>>$@
1046 @echo #define LSEEKSIZE ^4>>$@
1047 @echo #define Off_t_size ^4>>$@
1049 .IF "$(WIN64)"=="define"
1050 @echo #define PTRSIZE ^8>>$@
1051 @echo #define SSize_t $(INT64)>>$@
1052 @echo #define HAS_ATOLL>>$@
1053 @echo #define HAS_STRTOLL>>$@
1054 @echo #define HAS_STRTOULL>>$@
1055 @echo #define Size_t_size ^8>>$@
1057 @echo #define PTRSIZE ^4>>$@
1058 @echo #define SSize_t int>>$@
1059 @echo #undef HAS_ATOLL>>$@
1060 @echo #undef HAS_STRTOLL>>$@
1061 @echo #undef HAS_STRTOULL>>$@
1062 @echo #define Size_t_size ^4>>$@
1064 .IF "$(USE_64_BIT_INT)"=="define"
1065 @echo #define IVTYPE $(INT64)>>$@
1066 @echo #define UVTYPE unsigned $(INT64)>>$@
1067 @echo #define IVSIZE ^8>>$@
1068 @echo #define UVSIZE ^8>>$@
1069 @echo #undef NV_PRESERVES_UV>>$@
1070 @echo #define NV_PRESERVES_UV_BITS 53>>$@
1071 @echo #define IVdf "I64d">>$@
1072 @echo #define UVuf "I64u">>$@
1073 @echo #define UVof "I64o">>$@
1074 @echo #define UVxf "I64x">>$@
1075 @echo #define UVXf "I64X">>$@
1076 @echo #define USE_64_BIT_INT>>$@
1078 @echo #define IVTYPE long>>$@
1079 @echo #define UVTYPE unsigned long>>$@
1080 @echo #define IVSIZE ^4>>$@
1081 @echo #define UVSIZE ^4>>$@
1082 @echo #define NV_PRESERVES_UV>>$@
1083 @echo #define NV_PRESERVES_UV_BITS 32>>$@
1084 @echo #define IVdf "ld">>$@
1085 @echo #define UVuf "lu">>$@
1086 @echo #define UVof "lo">>$@
1087 @echo #define UVxf "lx">>$@
1088 @echo #define UVXf "lX">>$@
1089 @echo #undef USE_64_BIT_INT>>$@
1093 ..\git_version.h : $(MINIPERL) ..\make_patchnum.pl
1094 cd .. && miniperl -Ilib make_patchnum.pl
1096 # make sure that we recompile perl.c if the git version changes
1097 ..\perl$(o) : ..\git_version.h
1099 ..\config.sh : config.w32 $(MINIPERL) config_sh.PL FindExt.pm
1100 $(MINIPERL) -I..\lib config_sh.PL --cfgsh-option-file \
1101 $(mktmp $(CFG_VARS)) config.w32 > ..\config.sh
1103 # This target is for when changes to the main config.sh happen.
1104 # Edit config.gc, then make perl using GCC in a minimal configuration (i.e.
1105 # with MULTI, ITHREADS, IMP_SYS, LARGE_FILES and PERLIO off), then make
1106 # this target to regenerate config_H.gc.
1108 $(MINIPERL) -I..\lib config_sh.PL --cfgsh-option-file $(mktmp $(CFG_VARS)) \
1109 $(CFGSH_TMPL) > ..\config.sh
1110 $(MINIPERL) -I..\lib ..\configpm --chdir=..
1111 -del /f $(CFGH_TMPL)
1112 -$(MINIPERL) -I..\lib config_h.PL "ARCHPREFIX=$(ARCHPREFIX)"
1113 rename config.h $(CFGH_TMPL)
1115 $(CONFIGPM) : $(MINIPERL) ..\config.sh config_h.PL
1116 $(MINIPERL) -I..\lib ..\configpm --chdir=..
1117 if exist lib\* $(RCOPY) lib\*.* ..\lib\$(NULL)
1118 $(XCOPY) ..\*.h $(COREDIR)\*.*
1119 $(XCOPY) *.h $(COREDIR)\*.*
1120 $(RCOPY) include $(COREDIR)\*.*
1121 $(MINIPERL) -I..\lib config_h.PL "ARCHPREFIX=$(ARCHPREFIX)" \
1122 || $(MAKE) $(MAKEMACROS) $(CONFIGPM) $(MAKEFILE)
1124 # See the comment in Makefile.SH explaining this seemingly cranky ordering
1125 $(MINIPERL) : ..\lib\buildcustomize.pl
1127 ..\lib\buildcustomize.pl : $(MINIDIR) $(MINI_OBJ) $(CRTIPMLIBS) ..\write_buildcustomize.pl
1128 .IF "$(CCTYPE)" == "GCC"
1129 $(LINK32) -v -mconsole -o $(MINIPERL) $(BLINK_FLAGS) \
1130 $(mktmp $(LKPRE) $(MINI_OBJ) $(LIBFILES) $(LKPOST))
1132 $(LINK32) -subsystem:console -out:$(MINIPERL) $(BLINK_FLAGS) \
1133 @$(mktmp $(DELAYLOAD) $(LIBFILES) $(MINI_OBJ))
1134 $(EMBED_EXE_MANI:s/$@/$(MINIPERL)/)
1136 $(MINIPERL) -I..\lib -f ..\write_buildcustomize.pl ..
1139 if not exist "$(MINIDIR)" mkdir "$(MINIDIR)"
1141 $(MINICORE_OBJ) : $(CORE_NOCFG_H)
1142 $(CC) -c $(CFLAGS) $(MINIBUILDOPT) -DPERL_EXTERNAL_GLOB -DPERL_IS_MINIPERL $(OBJOUT_FLAG)$@ ..\$(*B).c
1144 $(MINIWIN32_OBJ) : $(CORE_NOCFG_H)
1145 $(CC) -c $(CFLAGS) $(MINIBUILDOPT) -DPERL_IS_MINIPERL $(OBJOUT_FLAG)$@ $(*B).c
1147 # -DPERL_IMPLICIT_SYS needs C++ for perllib.c
1148 # rules wrapped in .IFs break Win9X build (we end up with unbalanced []s unless
1149 # unless the .IF is true), so instead we use a .ELSE with the default.
1150 # This is the only file that depends on perlhost.h, vmem.h, and vdir.h
1152 perllib$(o) : perllib.c .\perlhost.h .\vdir.h .\vmem.h
1153 .IF "$(USE_IMP_SYS)" == "define"
1154 $(CC) -c -I. $(CFLAGS_O) $(CXX_FLAG) $(OBJOUT_FLAG)$@ perllib.c
1156 $(CC) -c -I. $(CFLAGS_O) $(OBJOUT_FLAG)$@ perllib.c
1159 # 1. we don't want to rebuild miniperl.exe when config.h changes
1160 # 2. we don't want to rebuild miniperl.exe with non-default config.h
1161 # 3. we can't have miniperl.exe depend on git_version.h, as miniperl creates it
1162 $(MINI_OBJ) : $(CORE_NOCFG_H)
1164 $(WIN32_OBJ) : $(CORE_H)
1166 $(CORE_OBJ) : $(CORE_H)
1168 $(DLL_OBJ) : $(CORE_H)
1170 perldll.def : $(MINIPERL) $(CONFIGPM) ..\embed.fnc ..\makedef.pl create_perllibst_h.pl
1171 $(MINIPERL) -I..\lib create_perllibst_h.pl
1172 $(MINIPERL) -I..\lib -w ..\makedef.pl PLATFORM=win32 $(OPTIMIZE) $(DEFINES) \
1173 $(BUILDOPT) CCTYPE=$(CCTYPE) TARG_DIR=..\ > perldll.def
1175 $(PERLDLL): perldll.def $(PERLDLL_OBJ) $(PERLDLL_RES) Extensions_static
1176 .IF "$(CCTYPE)" == "GCC"
1177 $(LINK32) -mdll -o $@ -Wl,--base-file -Wl,perl.base $(BLINK_FLAGS) \
1178 $(mktmp $(LKPRE) $(PERLDLL_OBJ) \
1179 $(shell @type Extensions_static) \
1180 $(LIBFILES) $(LKPOST))
1181 $(IMPLIB) --output-lib $(PERLIMPLIB) \
1182 --dllname $(PERLDLL:b).dll \
1184 --base-file perl.base \
1185 --output-exp perl.exp
1186 $(LINK32) -mdll -o $@ $(BLINK_FLAGS) \
1187 $(mktmp $(LKPRE) $(PERLDLL_OBJ) \
1188 $(shell @type Extensions_static) \
1189 $(LIBFILES) perl.exp $(LKPOST))
1191 $(LINK32) -dll -def:perldll.def -out:$@ $(BLINK_FLAGS) \
1192 @Extensions_static \
1193 @$(mktmp -base:0x28000000 $(DELAYLOAD) $(LIBFILES) \
1194 $(PERLDLL_RES) $(PERLDLL_OBJ))
1197 $(XCOPY) $(PERLIMPLIB) $(COREDIR)
1199 $(PERLSTATICLIB): $(PERLDLL_OBJ) Extensions_static
1200 .IF "$(CCTYPE)" == "GCC"
1201 $(LIB32) $(LIB_FLAGS) $@ $(PERLDLL_OBJ)
1202 if exist $(STATICDIR) rmdir /s /q $(STATICDIR)
1203 for %i in ($(shell @type Extensions_static)) do \
1204 @mkdir $(STATICDIR) && cd $(STATICDIR) && \
1205 $(ARCHPREFIX)ar x ..\%i && \
1206 $(ARCHPREFIX)ar q ..\$@ *$(o) && \
1207 cd .. && rmdir /s /q $(STATICDIR)
1209 $(LIB32) $(LIB_FLAGS) -out:$@ @Extensions_static \
1210 @$(mktmp $(PERLDLL_OBJ))
1212 $(XCOPY) $(PERLSTATICLIB) $(COREDIR)
1214 $(PERLEXE_RES): perlexe.rc $(PERLEXE_MANIFEST) $(PERLEXE_ICO)
1216 $(MINIDIR)\globals$(o) : $(GENERATED_HEADERS)
1218 $(UUDMAP_H) $(MG_DATA_H) : $(BITCOUNT_H)
1220 $(BITCOUNT_H) : $(GENUUDMAP)
1221 $(GENUUDMAP) $(GENERATED_HEADERS)
1223 $(GENUUDMAP_OBJ) : ..\mg_raw.h
1225 $(GENUUDMAP) : $(GENUUDMAP_OBJ)
1226 .IF "$(CCTYPE)" == "GCC"
1227 $(LINK32) -v -o $@ $(BLINK_FLAGS) \
1228 $(mktmp $(LKPRE) $(GENUUDMAP_OBJ) $(LIBFILES) $(LKPOST))
1230 $(LINK32) -subsystem:console -out:$@ $(BLINK_FLAGS) \
1231 @$(mktmp $(LIBFILES) $(GENUUDMAP_OBJ))
1235 perlmain.c : runperl.c
1236 copy runperl.c perlmain.c
1238 perlmain$(o) : perlmain.c
1239 $(CC) $(CFLAGS_O:s,-DPERLDLL,-UPERLDLL,) $(OBJOUT_FLAG)$@ -c perlmain.c
1241 perlmainst.c : runperl.c
1242 copy runperl.c perlmainst.c
1244 perlmainst$(o) : perlmainst.c
1245 $(CC) $(CFLAGS_O) $(OBJOUT_FLAG)$@ -c perlmainst.c
1247 $(PERLEXE): $(PERLDLL) $(CONFIGPM) $(PERLEXE_OBJ) $(PERLEXE_RES)
1248 .IF "$(CCTYPE)" == "GCC"
1249 $(LINK32) -mconsole -o $@ $(BLINK_FLAGS) \
1250 $(PERLEXE_OBJ) $(PERLEXE_RES) $(PERLIMPLIB) $(LIBFILES)
1252 $(LINK32) -subsystem:console -out:$@ $(BLINK_FLAGS) \
1253 $(PERLEXE_OBJ) $(PERLEXE_RES) $(PERLIMPLIB) $(LIBFILES) $(SETARGV_OBJ)
1256 copy $(PERLEXE) $(WPERLEXE)
1257 $(MINIPERL) -I..\lib bin\exetype.pl $(WPERLEXE) WINDOWS
1259 $(PERLEXESTATIC): $(PERLSTATICLIB) $(CONFIGPM) $(PERLEXEST_OBJ) $(PERLEXE_RES)
1260 .IF "$(CCTYPE)" == "GCC"
1261 $(LINK32) -mconsole -o $@ $(BLINK_FLAGS) \
1262 $(PERLEXEST_OBJ) $(PERLEXE_RES) $(PERLSTATICLIB) $(LIBFILES)
1264 $(LINK32) -subsystem:console -out:$@ $(BLINK_FLAGS) \
1265 $(PERLEXEST_OBJ) $(PERLEXE_RES) $(PERLSTATICLIB) $(LIBFILES) $(SETARGV_OBJ)
1269 MakePPPort: $(MINIPERL) $(CONFIGPM) Extensions_nonxs
1270 $(MINIPERL) -I..\lib ..\mkppport
1272 #-------------------------------------------------------------------------------
1273 # There's no direct way to mark a dependency on
1274 # DynaLoader.pm, so this will have to do
1275 Extensions : ..\make_ext.pl ..\lib\buildcustomize.pl $(PERLDEP) $(CONFIGPM) $(DYNALOADER)
1276 $(XCOPY) ..\*.h $(COREDIR)\*.*
1277 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --dynamic
1279 Extensions_reonly : ..\make_ext.pl ..\lib\buildcustomize.pl $(PERLDEP) $(CONFIGPM) $(DYNALOADER)
1280 $(XCOPY) ..\*.h $(COREDIR)\*.*
1281 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --dynamic +re
1283 Extensions_static : ..\make_ext.pl ..\lib\buildcustomize.pl list_static_libs.pl $(PERLDEP) $(CONFIGPM) Extensions_nonxs
1284 $(XCOPY) ..\*.h $(COREDIR)\*.*
1285 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --static
1286 $(MINIPERL) -I..\lib list_static_libs.pl > Extensions_static
1288 Extensions_nonxs : ..\make_ext.pl ..\lib\buildcustomize.pl $(PERLDEP) $(CONFIGPM) ..\pod\perlfunc.pod
1289 $(XCOPY) ..\*.h $(COREDIR)\*.*
1290 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --nonxs
1292 $(DYNALOADER) : ..\make_ext.pl ..\lib\buildcustomize.pl $(PERLDEP) $(CONFIGPM) Extensions_nonxs
1293 $(XCOPY) ..\*.h $(COREDIR)\*.*
1294 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(EXTDIR) --dynaloader
1297 -if exist $(MINIPERL) $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --all --target=clean
1299 Extensions_realclean :
1300 -if exist $(MINIPERL) $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --all --target=realclean
1302 #-------------------------------------------------------------------------------
1305 doc: $(PERLEXE) ..\pod\perltoc.pod
1306 $(PERLEXE) -I..\lib ..\installhtml --podroot=.. --htmldir=$(HTMLDIR) \
1307 --podpath=pod:lib:utils --htmlroot="file://$(INST_HTML:s,:,|,)"\
1310 ..\utils\Makefile: $(CONFIGPM) ..\utils\Makefile.PL
1311 $(MINIPERL) -I..\lib ..\utils\Makefile.PL ..
1313 # Note that this next section is parsed (and regenerated) by pod/buildtoc
1314 # so please check that script before making structural changes here
1315 utils: $(PERLEXE) ..\utils\Makefile
1316 cd ..\utils && $(MAKE) PERL=$(MINIPERL)
1317 copy ..\README.aix ..\pod\perlaix.pod
1318 copy ..\README.amiga ..\pod\perlamiga.pod
1319 copy ..\README.android ..\pod\perlandroid.pod
1320 copy ..\README.bs2000 ..\pod\perlbs2000.pod
1321 copy ..\README.ce ..\pod\perlce.pod
1322 copy ..\README.cn ..\pod\perlcn.pod
1323 copy ..\README.cygwin ..\pod\perlcygwin.pod
1324 copy ..\README.dos ..\pod\perldos.pod
1325 copy ..\README.freebsd ..\pod\perlfreebsd.pod
1326 copy ..\README.haiku ..\pod\perlhaiku.pod
1327 copy ..\README.hpux ..\pod\perlhpux.pod
1328 copy ..\README.hurd ..\pod\perlhurd.pod
1329 copy ..\README.irix ..\pod\perlirix.pod
1330 copy ..\README.jp ..\pod\perljp.pod
1331 copy ..\README.ko ..\pod\perlko.pod
1332 copy ..\README.linux ..\pod\perllinux.pod
1333 copy ..\README.macos ..\pod\perlmacos.pod
1334 copy ..\README.macosx ..\pod\perlmacosx.pod
1335 copy ..\README.netware ..\pod\perlnetware.pod
1336 copy ..\README.openbsd ..\pod\perlopenbsd.pod
1337 copy ..\README.os2 ..\pod\perlos2.pod
1338 copy ..\README.os390 ..\pod\perlos390.pod
1339 copy ..\README.os400 ..\pod\perlos400.pod
1340 copy ..\README.plan9 ..\pod\perlplan9.pod
1341 copy ..\README.qnx ..\pod\perlqnx.pod
1342 copy ..\README.riscos ..\pod\perlriscos.pod
1343 copy ..\README.solaris ..\pod\perlsolaris.pod
1344 copy ..\README.symbian ..\pod\perlsymbian.pod
1345 copy ..\README.synology ..\pod\perlsynology.pod
1346 copy ..\README.tru64 ..\pod\perltru64.pod
1347 copy ..\README.tw ..\pod\perltw.pod
1348 copy ..\README.vos ..\pod\perlvos.pod
1349 copy ..\README.win32 ..\pod\perlwin32.pod
1350 copy ..\pod\perldelta.pod ..\pod\perl5214delta.pod
1351 $(PERLEXE) $(PL2BAT) $(UTILS)
1352 $(MINIPERL) -I..\lib ..\autodoc.pl ..
1353 $(MINIPERL) -I..\lib ..\pod\perlmodlib.PL -q ..
1355 ..\pod\perltoc.pod: $(PERLEXE) Extensions Extensions_nonxs
1356 $(PERLEXE) -f ..\pod\buildtoc -q
1358 # Note that the pod cleanup in this next section is parsed (and regenerated
1359 # by pod/buildtoc so please check that script before making changes here
1361 distclean: realclean
1362 -del /f $(MINIPERL) $(PERLEXE) $(PERLDLL) $(GLOBEXE) \
1363 $(PERLIMPLIB) ..\miniperl$(a) $(PERLEXESTATIC) $(PERLSTATICLIB)
1364 -del /f $(LIBDIR)\Encode.pm $(LIBDIR)\encoding.pm $(LIBDIR)\Errno.pm
1365 -del /f $(LIBDIR)\Config.pod $(LIBDIR)\POSIX.pod $(LIBDIR)\threads.pm
1366 -del /f $(LIBDIR)\.exists $(LIBDIR)\attributes.pm $(LIBDIR)\DynaLoader.pm
1367 -del /f $(LIBDIR)\Fcntl.pm $(LIBDIR)\IO.pm $(LIBDIR)\Opcode.pm
1368 -del /f $(LIBDIR)\ops.pm $(LIBDIR)\Safe.pm
1369 -del /f $(LIBDIR)\SDBM_File.pm $(LIBDIR)\Socket.pm $(LIBDIR)\POSIX.pm
1370 -del /f $(LIBDIR)\B.pm $(LIBDIR)\O.pm $(LIBDIR)\re.pm
1371 -del /f $(LIBDIR)\File\Glob.pm
1372 -del /f $(LIBDIR)\Storable.pm
1373 -del /f $(LIBDIR)\Sys\Hostname.pm
1374 -del /f $(LIBDIR)\Time\HiRes.pm
1375 -del /f $(LIBDIR)\Unicode\Normalize.pm
1376 -del /f $(LIBDIR)\Math\BigInt\FastCalc.pm
1377 -del /f $(LIBDIR)\Win32.pm
1378 -del /f $(LIBDIR)\Win32CORE.pm
1379 -del /f $(LIBDIR)\Win32API\File.pm
1380 -del /f $(LIBDIR)\Win32API\File\cFile.pc
1381 -del /f $(LIBDIR)\buildcustomize.pl
1382 -del /f $(DISTDIR)\XSLoader\XSLoader.pm
1384 -if exist $(LIBDIR)\App rmdir /s /q $(LIBDIR)\App
1385 -if exist $(LIBDIR)\Archive rmdir /s /q $(LIBDIR)\Archive
1386 -if exist $(LIBDIR)\Attribute rmdir /s /q $(LIBDIR)\Attribute
1387 -if exist $(LIBDIR)\autodie rmdir /s /q $(LIBDIR)\autodie
1388 -if exist $(LIBDIR)\Carp rmdir /s /q $(LIBDIR)\Carp
1389 -if exist $(LIBDIR)\Compress rmdir /s /q $(LIBDIR)\Compress
1390 -if exist $(LIBDIR)\Config\Perl rmdir /s /q $(LIBDIR)\Config\Perl
1391 -if exist $(LIBDIR)\CPAN rmdir /s /q $(LIBDIR)\CPAN
1392 -if exist $(LIBDIR)\Data rmdir /s /q $(LIBDIR)\Data
1393 -if exist $(LIBDIR)\Devel rmdir /s /q $(LIBDIR)\Devel
1394 -if exist $(LIBDIR)\Digest rmdir /s /q $(LIBDIR)\Digest
1395 -if exist $(LIBDIR)\Encode rmdir /s /q $(LIBDIR)\Encode
1396 -if exist $(LIBDIR)\encoding rmdir /s /q $(LIBDIR)\encoding
1397 -if exist $(LIBDIR)\Exporter rmdir /s /q $(LIBDIR)\Exporter
1398 -if exist $(LIBDIR)\ExtUtils\CBuilder rmdir /s /q $(LIBDIR)\ExtUtils\CBuilder
1399 -if exist $(LIBDIR)\ExtUtils\Command rmdir /s /q $(LIBDIR)\ExtUtils\Command
1400 -if exist $(LIBDIR)\ExtUtils\Constant rmdir /s /q $(LIBDIR)\ExtUtils\Constant
1401 -if exist $(LIBDIR)\ExtUtils\Liblist rmdir /s /q $(LIBDIR)\ExtUtils\Liblist
1402 -if exist $(LIBDIR)\ExtUtils\MakeMaker rmdir /s /q $(LIBDIR)\ExtUtils\MakeMaker
1403 -if exist $(LIBDIR)\ExtUtils\ParseXS rmdir /s /q $(LIBDIR)\ExtUtils\ParseXS
1404 -if exist $(LIBDIR)\ExtUtils\Typemaps rmdir /s /q $(LIBDIR)\ExtUtils\Typemaps
1405 -if exist $(LIBDIR)\File\Spec rmdir /s /q $(LIBDIR)\File\Spec
1406 -if exist $(LIBDIR)\Filter rmdir /s /q $(LIBDIR)\Filter
1407 -if exist $(LIBDIR)\Hash rmdir /s /q $(LIBDIR)\Hash
1408 -if exist $(LIBDIR)\HTTP rmdir /s /q $(LIBDIR)\HTTP
1409 -if exist $(LIBDIR)\I18N rmdir /s /q $(LIBDIR)\I18N
1410 -if exist $(LIBDIR)\IO rmdir /s /q $(LIBDIR)\IO
1411 -if exist $(LIBDIR)\IPC rmdir /s /q $(LIBDIR)\IPC
1412 -if exist $(LIBDIR)\JSON rmdir /s /q $(LIBDIR)\JSON
1413 -if exist $(LIBDIR)\List rmdir /s /q $(LIBDIR)\List
1414 -if exist $(LIBDIR)\Locale rmdir /s /q $(LIBDIR)\Locale
1415 -if exist $(LIBDIR)\Math rmdir /s /q $(LIBDIR)\Math
1416 -if exist $(LIBDIR)\Memoize rmdir /s /q $(LIBDIR)\Memoize
1417 -if exist $(LIBDIR)\MIME rmdir /s /q $(LIBDIR)\MIME
1418 -if exist $(LIBDIR)\Module rmdir /s /q $(LIBDIR)\Module
1419 -if exist $(LIBDIR)\Net\FTP rmdir /s /q $(LIBDIR)\Net\FTP
1420 -if exist $(LIBDIR)\Params rmdir /s /q $(LIBDIR)\Params
1421 -if exist $(LIBDIR)\Parse rmdir /s /q $(LIBDIR)\Parse
1422 -if exist $(LIBDIR)\Perl rmdir /s /q $(LIBDIR)\Perl
1423 -if exist $(LIBDIR)\PerlIO rmdir /s /q $(LIBDIR)\PerlIO
1424 -if exist $(LIBDIR)\Pod\Perldoc rmdir /s /q $(LIBDIR)\Pod\Perldoc
1425 -if exist $(LIBDIR)\Pod\Simple rmdir /s /q $(LIBDIR)\Pod\Simple
1426 -if exist $(LIBDIR)\Pod\Text rmdir /s /q $(LIBDIR)\Pod\Text
1427 -if exist $(LIBDIR)\Scalar rmdir /s /q $(LIBDIR)\Scalar
1428 -if exist $(LIBDIR)\Search rmdir /s /q $(LIBDIR)\Search
1429 -if exist $(LIBDIR)\Sub rmdir /s /q $(LIBDIR)\Sub
1430 -if exist $(LIBDIR)\Sys rmdir /s /q $(LIBDIR)\Sys
1431 -if exist $(LIBDIR)\TAP rmdir /s /q $(LIBDIR)\TAP
1432 -if exist $(LIBDIR)\Term rmdir /s /q $(LIBDIR)\Term
1433 -if exist $(LIBDIR)\Test rmdir /s /q $(LIBDIR)\Test
1434 -if exist $(LIBDIR)\Text rmdir /s /q $(LIBDIR)\Text
1435 -if exist $(LIBDIR)\Thread rmdir /s /q $(LIBDIR)\Thread
1436 -if exist $(LIBDIR)\threads rmdir /s /q $(LIBDIR)\threads
1437 -if exist $(LIBDIR)\Tie\Hash rmdir /s /q $(LIBDIR)\Tie\Hash
1438 -if exist $(LIBDIR)\Unicode\Collate rmdir /s /q $(LIBDIR)\Unicode\Collate
1439 -if exist $(LIBDIR)\Unicode\Collate\Locale rmdir /s /q $(LIBDIR)\Unicode\Collate\Locale
1440 -if exist $(LIBDIR)\version rmdir /s /q $(LIBDIR)\version
1441 -if exist $(LIBDIR)\VMS rmdir /s /q $(LIBDIR)\VMS
1442 -if exist $(LIBDIR)\Win32API rmdir /s /q $(LIBDIR)\Win32API
1443 -if exist $(LIBDIR)\XS rmdir /s /q $(LIBDIR)\XS
1444 -cd $(PODDIR) && del /f *.html *.bat roffitall \
1445 perl5214delta.pod perlaix.pod perlamiga.pod perlandroid.pod \
1446 perlapi.pod perlbs2000.pod perlce.pod perlcn.pod perlcygwin.pod \
1447 perldos.pod perlfreebsd.pod perlhaiku.pod perlhpux.pod \
1448 perlhurd.pod perlintern.pod perlirix.pod perljp.pod perlko.pod \
1449 perllinux.pod perlmacos.pod perlmacosx.pod perlmodlib.pod \
1450 perlnetware.pod perlopenbsd.pod perlos2.pod perlos390.pod \
1451 perlos400.pod perlplan9.pod perlqnx.pod perlriscos.pod \
1452 perlsolaris.pod perlsymbian.pod perlsynology.pod perltoc.pod \
1453 perltru64.pod perltw.pod perluniprops.pod perlvos.pod \
1455 -cd ..\utils && del /f h2ph splain perlbug pl2pm c2ph pstruct h2xs \
1456 perldoc perlivp libnetcfg enc2xs piconv cpan *.bat \
1457 xsubpp pod2html instmodsh json_pp prove ptar ptardiff ptargrep shasum corelist zipdetails
1458 -del /f ..\config.sh perlmain.c dlutils.c config.h.new \
1461 -del /f ..\lib\Config_git.pl
1464 -del /f $(PERLEXE_RES) perl.base
1465 -cd .. && del /s *$(a) *.map *.pdb *.ilk *.bs *$(o) .exists pm_to_blib ppport.h
1466 -cd $(EXTDIR) && del /s *.def Makefile Makefile.old
1467 -cd $(DISTDIR) && del /s *.def Makefile Makefile.old
1468 -cd $(CPANDIR) && del /s *.def Makefile Makefile.old
1469 -del /s ..\utils\Makefile
1470 -if exist $(AUTODIR) rmdir /s /q $(AUTODIR)
1471 -if exist $(COREDIR) rmdir /s /q $(COREDIR)
1472 -if exist pod2htmd.tmp del pod2htmd.tmp
1473 -if exist $(HTMLDIR) rmdir /s /q $(HTMLDIR)
1474 -del /f ..\t\test_state
1476 install : all installbare installhtml
1478 installbare : utils ..\pod\perltoc.pod
1479 $(PERLEXE) ..\installperl
1480 if exist $(WPERLEXE) $(XCOPY) $(WPERLEXE) $(INST_BIN)\*.*
1481 if exist $(PERLEXESTATIC) $(XCOPY) $(PERLEXESTATIC) $(INST_BIN)\*.*
1482 $(XCOPY) $(GLOBEXE) $(INST_BIN)\*.*
1483 if exist ..\perl*.pdb $(XCOPY) ..\perl*.pdb $(INST_BIN)\*.*
1484 $(XCOPY) bin\*.bat $(INST_SCRIPT)\*.*
1487 $(RCOPY) $(HTMLDIR)\*.* $(INST_HTML)\*.*
1489 inst_lib : $(CONFIGPM)
1490 $(RCOPY) ..\lib $(INST_LIB)\*.*
1492 $(UNIDATAFILES) ..\pod\perluniprops.pod .UPDATEALL : $(MINIPERL) $(CONFIGPM) ..\lib\unicore\mktables Extensions_nonxs
1493 cd ..\lib\unicore && \
1494 ..\$(MINIPERL) -I.. -I..\..\dist\Cwd\lib -I..\..\dist\Cwd mktables -P ..\..\pod -maketest -makelist -p
1496 minitest : $(MINIPERL) $(GLOBEXE) $(CONFIGPM) $(UNIDATAFILES) utils
1497 $(XCOPY) $(MINIPERL) ..\t\$(NULL)
1498 if exist ..\t\perl.exe del /f ..\t\perl.exe
1499 rename ..\t\miniperl.exe perl.exe
1500 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1503 $(MINIPERL) -I..\lib harness base/*.t comp/*.t cmd/*.t io/*.t opbasic/*.t op/*.t pragma/*.t
1505 test-prep : all utils ..\pod\perltoc.pod
1506 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1507 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1508 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1509 .IF "$(CCTYPE)" == "GCC"
1510 # If building with gcc versions 4.x.x or greater, then
1511 # the GCC helper DLL will also need copied to the test directory.
1512 # The name of the dll can change, depending upon which vendor has supplied
1513 # your compiler, and upon the values of "x".
1514 # libstdc++-6.dll is copied if it exists as it, too, may then be needed.
1515 # Without this copying, the op/taint.t test script will fail.
1516 if exist $(CCDLLDIR)\libgcc_s_seh-1.dll $(XCOPY) $(CCDLLDIR)\libgcc_s_seh-1.dll ..\t\$(NULL)
1517 if exist $(CCDLLDIR)\libgcc_s_sjlj-1.dll $(XCOPY) $(CCDLLDIR)\libgcc_s_sjlj-1.dll ..\t\$(NULL)
1518 if exist $(CCDLLDIR)\libgcc_s_dw2-1.dll $(XCOPY) $(CCDLLDIR)\libgcc_s_dw2-1.dll ..\t\$(NULL)
1519 if exist $(CCDLLDIR)\libstdc++-6.dll $(XCOPY) $(CCDLLDIR)\libstdc++-6.dll ..\t\$(NULL)
1520 if exist $(CCDLLDIR)\libwinpthread-1.dll $(XCOPY) $(CCDLLDIR)\libwinpthread-1.dll ..\t\$(NULL)
1524 set PERL_STATIC_EXT=$(STATIC_EXT) && \
1525 cd ..\t && $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES)
1527 test_porting : test-prep
1528 set PERL_STATIC_EXT=$(STATIC_EXT) && \
1529 cd ..\t && $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) porting\*.t ..\lib\diagnostics.t
1531 test-reonly : reonly utils
1532 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1533 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1534 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1536 $(PERLEXE) -I..\lib harness $(OPT) -re \bpat\\/ $(EXTRA) && \
1540 cd .. && regen.pl && cd win32
1542 test-notty : test-prep
1543 set PERL_STATIC_EXT=$(STATIC_EXT) && \
1544 set PERL_SKIP_TTY_TEST=1 && \
1545 cd ..\t && $(PERLEXE) -I.\lib harness $(TEST_SWITCHES) $(TEST_FILES)
1548 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1549 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1550 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1551 set PERL_STATIC_EXT=$(STATIC_EXT) && \
1552 cd ..\t && $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES)
1555 -@erase miniperlmain$(o)
1557 -@erase perlglob$(o)
1558 -@erase perlmain$(o)
1559 -@erase perlmainst$(o)
1562 -@erase /f ..\git_version.h
1566 -@erase $(PERLEXESTATIC)
1567 -@erase $(PERLSTATICLIB)
1570 -@erase $(GENUUDMAP) $(GENUUDMAP_OBJ) $(GENERATED_HEADERS)
1571 -if exist $(MINIDIR) rmdir /s /q $(MINIDIR)
1572 -if exist $(UNIDATADIR1) rmdir /s /q $(UNIDATADIR1)
1573 -if exist $(UNIDATADIR2) rmdir /s /q $(UNIDATADIR2)
1574 -@erase $(UNIDATAFILES)
1575 -@erase $(WIN32_OBJ)
1577 -@erase ..\*$(o) ..\*$(a) ..\*.exp *$(o) *$(a) *.exp *.res
1578 -@erase ..\t\*.exe ..\t\*.dll ..\t\*.bat
1581 -@erase Extensions_static
1585 clean : Extensions_clean _clean
1587 realclean : Extensions_realclean _clean
1589 # Handy way to run perlbug -ok without having to install and run the
1590 # installed perlbug. We don't re-run the tests here - we trust the user.
1591 # Please *don't* use this unless all tests pass.
1592 # If you want to report test failures, use "dmake nok" instead.
1594 $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)"
1597 $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)" -F perl.ok
1600 $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)"
1603 $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)" -F perl.nok