2 # Makefile to build perl on Windows using DMAKE.
4 # Microsoft Visual C++ 6.0 or later
5 # MinGW with gcc-3.2 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 # (perl519.dll). Also makes individual DLLs for the XS extensions.
13 ## Make sure you read README.win32 *before* you mess with anything here!
17 ## Build configuration. Edit the values below to suit your needs.
21 # Set these to wherever you want "dmake install" to put your
25 INST_TOP *= $(INST_DRV)\perl
28 # Uncomment if you want to build a 32-bit Perl using a 32-bit compiler
29 # 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 need for fork()
64 # emulation and for thread support.
69 # Interpreter cloning/threads; now reasonably complete.
70 # This should be enabled to get the fork() emulation.
71 # This needs USE_MULTI above.
73 USE_ITHREADS *= define
76 # uncomment to enable the implicit "host" layer for all system calls
77 # made by perl. This needs USE_MULTI above.
78 # This is also needed to get fork().
83 # Comment out next assign to disable perl's I/O subsystem and use compiler's
84 # stdio for IO - depending on your compiler vendor and run time library you may
85 # then get a number of fails from make test i.e. bugs - complain to them not us ;-).
86 # You will also be unable to take full advantage of perl5.8's support for multiple
87 # encodings and may see lower IO performance. You have been warned.
91 # Comment this out if you don't want to enable large file support for
92 # some reason. Should normally only be changed to maintain compatibility
93 # with an older release of perl.
94 USE_LARGE_FILES *= define
97 # Uncomment this if you're building a 32-bit perl and want 64-bit integers.
98 # (If you're building a 64-bit perl then you will have 64-bit integers whether
99 # or not this is uncommented.)
100 #USE_64_BIT_INT *= define
103 # uncomment exactly one of the following
105 # Visual C++ 6.x (aka Visual C++ 98)
107 # Visual C++ .NET 2002/2003 (aka Visual C++ 7.x) (full version)
109 # Visual C++ Toolkit 2003 (aka Visual C++ 7.x) (free command-line tools)
110 #CCTYPE *= MSVC70FREE
111 # Windows Server 2003 SP1 Platform SDK (April 2005)
113 # Visual C++ 2005 (aka Visual C++ 8.x) (full version)
115 # Visual C++ 2005 Express Edition (aka Visual C++ 8.x) (free version)
116 #CCTYPE *= MSVC80FREE
117 # Visual C++ 2008 (aka Visual C++ 9.x) (full version)
119 # Visual C++ 2008 Express Edition (aka Visual C++ 9.x) (free version)
120 #CCTYPE *= MSVC90FREE
121 # Visual C++ 2010 (aka Visual C++ 10.x) (full version)
123 # Visual C++ 2010 Express Edition (aka Visual C++ 10.x) (free version)
124 #CCTYPE = MSVC100FREE
125 # Visual C++ 2012 (aka Visual C++ 11.x) (full version)
127 # Visual C++ 2012 Express Edition (aka Visual C++ 11.x) (free version)
128 #CCTYPE = MSVC110FREE
129 # MinGW or mingw-w64 with gcc-3.2 or later
133 # uncomment next line if you want debug version of perl (big,slow)
134 # If not enabled, we automatically try to use maximum optimization
135 # with all compilers that are known to have a working optimizer.
140 # uncomment to enable linking with setargv.obj under the Visual C
141 # compiler. Setting this options enables perl to expand wildcards in
142 # arguments, but it may be harder to use alternate methods like
143 # File::DosGlob that are more powerful. This option is supported only with
146 #USE_SETARGV *= define
149 # set this if you wish to use perl's malloc
150 # WARNING: Turning this on/off WILL break binary compatibility with extensions
151 # you may have compiled with/without it. Be prepared to recompile all
152 # extensions if you change the default. Currently, this cannot be enabled
153 # if you ask for USE_IMP_SYS above.
155 #PERL_MALLOC *= define
158 # set this to enable debugging mstats
159 # This must be enabled to use the Devel::Peek::mstat() function. This cannot
160 # be enabled without PERL_MALLOC as well.
162 #DEBUG_MSTATS *= define
165 # set this to additionally provide a statically linked perl-static.exe.
166 # Note that dynamic loading will not work with this perl, so you must
167 # include required modules statically using the STATIC_EXT or ALL_STATIC
168 # variables below. A static library perl519s.lib will also be created.
169 # Ordinary perl.exe is not affected by this option.
171 #BUILD_STATIC *= define
174 # in addition to BUILD_STATIC the option ALL_STATIC makes *every*
175 # extension get statically built
176 # This will result in a very large perl executable, but the main purpose
177 # is to have proper linking set so as to be able to create miscellaneous
178 # executables with different built-in extensions
180 #ALL_STATIC *= define
183 # set the install locations of the compiler include/libraries
184 # Running VCVARS32.BAT is *required* when using Visual C.
185 # Some versions of Visual C don't define MSVCDIR in the environment,
186 # so you may have to set CCHOME explicitly (spaces in the path name should
189 .IF "$(CCTYPE)" == "GCC"
196 # uncomment this if you are using x86_64-w64-mingw32 cross-compiler
197 # ie if your gcc executable is called 'x86_64-w64-mingw32-gcc'
198 # instead of the usual 'gcc'.
203 # Following sets $Config{incpath} and $Config{libpth}
206 .IF "$(GCCCROSS)" == "define"
207 CCINCDIR *= $(CCHOME)\x86_64-w64-mingw32\include
208 CCLIBDIR *= $(CCHOME)\x86_64-w64-mingw32\lib
209 CCDLLDIR *= $(CCLIBDIR)
211 CCINCDIR *= $(CCHOME)\include
212 CCLIBDIR *= $(CCHOME)\lib
213 CCDLLDIR *= $(CCHOME)\bin
217 # Additional compiler flags can be specified here.
219 BUILDOPT *= $(BUILDOPTEXTRA)
222 # This should normally be disabled. Enabling it will disable the File::Glob
223 # implementation of CORE::glob.
225 #BUILDOPT += -DPERL_EXTERNAL_GLOB
228 # Perl needs to read scripts in text mode so that the DATA filehandle
229 # works correctly with seek() and tell(), or around auto-flushes of
230 # all filehandles (e.g. by system(), backticks, fork(), etc).
232 # The current version on the ByteLoader module on CPAN however only
233 # works if scripts are read in binary mode. But before you disable text
234 # mode script reading (and break some DATA filehandle functionality)
235 # please check first if an updated ByteLoader isn't available on CPAN.
237 BUILDOPT += -DPERL_TEXTMODE_SCRIPTS
240 # specify semicolon-separated list of extra directories that modules will
241 # look for libraries (spaces in path names need not be quoted)
246 # set this to point to cmd.exe (only needed if you use some
247 # alternate shell that doesn't grok cmd.exe style commands)
249 #SHELL *= g:\winnt\system32\cmd.exe
252 # set this to your email address (perl will guess a value from
253 # from your loginname and your hostname, which may not be right)
258 ## Build configuration ends.
261 ##################### CHANGE THESE ONLY IF YOU MUST #####################
264 DEBUG_MSTATS *= undef
266 USE_SITECUST *= undef
268 USE_ITHREADS *= undef
271 USE_LARGE_FILES *= undef
272 USE_64_BIT_INT *= undef
274 .IF "$(USE_IMP_SYS)" == "define"
278 .IF "$(PERL_MALLOC)" == "undef"
282 .IF "$(DEBUG_MSTATS)" == "define"
283 BUILDOPT += -DPERL_DEBUGGING_MSTATS
286 .IF "$(USE_IMP_SYS) $(USE_MULTI)" == "define undef"
290 .IF "$(USE_ITHREADS) $(USE_MULTI)" == "define undef"
294 .IF "$(USE_SITECUST)" == "define"
295 BUILDOPT += -DUSE_SITECUSTOMIZE
298 .IF "$(USE_MULTI)" != "undef"
299 BUILDOPT += -DPERL_IMPLICIT_CONTEXT
302 .IF "$(USE_IMP_SYS)" != "undef"
303 BUILDOPT += -DPERL_IMPLICIT_SYS
306 .IMPORT .IGNORE : PROCESSOR_ARCHITECTURE PROCESSOR_ARCHITEW6432 WIN64 CCHOME
308 PROCESSOR_ARCHITECTURE *= x86
311 # When we are running from a 32bit cmd.exe on AMD64 then
312 # PROCESSOR_ARCHITECTURE is set to x86 and PROCESSOR_ARCHITEW6432
314 .IF "$(PROCESSOR_ARCHITEW6432)" != ""
315 PROCESSOR_ARCHITECTURE != $(PROCESSOR_ARCHITEW6432)
317 .ELIF "$(PROCESSOR_ARCHITECTURE)" == "AMD64" || "$(PROCESSOR_ARCHITECTURE)" == "IA64"
324 .IF "$(WIN64)" == "define"
325 USE_64_BIT_INT = define
328 # Treat 64-bit MSVC60 (doesn't really exist) as SDK2003SP1 because
329 # both link against MSVCRT.dll (which is part of Windows itself) and
330 # not against a compiler specific versioned runtime.
331 .IF "$(WIN64)" == "define" && "$(CCTYPE)" == "MSVC60"
335 ARCHITECTURE = $(PROCESSOR_ARCHITECTURE)
336 .IF "$(ARCHITECTURE)" == "AMD64"
339 .IF "$(ARCHITECTURE)" == "IA64"
343 .IF "$(USE_MULTI)" == "define"
344 ARCHNAME = MSWin32-$(ARCHITECTURE)-multi
346 .IF "$(USE_PERLIO)" == "define"
347 ARCHNAME = MSWin32-$(ARCHITECTURE)-perlio
349 ARCHNAME = MSWin32-$(ARCHITECTURE)
353 .IF "$(USE_PERLIO)" == "define"
354 BUILDOPT += -DUSE_PERLIO
357 .IF "$(USE_ITHREADS)" == "define"
358 ARCHNAME !:= $(ARCHNAME)-thread
361 .IF "$(WIN64)" != "define"
362 .IF "$(USE_64_BIT_INT)" == "define"
363 ARCHNAME !:= $(ARCHNAME)-64int
367 ARCHDIR = ..\lib\$(ARCHNAME)
368 COREDIR = ..\lib\CORE
369 AUTODIR = ..\lib\auto
375 EXTUTILSDIR = $(LIBDIR)\ExtUtils
379 INST_SCRIPT = $(INST_TOP)$(INST_VER)\bin
380 INST_BIN = $(INST_SCRIPT)$(INST_ARCH)
381 INST_LIB = $(INST_TOP)$(INST_VER)\lib
382 INST_ARCHLIB = $(INST_LIB)$(INST_ARCH)
383 INST_COREDIR = $(INST_ARCHLIB)\CORE
384 INST_HTML = $(INST_TOP)$(INST_VER)\html
387 # Programs to compile, build .lib files and link
392 .IF "$(CCTYPE)" == "GCC"
394 .IF "$(GCCCROSS)" == "define"
395 ARCHPREFIX = x86_64-w64-mingw32-
398 CC = $(ARCHPREFIX)gcc
399 LINK32 = $(ARCHPREFIX)g++
400 LIB32 = $(ARCHPREFIX)ar rc
401 IMPLIB = $(ARCHPREFIX)dlltool
402 RSC = $(ARCHPREFIX)windres
412 INCLUDES = -I.\include -I. -I.. -I$(COREDIR)
414 .IF "$(WIN64)" == "define"
415 DEFINES += -DWIN64 -DCONSERVATIVE
417 LOCDEFS = -DPERLDLL -DPERL_CORE
421 # Current releases of MinGW 5.1.4 (as of 11-Aug-2009) will fail to link
422 # correctly if -lmsvcrt is specified explicitly.
428 -lmoldname -lkernel32 -luser32 -lgdi32 \
429 -lwinspool -lcomdlg32 -ladvapi32 -lshell32 -lole32 \
430 -loleaut32 -lnetapi32 -luuid -lws2_32 -lmpr \
431 -lwinmm -lversion -lodbc32 -lodbccp32 -lcomctl32
433 .IF "$(CFG)" == "Debug"
434 OPTIMIZE = -g -O2 -DDEBUGGING
442 CFLAGS = $(EXTRACFLAGS) $(INCLUDES) $(DEFINES) $(LOCDEFS) $(OPTIMIZE)
443 LINK_FLAGS = $(LINK_DBG) -L"$(INST_COREDIR)" -L"$(CCLIBDIR)"
448 BUILDOPT += -fno-strict-aliasing -mms-bitfields
452 # All but the free version of VC++ 7.x can load DLLs on demand. Makes the test
453 # suite run in about 10% less time.
454 .IF "$(CCTYPE)" != "MSVC70FREE"
455 DELAYLOAD = -DELAYLOAD:ws2_32.dll delayimp.lib
458 # Visual C++ 2005 and 2008 (VC++ 8.x and 9.x) create manifest files for EXEs and
459 # DLLs. These either need copying everywhere with the binaries, or else need
460 # embedding in them otherwise MSVCR80.dll or MSVCR90.dll won't be found. For
461 # simplicity, embed them if they exist (and delete them afterwards so that they
462 # don't get installed too).
463 EMBED_EXE_MANI = if exist $@.manifest mt -nologo -manifest $@.manifest -outputresource:$@;1 && \
464 if exist $@.manifest del $@.manifest
465 EMBED_DLL_MANI = if exist $@.manifest mt -nologo -manifest $@.manifest -outputresource:$@;2 && \
466 if exist $@.manifest del $@.manifest
468 # Most relevant compiler-specific options fall into two groups:
469 # either pre-MSVC80 or MSVC80 onwards, so define a macro for this.
470 .IF "$(CCTYPE)" == "MSVC60" || \
471 "$(CCTYPE)" == "MSVC70" || "$(CCTYPE)" == "MSVC70FREE"
479 LIB32 = $(LINK32) -lib
486 INCLUDES = -I$(COREDIR) -I.\include -I. -I..
487 #PCHFLAGS = -Fpc:\temp\vcmoduls.pch -YX
488 DEFINES = -DWIN32 -D_CONSOLE -DNO_STRICT
489 LOCDEFS = -DPERLDLL -DPERL_CORE
495 .IF "$(CFG)" == "Debug"
496 OPTIMIZE = -Od -MD -Zi -DDEBUGGING
499 # -O1 yields smaller code, which turns out to be faster than -O2 on x86 and x64
500 OPTIMIZE = -O1 -MD -Zi -DNDEBUG
501 # we enable debug symbols in release builds also
502 LINK_DBG = -debug -opt:ref,icf
503 # you may want to enable this if you want COFF symbols in the executables
504 # in addition to the PDB symbols. The default Dr. Watson that ships with
505 # Windows can use the the former but not latter. The free WinDbg can be
506 # installed to get better stack traces from just the PDB symbols, so we
507 # avoid the bloat of COFF symbols by default.
508 #LINK_DBG = $(LINK_DBG) -debugtype:both
509 .IF "$(WIN64)" == "define"
510 # enable Whole Program Optimizations (WPO) and Link Time Code Generation (LTCG)
516 .IF "$(WIN64)" == "define"
517 DEFINES += -DWIN64 -DCONSERVATIVE
518 OPTIMIZE += -fp:precise
521 # For now, silence warnings from VC++ 8.x onwards about "unsafe" CRT functions
522 # and POSIX CRT function names being deprecated.
523 .IF "$(PREMSVC80)" == "undef"
524 DEFINES += -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE
527 # In VS 2005 (VC++ 8.0) Microsoft changes time_t from 32-bit to
528 # 64-bit, even in 32-bit mode. It also provides the _USE_32BIT_TIME_T
529 # preprocessor option to revert back to the old functionality for
530 # backward compatibility. We define this symbol here for older 32-bit
531 # compilers only (which aren't using it at all) for the sole purpose
532 # of getting it into $Config{ccflags}. That way if someone builds
533 # Perl itself with e.g. VC6 but later installs an XS module using VC8
534 # the time_t types will still be compatible.
535 .IF "$(WIN64)" == "undef"
536 .IF "$(PREMSVC80)" == "define"
537 BUILDOPT += -D_USE_32BIT_TIME_T
542 oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.lib \
543 comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \
544 netapi32.lib uuid.lib ws2_32.lib mpr.lib winmm.lib \
545 version.lib odbc32.lib odbccp32.lib comctl32.lib
547 # The 64 bit Windows Server 2003 SP1 SDK compilers link against MSVCRT.dll, which
548 # doesn't include the buffer overrun verification code used by the /GS switch.
549 # Since the code links against libraries that are compiled with /GS, this
550 # "security cookie verification" code must be included via bufferoverflow.lib.
551 .IF "$(WIN64)" == "define" && "$(CCTYPE)" == "SDK2003SP1"
552 LIBBASEFILES += bufferoverflowU.lib
555 LIBFILES = $(LIBBASEFILES) $(LIBC)
557 EXTRACFLAGS = -nologo -GF -W3
558 CFLAGS = $(EXTRACFLAGS) $(INCLUDES) $(DEFINES) $(LOCDEFS) \
559 $(PCHFLAGS) $(OPTIMIZE)
560 LINK_FLAGS = -nologo -nodefaultlib $(LINK_DBG) \
561 -libpath:"$(INST_COREDIR)" \
562 -machine:$(PROCESSOR_ARCHITECTURE)
570 CFLAGS_O = $(CFLAGS) $(BUILDOPT)
572 .IF "$(PREMSVC80)" == "undef"
573 LINK_FLAGS += "/manifestdependency:type='Win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'"
575 RSC_FLAGS = -DINCLUDE_MANIFEST
579 # used to allow local linking flags that are not propogated into Config.pm,
583 BLINK_FLAGS = $(PRIV_LINK_FLAGS) $(LINK_FLAGS)
585 #################### do not edit below this line #######################
586 ############# NO USER-SERVICEABLE PARTS BEYOND THIS POINT ##############
588 # Some old dmakes (including Sarathy's one at
589 # http://search.cpan.org/CPAN/authors/id/G/GS/GSAR/dmake-4.1pl1-win32.zip)
590 # don't support logical OR (||) or logical AND (&&) in conditional
591 # expressions and hence don't process this makefile correctly. Determine
592 # whether this is the case so that we can give the user an error message.
609 .SUFFIXES : .c .i $(o) .dll $(a) .exe .rc .res
612 $(CC) -c $(null,$(<:d) $(NULL) -I$(<:d)) $(CFLAGS_O) $(OBJOUT_FLAG)$@ $<
615 $(CC) -c $(null,$(<:d) $(NULL) -I$(<:d)) $(CFLAGS_O) -E $< >$@
621 .IF "$(CCTYPE)" == "GCC"
622 $(LINK32) -o $@ $(BLINK_FLAGS) $< $(LIBFILES)
623 $(IMPLIB) --input-def $(*B).def --output-lib $(*B).a $@
625 $(LINK32) -dll -subsystem:windows -implib:$(*B).lib -def:$(*B).def \
626 -out:$@ $(BLINK_FLAGS) $(LIBFILES) $< $(LIBPERL)
631 .IF "$(CCTYPE)" == "GCC"
632 $(RSC) --use-temp-file --include-dir=. --include-dir=.. -O COFF -D INCLUDE_MANIFEST -i $< -o $@
634 $(RSC) -i.. -DINCLUDE_MANIFEST $<
639 MINIPERL = ..\miniperl.exe
641 PERLEXE = ..\perl.exe
642 WPERLEXE = ..\wperl.exe
643 PERLEXESTATIC = ..\perl-static.exe
644 STATICDIR = .\static.tmp
645 GLOBEXE = ..\perlglob.exe
646 CONFIGPM = ..\lib\Config.pm ..\lib\Config_heavy.pl
647 MINIMOD = ..\lib\ExtUtils\Miniperl.pm
649 GENUUDMAP = ..\generate_uudmap.exe
650 .IF "$(BUILD_STATIC)" == "define" || "$(ALL_STATIC)" == "define"
656 # Unicode data files generated by mktables
657 UNIDATAFILES = ..\lib\unicore\Decomposition.pl ..\lib\unicore\TestProp.pl \
658 ..\lib\unicore\CombiningClass.pl ..\lib\unicore\Name.pl \
659 ..\lib\unicore\UCD.pl ..\lib\unicore\Name.pm \
660 ..\lib\unicore\Heavy.pl ..\lib\unicore\mktables.lst
662 # Directories of Unicode data files generated by mktables
663 UNIDATADIR1 = ..\lib\unicore\To
664 UNIDATADIR2 = ..\lib\unicore\lib
666 PERLEXE_MANIFEST= .\perlexe.manifest
667 PERLEXE_ICO = .\perlexe.ico
668 PERLEXE_RES = .\perlexe.res
671 # Nominate a target which causes extensions to be re-built
672 # This used to be $(PERLEXE), but at worst it is the .dll that they depend
673 # on and really only the interface - i.e. the .def file used to export symbols
675 PERLDEP = perldll.def
678 PL2BAT = bin\pl2bat.pl
693 ..\utils\config_data \
702 ..\utils\zipdetails \
715 .IF "$(CCTYPE)" == "GCC"
717 CFGSH_TMPL = config.gc
718 CFGH_TMPL = config_H.gc
719 PERLIMPLIB = ..\libperl519$(a)
720 PERLSTATICLIB = ..\libperl519s$(a)
726 CFGSH_TMPL = config.vc
727 CFGH_TMPL = config_H.vc
733 # makedef.pl must be updated if this changes, and this should normally
734 # only change when there is an incompatible revision of the public API.
735 PERLIMPLIB *= ..\perl519$(a)
736 PERLSTATICLIB *= ..\perl519s$(a)
737 PERLDLL = ..\perl519.dll
739 XCOPY = xcopy /f /r /i /d /y
740 RCOPY = xcopy /f /r /i /e /d /y
781 EXTRACORE_SRC += perllib.c
783 .IF "$(PERL_MALLOC)" == "define"
784 EXTRACORE_SRC += ..\malloc.c
787 EXTRACORE_SRC += ..\perlio.c
795 # We need this for miniperl build unless we override canned
796 # config.h #define building mini\*
797 #.IF "$(USE_PERLIO)" == "define"
798 WIN32_SRC += .\win32io.c
845 .\include\sys\socket.h \
848 CORE_H = $(CORE_NOCFG_H) .\config.h ..\git_version.h
850 UUDMAP_H = ..\uudmap.h
851 BITCOUNT_H = ..\bitcount.h
852 MG_DATA_H = ..\mg_data.h
853 GENERATED_HEADERS = $(UUDMAP_H) $(BITCOUNT_H) $(MG_DATA_H)
855 MICROCORE_OBJ = $(MICROCORE_SRC:db:+$(o))
856 CORE_OBJ = $(MICROCORE_OBJ) $(EXTRACORE_SRC:db:+$(o))
857 WIN32_OBJ = $(WIN32_SRC:db:+$(o))
858 MINICORE_OBJ = $(MINIDIR)\{$(MICROCORE_OBJ:f) miniperlmain$(o) perlio$(o)}
859 MINIWIN32_OBJ = $(MINIDIR)\{$(WIN32_OBJ:f)}
860 MINI_OBJ = $(MINICORE_OBJ) $(MINIWIN32_OBJ)
861 DLL_OBJ = $(DYNALOADER)
862 X2P_OBJ = $(X2P_SRC:db:+$(o))
863 GENUUDMAP_OBJ = $(GENUUDMAP:db:+$(o))
865 PERLDLL_OBJ = $(CORE_OBJ)
866 PERLEXE_OBJ = perlmain$(o)
867 PERLEXEST_OBJ = perlmainst$(o)
869 PERLDLL_OBJ += $(WIN32_OBJ) $(DLL_OBJ)
871 .IF "$(USE_SETARGV)" != ""
872 SETARGV_OBJ = setargv$(o)
875 .IF "$(ALL_STATIC)" == "define"
876 # some exclusions, unfortunately, until fixed:
877 # - Win32 extension contains overlapped symbols with win32.c (BUG!)
878 # - MakeMaker isn't capable enough for SDBM_File (smaller bug)
879 # - Encode (encoding search algorithm relies on shared library?)
880 STATIC_EXT = * !Win32 !SDBM_File !Encode
882 # specify static extensions here, for example:
883 #STATIC_EXT = Cwd Compress/Raw/Zlib
884 STATIC_EXT = Win32CORE
887 DYNALOADER = ..\DynaLoader$(o)
889 # vars must be separated by "\t+~\t+", since we're using the tempfile
890 # version of config_sh.pl (we were overflowing someone's buffer by
891 # trying to fit them all on the command line)
894 INST_TOP=$(INST_TOP) ~ \
895 INST_VER=$(INST_VER) ~ \
896 INST_ARCH=$(INST_ARCH) ~ \
897 archname=$(ARCHNAME) ~ \
900 ccflags=$(EXTRACFLAGS) $(OPTIMIZE) $(DEFINES) $(BUILDOPT) ~ \
901 cf_email=$(EMAIL) ~ \
902 d_mymalloc=$(PERL_MALLOC) ~ \
903 libs=$(LIBFILES:f) ~ \
904 incpath=$(CCINCDIR) ~ \
905 libperl=$(PERLIMPLIB:f) ~ \
906 libpth=$(CCLIBDIR);$(EXTRALIBDIRS) ~ \
913 static_ext=$(STATIC_EXT) ~ \
914 usethreads=$(USE_ITHREADS) ~ \
915 useithreads=$(USE_ITHREADS) ~ \
916 usemultiplicity=$(USE_MULTI) ~ \
917 useperlio=$(USE_PERLIO) ~ \
918 use64bitint=$(USE_64_BIT_INT) ~ \
919 uselargefiles=$(USE_LARGE_FILES) ~ \
920 usesitecustomize=$(USE_SITECUST) ~ \
921 LINK_FLAGS=$(LINK_FLAGS) ~ \
922 optimize=$(OPTIMIZE) ~ \
923 ARCHPREFIX=$(ARCHPREFIX) ~ \
926 ICWD = -I..\dist\Cwd -I..\dist\Cwd\lib
932 all : CHECKDMAKE .\config.h ..\git_version.h $(GLOBEXE) $(MINIPERL) \
933 $(MINIMOD) $(CONFIGPM) $(UNIDATAFILES) MakePPPort \
934 $(PERLEXE) $(X2P) Extensions Extensions_nonxs $(PERLSTATIC)
936 regnodes : ..\regnodes.h
938 ..\regcomp$(o) : ..\regnodes.h ..\regcharclass.h
940 ..\regexec$(o) : ..\regnodes.h ..\regcharclass.h
942 reonly : regnodes .\config.h ..\git_version.h $(GLOBEXE) $(MINIPERL) \
943 $(MINIMOD) $(CONFIGPM) $(UNIDATAFILES) $(PERLEXE) \
944 $(X2P) Extensions_reonly
946 static: $(PERLEXESTATIC)
948 #----------------------------------------------------------------
951 .IF "$(NEWDMAKE)" == "define"
954 @echo Your dmake doesn't support ^|^| or ^&^& in conditional expressions.
955 @echo Please get the latest dmake from http://search.cpan.org/dist/dmake/
959 $(GLOBEXE) : perlglob$(o)
960 .IF "$(CCTYPE)" == "GCC"
961 $(LINK32) $(BLINK_FLAGS) -mconsole -o $@ perlglob$(o) $(LIBFILES)
963 $(LINK32) $(BLINK_FLAGS) $(LIBFILES) -out:$@ -subsystem:$(SUBSYS) \
964 perlglob$(o) setargv$(o)
968 perlglob$(o) : perlglob.c
970 config.w32 : $(CFGSH_TMPL)
971 copy $(CFGSH_TMPL) config.w32
974 # Copy the template config.h and set configurables at the end of it
975 # as per the options chosen and compiler used.
976 # Note: This config.h is only used to build miniperl.exe anyway, but
977 # it's as well to have its options correct to be sure that it builds
978 # and so that it's "-V" options are correct for use by makedef.pl. The
979 # real config.h used to build perl.exe is generated from the top-level
980 # config_h.SH by config_h.PL (run by miniperl.exe).
982 .\config.h : $(CFGH_TMPL) $(CORE_NOCFG_H)
984 copy $(CFGH_TMPL) config.h
986 @echo #ifndef _config_h_footer_>>$@
987 @echo #define _config_h_footer_>>$@
988 @echo #undef PTRSIZE>>$@
989 @echo #undef SSize_t>>$@
990 @echo #undef HAS_ATOLL>>$@
991 @echo #undef HAS_STRTOLL>>$@
992 @echo #undef HAS_STRTOULL>>$@
993 @echo #undef IVTYPE>>$@
994 @echo #undef UVTYPE>>$@
995 @echo #undef IVSIZE>>$@
996 @echo #undef UVSIZE>>$@
997 @echo #undef NV_PRESERVES_UV>>$@
998 @echo #undef NV_PRESERVES_UV_BITS>>$@
999 @echo #undef IVdf>>$@
1000 @echo #undef UVuf>>$@
1001 @echo #undef UVof>>$@
1002 @echo #undef UVxf>>$@
1003 @echo #undef UVXf>>$@
1004 @echo #undef USE_64_BIT_INT>>$@
1005 @echo #undef Size_t_size>>$@
1006 .IF "$(WIN64)"=="define"
1007 @echo #define PTRSIZE ^8>>$@
1008 @echo #define SSize_t $(INT64)>>$@
1009 @echo #define HAS_ATOLL>>$@
1010 @echo #define HAS_STRTOLL>>$@
1011 @echo #define HAS_STRTOULL>>$@
1012 @echo #define Size_t_size ^8>>$@
1014 @echo #define PTRSIZE ^4>>$@
1015 @echo #define SSize_t int>>$@
1016 @echo #undef HAS_ATOLL>>$@
1017 @echo #undef HAS_STRTOLL>>$@
1018 @echo #undef HAS_STRTOULL>>$@
1019 @echo #define Size_t_size ^4>>$@
1021 .IF "$(USE_64_BIT_INT)"=="define"
1022 @echo #define IVTYPE $(INT64)>>$@
1023 @echo #define UVTYPE unsigned $(INT64)>>$@
1024 @echo #define IVSIZE ^8>>$@
1025 @echo #define UVSIZE ^8>>$@
1026 @echo #undef NV_PRESERVES_UV>>$@
1027 @echo #define NV_PRESERVES_UV_BITS 53>>$@
1028 @echo #define IVdf "$(INT64f)d">>$@
1029 @echo #define UVuf "$(INT64f)u">>$@
1030 @echo #define UVof "$(INT64f)o">>$@
1031 @echo #define UVxf "$(INT64f)x">>$@
1032 @echo #define UVXf "$(INT64f)X">>$@
1033 @echo #define USE_64_BIT_INT>>$@
1035 @echo #define IVTYPE long>>$@
1036 @echo #define UVTYPE unsigned long>>$@
1037 @echo #define IVSIZE ^4>>$@
1038 @echo #define UVSIZE ^4>>$@
1039 @echo #define NV_PRESERVES_UV>>$@
1040 @echo #define NV_PRESERVES_UV_BITS 32>>$@
1041 @echo #define IVdf "ld">>$@
1042 @echo #define UVuf "lu">>$@
1043 @echo #define UVof "lo">>$@
1044 @echo #define UVxf "lx">>$@
1045 @echo #define UVXf "lX">>$@
1046 @echo #undef USE_64_BIT_INT>>$@
1050 ..\git_version.h : $(MINIPERL) ..\make_patchnum.pl
1051 cd .. && miniperl -Ilib make_patchnum.pl
1053 # make sure that we recompile perl.c if the git version changes
1054 ..\perl$(o) : ..\git_version.h
1056 ..\config.sh : config.w32 $(MINIPERL) config_sh.PL FindExt.pm
1057 $(MINIPERL) -I..\lib config_sh.PL --cfgsh-option-file \
1058 $(mktmp $(CFG_VARS)) config.w32 > ..\config.sh
1060 # This target is for when changes to the main config.sh happen.
1061 # Edit config.gc, then make perl using GCC in a minimal configuration (i.e.
1062 # with MULTI, ITHREADS, IMP_SYS, LARGE_FILES and PERLIO off), then make
1063 # this target to regenerate config_H.gc.
1065 $(MINIPERL) -I..\lib config_sh.PL --cfgsh-option-file $(mktmp $(CFG_VARS)) \
1066 $(CFGSH_TMPL) > ..\config.sh
1067 $(MINIPERL) -I..\lib ..\configpm --chdir=..
1068 -del /f $(CFGH_TMPL)
1069 -$(MINIPERL) -I..\lib $(ICWD) config_h.PL "ARCHPREFIX=$(ARCHPREFIX)"
1070 rename config.h $(CFGH_TMPL)
1072 $(CONFIGPM) : $(MINIPERL) ..\config.sh config_h.PL ..\minimod.pl
1073 $(MINIPERL) -I..\lib ..\configpm --chdir=..
1074 if exist lib\* $(RCOPY) lib\*.* ..\lib\$(NULL)
1075 $(XCOPY) ..\*.h $(COREDIR)\*.*
1076 $(XCOPY) *.h $(COREDIR)\*.*
1077 $(RCOPY) include $(COREDIR)\*.*
1078 $(MINIPERL) -I..\lib $(ICWD) config_h.PL "ARCHPREFIX=$(ARCHPREFIX)" \
1079 || $(MAKE) $(MAKEMACROS) $(CONFIGPM) $(MAKEFILE)
1081 ..\lib\buildcustomize.pl: $(MINIPERL) ..\write_buildcustomize.pl
1082 $(MINIPERL) -I..\lib ..\write_buildcustomize.pl .. >..\lib\buildcustomize.pl
1085 $(MINIPERL) : $(MINIDIR) $(MINI_OBJ) $(CRTIPMLIBS)
1086 .IF "$(CCTYPE)" == "GCC"
1087 $(LINK32) -v -mconsole -o $@ $(BLINK_FLAGS) \
1088 $(mktmp $(LKPRE) $(MINI_OBJ) $(LIBFILES) $(LKPOST))
1090 $(LINK32) -subsystem:console -out:$@ $(BLINK_FLAGS) \
1091 @$(mktmp $(DELAYLOAD) $(LIBFILES) $(MINI_OBJ))
1096 if not exist "$(MINIDIR)" mkdir "$(MINIDIR)"
1098 $(MINICORE_OBJ) : $(CORE_NOCFG_H)
1099 $(CC) -c $(CFLAGS) -DPERL_EXTERNAL_GLOB -DPERL_IS_MINIPERL $(OBJOUT_FLAG)$@ ..\$(*B).c
1101 $(MINIWIN32_OBJ) : $(CORE_NOCFG_H)
1102 $(CC) -c $(CFLAGS) -DPERL_IS_MINIPERL $(OBJOUT_FLAG)$@ $(*B).c
1104 # -DPERL_IMPLICIT_SYS needs C++ for perllib.c
1105 # rules wrapped in .IFs break Win9X build (we end up with unbalanced []s unless
1106 # unless the .IF is true), so instead we use a .ELSE with the default.
1107 # This is the only file that depends on perlhost.h, vmem.h, and vdir.h
1109 perllib$(o) : perllib.c .\perlhost.h .\vdir.h .\vmem.h
1110 .IF "$(USE_IMP_SYS)" == "define"
1111 $(CC) -c -I. $(CFLAGS_O) $(CXX_FLAG) $(OBJOUT_FLAG)$@ perllib.c
1113 $(CC) -c -I. $(CFLAGS_O) $(OBJOUT_FLAG)$@ perllib.c
1116 # 1. we don't want to rebuild miniperl.exe when config.h changes
1117 # 2. we don't want to rebuild miniperl.exe with non-default config.h
1118 # 3. we can't have miniperl.exe depend on git_version.h, as miniperl creates it
1119 $(MINI_OBJ) : $(CORE_NOCFG_H)
1121 $(WIN32_OBJ) : $(CORE_H)
1123 $(CORE_OBJ) : $(CORE_H)
1125 $(DLL_OBJ) : $(CORE_H)
1127 $(X2P_OBJ) : $(CORE_H)
1129 perldll.def : $(MINIPERL) $(CONFIGPM) ..\embed.fnc ..\makedef.pl create_perllibst_h.pl
1130 $(MINIPERL) -I..\lib create_perllibst_h.pl
1131 $(MINIPERL) -I..\lib -w ..\makedef.pl PLATFORM=win32 $(OPTIMIZE) $(DEFINES) \
1132 $(BUILDOPT) CCTYPE=$(CCTYPE) TARG_DIR=..\ > perldll.def
1134 $(PERLDLL): perldll.def $(PERLDLL_OBJ) $(PERLDLL_RES) Extensions_static
1135 .IF "$(CCTYPE)" == "GCC"
1136 $(LINK32) -mdll -o $@ -Wl,--base-file -Wl,perl.base $(BLINK_FLAGS) \
1137 $(mktmp $(LKPRE) $(PERLDLL_OBJ) \
1138 $(shell @type Extensions_static) \
1139 $(LIBFILES) $(LKPOST))
1140 $(IMPLIB) --output-lib $(PERLIMPLIB) \
1141 --dllname $(PERLDLL:b).dll \
1143 --base-file perl.base \
1144 --output-exp perl.exp
1145 $(LINK32) -mdll -o $@ $(BLINK_FLAGS) \
1146 $(mktmp $(LKPRE) $(PERLDLL_OBJ) \
1147 $(shell @type Extensions_static) \
1148 $(LIBFILES) perl.exp $(LKPOST))
1150 $(LINK32) -dll -def:perldll.def -out:$@ $(BLINK_FLAGS) \
1151 @Extensions_static \
1152 @$(mktmp -base:0x28000000 $(DELAYLOAD) $(LIBFILES) \
1153 $(PERLDLL_RES) $(PERLDLL_OBJ))
1156 $(XCOPY) $(PERLIMPLIB) $(COREDIR)
1158 $(PERLSTATICLIB): $(PERLDLL_OBJ) Extensions_static
1159 .IF "$(CCTYPE)" == "GCC"
1160 if exist $(STATICDIR) rmdir /s /q $(STATICDIR)
1162 cd $(STATICDIR) && for %i in ($(shell @type Extensions_static)) do $(ARCHPREFIX)ar x ..\%i
1163 $(LIB32) $(LIB_FLAGS) $@ $(STATICDIR)\*$(o) $(PERLDLL_OBJ)
1164 rmdir /s /q $(STATICDIR)
1166 $(LIB32) $(LIB_FLAGS) -out:$@ @Extensions_static \
1167 @$(mktmp $(PERLDLL_OBJ))
1169 $(XCOPY) $(PERLSTATICLIB) $(COREDIR)
1171 $(PERLEXE_RES): perlexe.rc $(PERLEXE_MANIFEST) $(PERLEXE_ICO)
1173 $(MINIMOD) : $(MINIPERL) ..\minimod.pl
1174 cd .. && miniperl minimod.pl > lib\ExtUtils\Miniperl.pm
1176 ..\x2p\a2p$(o) : ..\x2p\a2p.c
1177 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\a2p.c
1179 ..\x2p\hash$(o) : ..\x2p\hash.c
1180 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\hash.c
1182 ..\x2p\str$(o) : ..\x2p\str.c
1183 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\str.c
1185 ..\x2p\util$(o) : ..\x2p\util.c
1186 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\util.c
1188 ..\x2p\walk$(o) : ..\x2p\walk.c
1189 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\walk.c
1191 $(X2P) : $(MINIPERL) $(X2P_OBJ) Extensions
1192 $(MINIPERL) -I..\lib ..\x2p\find2perl.PL
1193 $(MINIPERL) -I..\lib ..\x2p\s2p.PL
1194 .IF "$(CCTYPE)" == "GCC"
1195 $(LINK32) -v -o $@ $(BLINK_FLAGS) \
1196 $(mktmp $(LKPRE) $(X2P_OBJ) $(LIBFILES) $(LKPOST))
1198 $(LINK32) -subsystem:console -out:$@ $(BLINK_FLAGS) \
1199 @$(mktmp $(LIBFILES) $(X2P_OBJ))
1203 $(MINIDIR)\globals$(o) : $(GENERATED_HEADERS)
1205 $(UUDMAP_H) $(MG_DATA_H) : $(BITCOUNT_H)
1207 $(BITCOUNT_H) : $(GENUUDMAP)
1208 $(GENUUDMAP) $(GENERATED_HEADERS)
1210 $(GENUUDMAP_OBJ) : ..\mg_raw.h
1212 $(GENUUDMAP) : $(GENUUDMAP_OBJ)
1213 .IF "$(CCTYPE)" == "GCC"
1214 $(LINK32) -v -o $@ $(BLINK_FLAGS) \
1215 $(mktmp $(LKPRE) $(GENUUDMAP_OBJ) $(LIBFILES) $(LKPOST))
1217 $(LINK32) -subsystem:console -out:$@ $(BLINK_FLAGS) \
1218 @$(mktmp $(LIBFILES) $(GENUUDMAP_OBJ))
1222 perlmain.c : runperl.c
1223 copy runperl.c perlmain.c
1225 perlmain$(o) : perlmain.c
1226 $(CC) $(CFLAGS_O:s,-DPERLDLL,-UPERLDLL,) $(OBJOUT_FLAG)$@ -c perlmain.c
1228 perlmainst.c : runperl.c
1229 copy runperl.c perlmainst.c
1231 perlmainst$(o) : perlmainst.c
1232 $(CC) $(CFLAGS_O) $(OBJOUT_FLAG)$@ -c perlmainst.c
1234 $(PERLEXE): $(PERLDLL) $(CONFIGPM) $(PERLEXE_OBJ) $(PERLEXE_RES)
1235 .IF "$(CCTYPE)" == "GCC"
1236 $(LINK32) -mconsole -o $@ $(BLINK_FLAGS) \
1237 $(PERLEXE_OBJ) $(PERLEXE_RES) $(PERLIMPLIB) $(LIBFILES)
1239 $(LINK32) -subsystem:console -out:$@ $(BLINK_FLAGS) \
1240 $(PERLEXE_OBJ) $(PERLEXE_RES) $(PERLIMPLIB) $(LIBFILES) $(SETARGV_OBJ)
1243 copy $(PERLEXE) $(WPERLEXE)
1244 $(MINIPERL) -I..\lib bin\exetype.pl $(WPERLEXE) WINDOWS
1246 $(PERLEXESTATIC): $(PERLSTATICLIB) $(CONFIGPM) $(PERLEXEST_OBJ) $(PERLEXE_RES)
1247 .IF "$(CCTYPE)" == "GCC"
1248 $(LINK32) -mconsole -o $@ $(BLINK_FLAGS) \
1249 $(PERLEXEST_OBJ) $(PERLEXE_RES) $(PERLSTATICLIB) $(LIBFILES)
1251 $(LINK32) -subsystem:console -out:$@ $(BLINK_FLAGS) \
1252 $(PERLEXEST_OBJ) $(PERLEXE_RES) $(PERLSTATICLIB) $(LIBFILES) $(SETARGV_OBJ)
1256 MakePPPort: $(MINIPERL) $(CONFIGPM) Extensions_nonxs
1257 $(MINIPERL) -I..\lib $(ICWD) ..\mkppport
1259 #-------------------------------------------------------------------------------
1260 # There's no direct way to mark a dependency on
1261 # DynaLoader.pm, so this will have to do
1262 Extensions : ..\make_ext.pl ..\lib\buildcustomize.pl $(PERLDEP) $(CONFIGPM) $(DYNALOADER)
1263 $(XCOPY) ..\*.h $(COREDIR)\*.*
1264 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --dynamic
1266 Extensions_reonly : ..\make_ext.pl ..\lib\buildcustomize.pl $(PERLDEP) $(CONFIGPM) $(DYNALOADER)
1267 $(XCOPY) ..\*.h $(COREDIR)\*.*
1268 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --dynamic +re
1270 Extensions_static : ..\make_ext.pl ..\lib\buildcustomize.pl list_static_libs.pl $(PERLDEP) $(CONFIGPM)
1271 $(XCOPY) ..\*.h $(COREDIR)\*.*
1272 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --static
1273 $(MINIPERL) -I..\lib list_static_libs.pl > Extensions_static
1275 Extensions_nonxs : ..\make_ext.pl ..\lib\buildcustomize.pl $(PERLDEP) $(CONFIGPM) ..\pod\perlfunc.pod
1276 $(XCOPY) ..\*.h $(COREDIR)\*.*
1277 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --nonxs
1279 $(DYNALOADER) : ..\make_ext.pl ..\lib\buildcustomize.pl $(PERLDEP) $(CONFIGPM) Extensions_nonxs
1280 $(XCOPY) ..\*.h $(COREDIR)\*.*
1281 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(EXTDIR) --dynaloader
1284 -if exist $(MINIPERL) $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --all --target=clean
1286 Extensions_realclean :
1287 -if exist $(MINIPERL) $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --all --target=realclean
1289 #-------------------------------------------------------------------------------
1292 doc: $(PERLEXE) ..\pod\perltoc.pod
1293 $(PERLEXE) -I..\lib ..\installhtml --podroot=.. --htmldir=$(HTMLDIR) \
1294 --podpath=pod:lib:utils --htmlroot="file://$(INST_HTML:s,:,|,)"\
1297 # Note that this next section is parsed (and regenerated) by pod/buildtoc
1298 # so please check that script before making structural changes here
1299 utils: $(PERLEXE) $(X2P)
1300 cd ..\utils && $(MAKE) PERL=$(MINIPERL)
1301 copy ..\README.aix ..\pod\perlaix.pod
1302 copy ..\README.amiga ..\pod\perlamiga.pod
1303 copy ..\README.bs2000 ..\pod\perlbs2000.pod
1304 copy ..\README.ce ..\pod\perlce.pod
1305 copy ..\README.cn ..\pod\perlcn.pod
1306 copy ..\README.cygwin ..\pod\perlcygwin.pod
1307 copy ..\README.dos ..\pod\perldos.pod
1308 copy ..\README.freebsd ..\pod\perlfreebsd.pod
1309 copy ..\README.haiku ..\pod\perlhaiku.pod
1310 copy ..\README.hpux ..\pod\perlhpux.pod
1311 copy ..\README.hurd ..\pod\perlhurd.pod
1312 copy ..\README.irix ..\pod\perlirix.pod
1313 copy ..\README.jp ..\pod\perljp.pod
1314 copy ..\README.ko ..\pod\perlko.pod
1315 copy ..\README.linux ..\pod\perllinux.pod
1316 copy ..\README.macos ..\pod\perlmacos.pod
1317 copy ..\README.macosx ..\pod\perlmacosx.pod
1318 copy ..\README.netware ..\pod\perlnetware.pod
1319 copy ..\README.openbsd ..\pod\perlopenbsd.pod
1320 copy ..\README.os2 ..\pod\perlos2.pod
1321 copy ..\README.os390 ..\pod\perlos390.pod
1322 copy ..\README.os400 ..\pod\perlos400.pod
1323 copy ..\README.plan9 ..\pod\perlplan9.pod
1324 copy ..\README.qnx ..\pod\perlqnx.pod
1325 copy ..\README.riscos ..\pod\perlriscos.pod
1326 copy ..\README.solaris ..\pod\perlsolaris.pod
1327 copy ..\README.symbian ..\pod\perlsymbian.pod
1328 copy ..\README.tru64 ..\pod\perltru64.pod
1329 copy ..\README.tw ..\pod\perltw.pod
1330 copy ..\README.vos ..\pod\perlvos.pod
1331 copy ..\README.win32 ..\pod\perlwin32.pod
1332 copy ..\pod\perldelta.pod ..\pod\perl5191delta.pod
1333 $(PERLEXE) $(PL2BAT) $(UTILS)
1334 $(PERLEXE) $(ICWD) ..\autodoc.pl ..
1335 $(PERLEXE) $(ICWD) ..\pod\perlmodlib.pl -q
1337 ..\pod\perltoc.pod: $(PERLEXE) Extensions Extensions_nonxs
1338 $(PERLEXE) -f ..\pod\buildtoc -q
1340 # Note that the pod cleanup in this next section is parsed (and regenerated
1341 # by pod/buildtoc so please check that script before making changes here
1343 distclean: realclean
1344 -del /f $(MINIPERL) $(PERLEXE) $(PERLDLL) $(GLOBEXE) \
1345 $(PERLIMPLIB) ..\miniperl$(a) $(MINIMOD) \
1346 $(PERLEXESTATIC) $(PERLSTATICLIB)
1348 -del /f $(LIBDIR)\Encode.pm $(LIBDIR)\encoding.pm $(LIBDIR)\Errno.pm
1349 -del /f $(LIBDIR)\Config.pod $(LIBDIR)\POSIX.pod $(LIBDIR)\threads.pm
1350 -del /f $(LIBDIR)\.exists $(LIBDIR)\attributes.pm $(LIBDIR)\DynaLoader.pm
1351 -del /f $(LIBDIR)\Fcntl.pm $(LIBDIR)\IO.pm $(LIBDIR)\Opcode.pm
1352 -del /f $(LIBDIR)\ops.pm $(LIBDIR)\Safe.pm
1353 -del /f $(LIBDIR)\SDBM_File.pm $(LIBDIR)\Socket.pm $(LIBDIR)\POSIX.pm
1354 -del /f $(LIBDIR)\B.pm $(LIBDIR)\O.pm $(LIBDIR)\re.pm
1355 -del /f $(LIBDIR)\File\Glob.pm
1356 -del /f $(LIBDIR)\Storable.pm
1357 -del /f $(LIBDIR)\Sys\Hostname.pm
1358 -del /f $(LIBDIR)\Time\HiRes.pm
1359 -del /f $(LIBDIR)\Unicode\Normalize.pm
1360 -del /f $(LIBDIR)\Math\BigInt\FastCalc.pm
1361 -del /f $(LIBDIR)\Win32.pm
1362 -del /f $(LIBDIR)\Win32CORE.pm
1363 -del /f $(LIBDIR)\Win32API\File.pm
1364 -del /f $(LIBDIR)\Win32API\File\cFile.pc
1365 -del /f $(LIBDIR)\buildcustomize.pl
1366 -del /f $(DISTDIR)\XSLoader\XSLoader.pm
1367 -if exist $(LIBDIR)\App rmdir /s /q $(LIBDIR)\App
1368 -if exist $(LIBDIR)\Archive rmdir /s /q $(LIBDIR)\Archive
1369 -if exist $(LIBDIR)\Attribute rmdir /s /q $(LIBDIR)\Attribute
1370 -if exist $(LIBDIR)\autodie rmdir /s /q $(LIBDIR)\autodie
1371 -if exist $(LIBDIR)\B rmdir /s /q $(LIBDIR)\B
1372 -if exist $(LIBDIR)\CGI rmdir /s /q $(LIBDIR)\CGI
1373 -if exist $(LIBDIR)\CPAN rmdir /s /q $(LIBDIR)\CPAN
1374 -if exist $(LIBDIR)\Compress rmdir /s /q $(LIBDIR)\Compress
1375 -if exist $(LIBDIR)\Data rmdir /s /q $(LIBDIR)\Data
1376 -if exist $(LIBDIR)\Devel rmdir /s /q $(LIBDIR)\Devel
1377 -if exist $(LIBDIR)\Digest rmdir /s /q $(LIBDIR)\Digest
1378 -if exist $(LIBDIR)\Encode rmdir /s /q $(LIBDIR)\Encode
1379 -if exist $(LIBDIR)\encoding rmdir /s /q $(LIBDIR)\encoding
1380 -if exist $(LIBDIR)\ExtUtils\CBuilder rmdir /s /q $(LIBDIR)\ExtUtils\CBuilder
1381 -if exist $(LIBDIR)\ExtUtils\Command rmdir /s /q $(LIBDIR)\ExtUtils\Command
1382 -if exist $(LIBDIR)\ExtUtils\Constant rmdir /s /q $(LIBDIR)\ExtUtils\Constant
1383 -if exist $(LIBDIR)\ExtUtils\Liblist rmdir /s /q $(LIBDIR)\ExtUtils\Liblist
1384 -if exist $(LIBDIR)\ExtUtils\MakeMaker rmdir /s /q $(LIBDIR)\ExtUtils\MakeMaker
1385 -if exist $(LIBDIR)\File\Spec rmdir /s /q $(LIBDIR)\File\Spec
1386 -if exist $(LIBDIR)\Filter rmdir /s /q $(LIBDIR)\Filter
1387 -if exist $(LIBDIR)\Hash rmdir /s /q $(LIBDIR)\Hash
1388 -if exist $(LIBDIR)\I18N\LangTags rmdir /s /q $(LIBDIR)\I18N\LangTags
1389 -if exist $(LIBDIR)\inc rmdir /s /q $(LIBDIR)\inc
1390 -if exist $(LIBDIR)\Module\Pluggable rmdir /s /q $(LIBDIR)\Module\Pluggable
1391 -if exist $(LIBDIR)\IO rmdir /s /q $(LIBDIR)\IO
1392 -if exist $(LIBDIR)\IPC rmdir /s /q $(LIBDIR)\IPC
1393 -if exist $(LIBDIR)\List rmdir /s /q $(LIBDIR)\List
1394 -if exist $(LIBDIR)\Locale rmdir /s /q $(LIBDIR)\Locale
1395 -if exist $(LIBDIR)\Log rmdir /s /q $(LIBDIR)\Log
1396 -if exist $(LIBDIR)\Math rmdir /s /q $(LIBDIR)\Math
1397 -if exist $(LIBDIR)\Memoize rmdir /s /q $(LIBDIR)\Memoize
1398 -if exist $(LIBDIR)\MIME rmdir /s /q $(LIBDIR)\MIME
1399 -if exist $(LIBDIR)\Module rmdir /s /q $(LIBDIR)\Module
1400 -if exist $(LIBDIR)\mro rmdir /s /q $(LIBDIR)\mro
1401 -if exist $(LIBDIR)\Net\FTP rmdir /s /q $(LIBDIR)\Net\FTP
1402 -if exist $(LIBDIR)\Object rmdir /s /q $(LIBDIR)\Object
1403 -if exist $(LIBDIR)\Package rmdir /s /q $(LIBDIR)\Package
1404 -if exist $(LIBDIR)\Params rmdir /s /q $(LIBDIR)\Params
1405 -if exist $(LIBDIR)\Parse rmdir /s /q $(LIBDIR)\Parse
1406 -if exist $(LIBDIR)\PerlIO rmdir /s /q $(LIBDIR)\PerlIO
1407 -if exist $(LIBDIR)\Pod\Perldoc rmdir /s /q $(LIBDIR)\Pod\Perldoc
1408 -if exist $(LIBDIR)\Pod\Simple rmdir /s /q $(LIBDIR)\Pod\Simple
1409 -if exist $(LIBDIR)\Pod\Text rmdir /s /q $(LIBDIR)\Pod\Text
1410 -if exist $(LIBDIR)\re rmdir /s /q $(LIBDIR)\re
1411 -if exist $(LIBDIR)\Scalar rmdir /s /q $(LIBDIR)\Scalar
1412 -if exist $(LIBDIR)\Sys rmdir /s /q $(LIBDIR)\Sys
1413 -if exist $(LIBDIR)\TAP rmdir /s /q $(LIBDIR)\TAP
1414 -if exist $(LIBDIR)\Term\UI rmdir /s /q $(LIBDIR)\Term\UI
1415 -if exist $(LIBDIR)\Test rmdir /s /q $(LIBDIR)\Test
1416 -if exist $(LIBDIR)\Thread rmdir /s /q $(LIBDIR)\Thread
1417 -if exist $(LIBDIR)\threads rmdir /s /q $(LIBDIR)\threads
1418 -if exist $(LIBDIR)\Tie\Hash rmdir /s /q $(LIBDIR)\Tie\Hash
1419 -if exist $(LIBDIR)\Unicode\Collate rmdir /s /q $(LIBDIR)\Unicode\Collate
1420 -if exist $(LIBDIR)\XS rmdir /s /q $(LIBDIR)\XS
1421 -if exist $(LIBDIR)\Win32API rmdir /s /q $(LIBDIR)\Win32API
1422 -cd $(PODDIR) && del /f *.html *.bat roffitall \
1423 perl5191delta.pod perlaix.pod perlamiga.pod perlapi.pod \
1424 perlbs2000.pod perlce.pod perlcn.pod perlcygwin.pod perldos.pod \
1425 perlfreebsd.pod perlhaiku.pod perlhpux.pod perlhurd.pod \
1426 perlintern.pod perlirix.pod perljp.pod perlko.pod perllinux.pod \
1427 perlmacos.pod perlmacosx.pod perlmodlib.pod perlnetware.pod \
1428 perlopenbsd.pod perlos2.pod perlos390.pod perlos400.pod \
1429 perlplan9.pod perlqnx.pod perlriscos.pod perlsolaris.pod \
1430 perlsymbian.pod perltoc.pod perltru64.pod perltw.pod \
1431 perluniprops.pod perlvos.pod perlwin32.pod
1432 -cd ..\utils && del /f h2ph splain perlbug pl2pm c2ph pstruct h2xs \
1433 perldoc perlivp libnetcfg enc2xs piconv cpan *.bat \
1434 xsubpp pod2html instmodsh json_pp prove ptar ptardiff ptargrep shasum corelist config_data zipdetails
1435 -cd ..\x2p && del /f find2perl s2p psed *.bat
1436 -del /f ..\config.sh perlmain.c dlutils.c config.h.new \
1439 -del /f ..\lib\Config_git.pl
1442 -del /f $(PERLEXE_RES) perl.base
1443 -cd .. && del /s *$(a) *.map *.pdb *.ilk *.tds *.bs *$(o) .exists pm_to_blib ppport.h
1444 -cd $(EXTDIR) && del /s *.def Makefile Makefile.old
1445 -cd $(DISTDIR) && del /s *.def Makefile Makefile.old
1446 -cd $(CPANDIR) && del /s *.def Makefile Makefile.old
1447 -if exist $(AUTODIR) rmdir /s /q $(AUTODIR)
1448 -if exist $(COREDIR) rmdir /s /q $(COREDIR)
1449 -if exist pod2htmd.tmp del pod2htmd.tmp
1450 -if exist $(HTMLDIR) rmdir /s /q $(HTMLDIR)
1451 -del /f ..\t\test_state
1453 install : all installbare installhtml
1455 installbare : utils ..\pod\perltoc.pod
1456 $(PERLEXE) ..\installperl
1457 if exist $(WPERLEXE) $(XCOPY) $(WPERLEXE) $(INST_BIN)\*.*
1458 if exist $(PERLEXESTATIC) $(XCOPY) $(PERLEXESTATIC) $(INST_BIN)\*.*
1459 $(XCOPY) $(GLOBEXE) $(INST_BIN)\*.*
1460 if exist ..\perl*.pdb $(XCOPY) ..\perl*.pdb $(INST_BIN)\*.*
1461 if exist ..\x2p\a2p.pdb $(XCOPY) ..\x2p\a2p.pdb $(INST_BIN)\*.*
1462 $(XCOPY) bin\*.bat $(INST_SCRIPT)\*.*
1465 $(RCOPY) $(HTMLDIR)\*.* $(INST_HTML)\*.*
1467 inst_lib : $(CONFIGPM)
1468 $(RCOPY) ..\lib $(INST_LIB)\*.*
1470 $(UNIDATAFILES) ..\pod\perluniprops.pod .UPDATEALL : $(MINIPERL) $(CONFIGPM) ..\lib\unicore\mktables Extensions_nonxs
1471 cd ..\lib\unicore && \
1472 ..\$(MINIPERL) -I.. -I..\..\dist\Cwd\lib -I..\..\dist\Cwd mktables -P ..\..\pod -maketest -makelist -p
1474 minitest : $(MINIPERL) $(GLOBEXE) $(CONFIGPM) $(UNIDATAFILES) utils
1475 $(XCOPY) $(MINIPERL) ..\t\$(NULL)
1476 if exist ..\t\perl.exe del /f ..\t\perl.exe
1477 rename ..\t\miniperl.exe perl.exe
1478 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1481 $(MINIPERL) -I..\lib harness base/*.t comp/*.t cmd/*.t io/*.t opbasic/*.t op/*.t pragma/*.t
1483 test-prep : all utils ..\pod\perltoc.pod
1484 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1485 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1486 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1487 .IF "$(CCTYPE)" == "GCC"
1488 # If building with gcc versions 4.x.x or greater, then
1489 # the GCC helper DLL will also need copied to the test directory.
1490 # The name of the dll can change, depending upon which vendor has supplied
1491 # your compiler, and upon the values of "x".
1492 # libstdc++-6.dll is copied if it exists as it, too, may then be needed.
1493 # Without this copying, the op/taint.t test script will fail.
1494 if exist $(CCDLLDIR)\libgcc_s_sjlj-1.dll $(XCOPY) $(CCDLLDIR)\libgcc_s_sjlj-1.dll ..\t\$(NULL)
1495 if exist $(CCDLLDIR)\libgcc_s_dw2-1.dll $(XCOPY) $(CCDLLDIR)\libgcc_s_dw2-1.dll ..\t\$(NULL)
1496 if exist $(CCDLLDIR)\libstdc++-6.dll $(XCOPY) $(CCDLLDIR)\libstdc++-6.dll ..\t\$(NULL)
1500 set PERL_STATIC_EXT=$(STATIC_EXT) && \
1501 cd ..\t && $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES)
1503 test_porting : test-prep
1504 set PERL_STATIC_EXT=$(STATIC_EXT) && \
1505 cd ..\t && $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) porting\*.t ..\lib\diagnostics.t
1507 test-reonly : reonly utils
1508 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1509 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1510 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1512 $(PERLEXE) -I..\lib harness $(OPT) -re \bpat\\/ $(EXTRA) && \
1516 cd .. && regen.pl && cd win32
1518 test-notty : test-prep
1519 set PERL_STATIC_EXT=$(STATIC_EXT) && \
1520 set PERL_SKIP_TTY_TEST=1 && \
1521 cd ..\t && $(PERLEXE) -I.\lib harness $(TEST_SWITCHES) $(TEST_FILES)
1524 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1525 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1526 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1527 set PERL_STATIC_EXT=$(STATIC_EXT) && \
1528 cd ..\t && $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES)
1531 -@erase miniperlmain$(o)
1533 -@erase perlglob$(o)
1534 -@erase perlmain$(o)
1535 -@erase perlmainst$(o)
1538 -@erase /f ..\git_version.h
1542 -@erase $(PERLEXESTATIC)
1543 -@erase $(PERLSTATICLIB)
1546 -@erase $(GENUUDMAP) $(GENUUDMAP_OBJ) $(GENERATED_HEADERS)
1547 -if exist $(MINIDIR) rmdir /s /q $(MINIDIR)
1548 -if exist $(UNIDATADIR1) rmdir /s /q $(UNIDATADIR1)
1549 -if exist $(UNIDATADIR2) rmdir /s /q $(UNIDATADIR2)
1550 -@erase $(UNIDATAFILES)
1551 -@erase $(WIN32_OBJ)
1554 -@erase ..\*$(o) ..\*$(a) ..\*.exp *$(o) *$(a) *.exp *.res
1555 -@erase ..\t\*.exe ..\t\*.dll ..\t\*.bat
1556 -@erase ..\x2p\*.exe ..\x2p\*.bat
1560 -@erase Extensions_static
1564 clean : Extensions_clean _clean
1566 realclean : Extensions_realclean _clean
1568 # Handy way to run perlbug -ok without having to install and run the
1569 # installed perlbug. We don't re-run the tests here - we trust the user.
1570 # Please *don't* use this unless all tests pass.
1571 # If you want to report test failures, use "dmake nok" instead.
1573 $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)"
1576 $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)" -F perl.ok
1579 $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)"
1582 $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)" -F perl.nok