2 # Makefile to build perl on Windows NT using DMAKE.
4 # Visual C++ 2.0 or later
5 # Borland C++ 5.02 or later
6 # MinGW with gcc-2.95.2 or later
7 # MS Platform SDK 64-bit compiler and tools **experimental**
9 # This is set up to build a perl.exe that runs off a shared library
10 # (perl511.dll). Also makes individual DLLs for the XS extensions.
14 ## Make sure you read README.win32 *before* you mess with anything here!
18 ## Build configuration. Edit the values below to suit your needs.
22 # Set these to wherever you want "dmake install" to put your
26 INST_TOP *= $(INST_DRV)\perl
29 # Comment this out if you DON'T want your perl installation to be versioned.
30 # This means that the new installation will overwrite any files from the
31 # old installation at the same INST_TOP location. Leaving it enabled is
32 # the safest route, as perl adds the extra version directory to all the
33 # locations it installs files to. If you disable it, an alternative
34 # versioned installation can be obtained by setting INST_TOP above to a
35 # path that includes an arbitrary version string.
40 # Comment this out if you DON'T want your perl installation to have
41 # architecture specific components. This means that architecture-
42 # specific files will be installed along with the architecture-neutral
43 # files. Leaving it enabled is safer and more flexible, in case you
44 # want to build multiple flavors of perl and install them together in
45 # the same location. Commenting it out gives you a simpler
46 # installation that is easier to understand for beginners.
48 #INST_ARCH *= \$(ARCHNAME)
51 # Uncomment this if you want perl to run
52 # $Config{sitelibexp}\sitecustomize.pl
53 # before anything else. This script can then be set up, for example,
54 # to add additional entries to @INC.
56 #USE_SITECUST *= define
59 # uncomment to enable multiple interpreters. This is need for fork()
60 # emulation and for thread support.
65 # Interpreter cloning/threads; now reasonably complete.
66 # This should be enabled to get the fork() emulation.
67 # This needs USE_MULTI above.
69 USE_ITHREADS *= define
72 # uncomment to enable the implicit "host" layer for all system calls
73 # made by perl. This needs USE_MULTI above.
74 # This is also needed to get fork().
79 # Comment out next assign to disable perl's I/O subsystem and use compiler's
80 # stdio for IO - depending on your compiler vendor and run time library you may
81 # then get a number of fails from make test i.e. bugs - complain to them not us ;-).
82 # You will also be unable to take full advantage of perl5.8's support for multiple
83 # encodings and may see lower IO performance. You have been warned.
87 # Comment this out if you don't want to enable large file support for
88 # some reason. Should normally only be changed to maintain compatibility
89 # with an older release of perl.
90 USE_LARGE_FILES *= define
93 # uncomment exactly one of the following
97 # Visual C++ > 2.x and < 6.x
99 # Visual C++ 6.x (aka Visual C++ 98)
101 # Visual C++ Toolkit 2003 (aka Visual C++ 7.x) (free command-line tools)
102 #CCTYPE *= MSVC70FREE
103 # Visual C++ .NET 2003 (aka Visual C++ 7.x) (full version)
105 # Visual C++ 2005 Express Edition (aka Visual C++ 8.x) (free version)
106 #CCTYPE *= MSVC80FREE
107 # Visual C++ 2005 (aka Visual C++ 8.x) (full version)
109 # Visual C++ 2008 Express Edition (aka Visual C++ 9.x) (free version)
110 #CCTYPE *= MSVC90FREE
111 # Visual C++ 2008 (aka Visual C++ 9.x) (full version)
113 # Borland 5.02 or later
115 # MinGW with gcc-2.95.2 or later
119 # uncomment this if your Borland compiler is older than v5.4.
122 # uncomment this if you want to use Borland's VCL as your CRT
126 # uncomment this if you are compiling under Windows 95/98 and command.com
127 # (not needed if you're running under 4DOS/NT 6.01 or later)
131 # uncomment next line if you want debug version of perl (big,slow)
132 # If not enabled, we automatically try to use maximum optimization
133 # with all compilers that are known to have a working optimizer.
138 # uncomment to enable use of PerlCRT.DLL when using the Visual C compiler.
139 # It has patches that fix known bugs in older versions of MSVCRT.DLL.
140 # This currently requires VC 5.0 with Service Pack 3 or later.
141 # Get it from CPAN at http://www.cpan.org/authors/id/D/DO/DOUGL/
142 # and follow the directions in the package to install.
144 # Not recommended if you have VC 6.x and you're not running Windows 9x.
146 #USE_PERLCRT *= define
149 # uncomment to enable linking with setargv.obj under the Visual C
150 # compiler. Setting this options enables perl to expand wildcards in
151 # arguments, but it may be harder to use alternate methods like
152 # File::DosGlob that are more powerful. This option is supported only with
155 #USE_SETARGV *= define
158 # if you want to have the crypt() builtin function implemented, leave this or
159 # CRYPT_LIB uncommented. The fcrypt.c file named here contains a suitable
160 # version of des_fcrypt().
162 CRYPT_SRC *= fcrypt.c
165 # if you didn't set CRYPT_SRC and if you have des_fcrypt() available in a
166 # library, uncomment this, and make sure the library exists (see README.win32)
167 # Specify the full pathname of the library.
169 #CRYPT_LIB *= fcrypt.lib
172 # set this if you wish to use perl's malloc
173 # WARNING: Turning this on/off WILL break binary compatibility with extensions
174 # you may have compiled with/without it. Be prepared to recompile all
175 # extensions if you change the default. Currently, this cannot be enabled
176 # if you ask for USE_IMP_SYS above.
178 #PERL_MALLOC *= define
181 # set this to enable debugging mstats
182 # This must be enabled to use the Devel::Peek::mstat() function. This cannot
183 # be enabled without PERL_MALLOC as well.
185 #DEBUG_MSTATS *= define
188 # set this to additionally provide a statically linked perl-static.exe.
189 # Note that dynamic loading will not work with this perl, so you must
190 # include required modules statically using the STATIC_EXT or ALL_STATIC
191 # variables below. A static library perl511s.lib will also be created.
192 # Ordinary perl.exe is not affected by this option.
194 #BUILD_STATIC *= define
197 # in addition to BUILD_STATIC the option ALL_STATIC makes *every*
198 # extension get statically built
199 # This will result in a very large perl executable, but the main purpose
200 # is to have proper linking set so as to be able to create miscellaneous
201 # executables with different built-in extensions
203 #ALL_STATIC *= define
206 # set the install locations of the compiler include/libraries
207 # Running VCVARS32.BAT is *required* when using Visual C.
208 # Some versions of Visual C don't define MSVCDIR in the environment,
209 # so you may have to set CCHOME explicitly (spaces in the path name should
212 .IF "$(CCTYPE)" == "BORLAND"
213 CCHOME *= C:\Borland\BCC55
214 .ELIF "$(CCTYPE)" == "GCC"
219 CCINCDIR *= $(CCHOME)\include
220 CCLIBDIR *= $(CCHOME)\lib
223 # Additional compiler flags can be specified here.
225 BUILDOPT *= $(BUILDOPTEXTRA)
228 # Adding -DPERL_HASH_SEED_EXPLICIT will disable randomization of Perl's
229 # internal hash function unless the PERL_HASH_SEED environment variable is set.
230 # Alternatively, adding -DNO_HASH_SEED will completely disable the
231 # randomization feature.
232 # The latter is required to maintain binary compatibility with Perl 5.8.0.
234 #BUILDOPT += -DPERL_HASH_SEED_EXPLICIT
235 #BUILDOPT += -DNO_HASH_SEED
238 # This should normally be disabled. Adding -DPERL_POLLUTE enables support
239 # for old symbols by default, at the expense of extreme pollution. You most
240 # probably just want to build modules that won't compile with
241 # perl Makefile.PL POLLUTE=1
242 # instead of enabling this. Please report such modules to the respective
245 #BUILDOPT += -DPERL_POLLUTE
248 # This should normally be disabled. Enabling it will disable the File::Glob
249 # implementation of CORE::glob.
251 #BUILDOPT += -DPERL_EXTERNAL_GLOB
254 # This should normally be disabled. Enabling it causes perl to read scripts
255 # in text mode (which is the 5.005 behavior) and will break ByteLoader.
257 #BUILDOPT += -DPERL_TEXTMODE_SCRIPTS
260 # specify semicolon-separated list of extra directories that modules will
261 # look for libraries (spaces in path names need not be quoted)
266 # set this to point to cmd.exe (only needed if you use some
267 # alternate shell that doesn't grok cmd.exe style commands)
269 #SHELL *= g:\winnt\system32\cmd.exe
272 # set this to your email address (perl will guess a value from
273 # from your loginname and your hostname, which may not be right)
278 ## Build configuration ends.
281 ##################### CHANGE THESE ONLY IF YOU MUST #####################
283 .IF "$(CRYPT_SRC)$(CRYPT_LIB)" == ""
287 CRYPT_FLAG = -DHAVE_DES_FCRYPT
291 DEBUG_MSTATS *= undef
293 USE_SITECUST *= undef
295 USE_ITHREADS *= undef
298 USE_LARGE_FILES *= undef
301 .IF "$(USE_IMP_SYS)" == "define"
305 .IF "$(PERL_MALLOC)" == "undef"
309 .IF "$(DEBUG_MSTATS)" == "define"
310 BUILDOPT += -DPERL_DEBUGGING_MSTATS
313 .IF "$(USE_IMP_SYS) $(USE_MULTI)" == "define undef"
317 .IF "$(USE_ITHREADS) $(USE_MULTI)" == "define undef"
321 .IF "$(USE_SITECUST)" == "define"
322 BUILDOPT += -DUSE_SITECUSTOMIZE
325 .IF "$(USE_MULTI)" != "undef"
326 BUILDOPT += -DPERL_IMPLICIT_CONTEXT
329 .IF "$(USE_IMP_SYS)" != "undef"
330 BUILDOPT += -DPERL_IMPLICIT_SYS
333 .IMPORT .IGNORE : PROCESSOR_ARCHITECTURE PROCESSOR_ARCHITEW6432 WIN64
335 PROCESSOR_ARCHITECTURE *= x86
338 # When we are running from a 32bit cmd.exe on AMD64 then
339 # PROCESSOR_ARCHITECTURE is set to x86 and PROCESSOR_ARCHITEW6432
341 .IF "$(PROCESSOR_ARCHITEW6432)" != ""
342 PROCESSOR_ARCHITECTURE != $(PROCESSOR_ARCHITEW6432)
344 .ELIF "$(PROCESSOR_ARCHITECTURE)" == "AMD64" || "$(PROCESSOR_ARCHITECTURE)" == "IA64"
351 ARCHITECTURE = $(PROCESSOR_ARCHITECTURE)
352 .IF "$(ARCHITECTURE)" == "AMD64"
355 .IF "$(ARCHITECTURE)" == "IA64"
359 .IF "$(USE_MULTI)" == "define"
360 ARCHNAME = MSWin32-$(ARCHITECTURE)-multi
362 .IF "$(USE_PERLIO)" == "define"
363 ARCHNAME = MSWin32-$(ARCHITECTURE)-perlio
365 ARCHNAME = MSWin32-$(ARCHITECTURE)
369 .IF "$(USE_ITHREADS)" == "define"
370 ARCHNAME !:= $(ARCHNAME)-thread
373 # Visual C++ 98, .NET 2003, 2005 and 2008 specific.
374 # VC++ 6.x, 7.x, 8.x and 9.x can load DLL's on demand. Makes the test suite run
375 # in about 10% less time. (The free version of 7.x can't do this, but the free
376 # versions of 8.x and 9.x can.)
377 .IF "$(CCTYPE)" == "MSVC60" || "$(CCTYPE)" == "MSVC70" || \
378 "$(CCTYPE)" == "MSVC80" || "$(CCTYPE)" == "MSVC80FREE" ||
379 "$(CCTYPE)" == "MSVC90" || "$(CCTYPE)" == "MSVC90FREE"
380 DELAYLOAD *= -DELAYLOAD:ws2_32.dll delayimp.lib
383 # Visual C++ 2005 and 2008 (VC++ 8.x and 9.x) create manifest files for EXEs and
384 # DLLs. These either need copying everywhere with the binaries, or else need
385 # embedding in them otherwise MSVCR80.dll or MSVCR90.dll won't be found. For
386 # simplicity, embed them if they exist (and delete them afterwards so that they
387 # don't get installed too).
388 EMBED_EXE_MANI = if exist $@.manifest mt -nologo -manifest $@.manifest -outputresource:$@;1 && \
389 if exist $@.manifest del $@.manifest
390 EMBED_DLL_MANI = if exist $@.manifest mt -nologo -manifest $@.manifest -outputresource:$@;2 && \
391 if exist $@.manifest del $@.manifest
393 ARCHDIR = ..\lib\$(ARCHNAME)
394 COREDIR = ..\lib\CORE
395 AUTODIR = ..\lib\auto
401 EXTUTILSDIR = $(LIBDIR)\ExtUtils
405 INST_SCRIPT = $(INST_TOP)$(INST_VER)\bin
406 INST_BIN = $(INST_SCRIPT)$(INST_ARCH)
407 INST_LIB = $(INST_TOP)$(INST_VER)\lib
408 INST_ARCHLIB = $(INST_LIB)$(INST_ARCH)
409 INST_COREDIR = $(INST_ARCHLIB)\CORE
410 INST_HTML = $(INST_TOP)$(INST_VER)\html
413 # Programs to compile, build .lib files and link
418 .IF "$(CCTYPE)" == "BORLAND"
421 .IF "$(BCCOLD)" != "define"
426 LIB32 = tlib /a /P128
433 INCLUDES = -I$(COREDIR) -I.\include -I. -I.. -I"$(CCINCDIR)"
434 #PCHFLAGS = -H -Hc -H=c:\temp\bcmoduls.pch
435 DEFINES = -DWIN32 $(CRYPT_FLAG)
436 LOCDEFS = -DPERLDLL -DPERL_CORE
442 # same libs as MSVC, except Borland doesn't have oldnames.lib
443 LIBFILES = $(CRYPT_LIB) \
444 kernel32.lib user32.lib gdi32.lib winspool.lib \
445 comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \
446 netapi32.lib uuid.lib ws2_32.lib mpr.lib winmm.lib \
447 version.lib odbc32.lib odbccp32.lib \
450 .IF "$(CFG)" == "Debug"
451 OPTIMIZE = -v -D_RTLDLL -DDEBUGGING
454 OPTIMIZE = -O2 -D_RTLDLL
459 CFLAGS = -w -g0 -tWM -tWD $(INCLUDES) $(DEFINES) $(LOCDEFS) \
460 $(PCHFLAGS) $(OPTIMIZE)
461 LINK_FLAGS = $(LINK_DBG) -x -L"$(INST_COREDIR)" -L"$(CCLIBDIR)" \
466 .IF "$(BCCOLD)" != "define"
468 DEFINES += -D_MT -D__USELOCALES__ -D_WIN32_WINNT=0x0410
470 .IF "$(BCCVCL)" == "define"
471 LIBC = cp32mti.lib vcl.lib vcl50.lib vclx50.lib vcle50.lib
472 LINK_FLAGS += -L"$(CCLIBDIR)\Release"
476 .ELIF "$(CCTYPE)" == "GCC"
492 INCLUDES = -I.\include -I. -I.. -I$(COREDIR)
493 DEFINES = -DWIN32 $(CRYPT_FLAG)
494 LOCDEFS = -DPERLDLL -DPERL_CORE
498 # Current releases of MinGW 5.1.4 (as of 11-Aug-2009) will fail to link
499 # correctly if -lmsvcrt is specified explicitly.
504 LIBFILES = $(CRYPT_LIB) $(LIBC) \
505 -lmoldname -lkernel32 -luser32 -lgdi32 \
506 -lwinspool -lcomdlg32 -ladvapi32 -lshell32 -lole32 \
507 -loleaut32 -lnetapi32 -luuid -lws2_32 -lmpr \
508 -lwinmm -lversion -lodbc32 -lodbccp32
510 .IF "$(CFG)" == "Debug"
511 OPTIMIZE = -g -O2 -DDEBUGGING
519 CFLAGS = $(INCLUDES) $(DEFINES) $(LOCDEFS) $(OPTIMIZE)
520 LINK_FLAGS = $(LINK_DBG) -L"$(INST_COREDIR)" -L"$(CCLIBDIR)"
525 # NOTE: we assume that GCC uses MSVCRT.DLL
526 # See comments about PERL_MSVCRT_READFIX in the "cl" compiler section below.
527 BUILDOPT += -fno-strict-aliasing -mms-bitfields -DPERL_MSVCRT_READFIX
533 LIB32 = $(LINK32) -lib
540 INCLUDES = -I$(COREDIR) -I.\include -I. -I..
541 #PCHFLAGS = -Fpc:\temp\vcmoduls.pch -YX
542 DEFINES = -DWIN32 -D_CONSOLE -DNO_STRICT $(CRYPT_FLAG)
543 LOCDEFS = -DPERLDLL -DPERL_CORE
547 .IF "$(USE_PERLCRT)" != "define"
553 .IF "$(CFG)" == "Debug"
554 .IF "$(CCTYPE)" == "MSVC20"
555 OPTIMIZE = -Od -MD -Z7 -DDEBUGGING
557 OPTIMIZE = -O1 -MD -Zi -DDEBUGGING
561 OPTIMIZE = -MD -Zi -DNDEBUG
562 # we enable debug symbols in release builds also
563 LINK_DBG = -debug -opt:ref,icf
564 # you may want to enable this if you want COFF symbols in the executables
565 # in addition to the PDB symbols. The default Dr. Watson that ships with
566 # Windows can use the the former but not latter. The free WinDbg can be
567 # installed to get better stack traces from just the PDB symbols, so we
568 # avoid the bloat of COFF symbols by default.
569 #LINK_DBG = $(LINK_DBG) -debugtype:both
570 .IF "$(WIN64)" == "define"
571 # enable Whole Program Optimizations (WPO) and Link Time Code Generation (LTCG)
575 # -O1 yields smaller code, which turns out to be faster than -O2 on x86
581 .IF "$(WIN64)" == "define"
582 DEFINES += -DWIN64 -DCONSERVATIVE
583 OPTIMIZE += -Wp64 -fp:precise
586 # For now, silence VC++ 8.x's and 9.x's warnings about "unsafe" CRT functions
587 # and POSIX CRT function names being deprecated.
588 .IF "$(CCTYPE)" == "MSVC80" || "$(CCTYPE)" == "MSVC80FREE" || \
589 "$(CCTYPE)" == "MSVC90" || "$(CCTYPE)" == "MSVC90FREE"
590 DEFINES += -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE
593 # Use the MSVCRT read() fix if the PerlCRT was not chosen, but only when using
594 # VC++ 6.x or earlier. Later versions use MSVCR70.dll, MSVCR71.dll, etc, which
595 # do not require the fix.
596 .IF "$(CCTYPE)" == "MSVC20" || "$(CCTYPE)" == "MSVC" || "$(CCTYPE)" == "MSVC60"
597 .IF "$(USE_PERLCRT)" != "define"
598 BUILDOPT += -DPERL_MSVCRT_READFIX
602 LIBBASEFILES = $(CRYPT_LIB) \
603 oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.lib \
604 comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \
605 netapi32.lib uuid.lib ws2_32.lib mpr.lib winmm.lib \
606 version.lib odbc32.lib odbccp32.lib
608 # The 64 bit Platform SDK compilers contain a runtime library that doesn't
609 # include the buffer overrun verification code used by the /GS switch.
610 # Since the code links against libraries that are compiled with /GS, this
611 # "security cookie verification" must be included via bufferoverlow.lib.
612 .IF "$(WIN64)" == "define"
613 LIBBASEFILES = $(LIBBASEFILES) bufferoverflowU.lib
616 # we add LIBC here, since we may be using PerlCRT.dll
617 LIBFILES = $(LIBBASEFILES) $(LIBC)
619 EXTRACFLAGS = -nologo -GF -W3
620 CFLAGS = $(EXTRACFLAGS) $(INCLUDES) $(DEFINES) $(LOCDEFS) \
621 $(PCHFLAGS) $(OPTIMIZE)
622 LINK_FLAGS = -nologo -nodefaultlib $(LINK_DBG) \
623 -libpath:"$(INST_COREDIR)" \
624 -machine:$(PROCESSOR_ARCHITECTURE)
632 CFLAGS_O = $(CFLAGS) $(BUILDOPT)
634 # used to allow local linking flags that are not propogated into Config.pm,
638 BLINK_FLAGS = $(PRIV_LINK_FLAGS) $(LINK_FLAGS)
640 #################### do not edit below this line #######################
641 ############# NO USER-SERVICEABLE PARTS BEYOND THIS POINT ##############
643 # Some old dmakes (including Sarathy's one at
644 # http://search.cpan.org/CPAN/authors/id/G/GS/GSAR/dmake-4.1pl1-win32.zip)
645 # don't support logical OR (||) or logical AND (&&) in conditional
646 # expressions and hence don't process this makefile correctly. Determine
647 # whether this is the case so that we can give the user an error message.
664 .SUFFIXES : .c .i $(o) .dll $(a) .exe .rc .res
667 $(CC) -c $(null,$(<:d) $(NULL) -I$(<:d)) $(CFLAGS_O) $(OBJOUT_FLAG)$@ $<
670 $(CC) -c $(null,$(<:d) $(NULL) -I$(<:d)) $(CFLAGS_O) -E $< >$@
676 .IF "$(CCTYPE)" == "BORLAND"
677 $(LINK32) -Tpd -ap $(BLINK_FLAGS) c0d32$(o) $<,$@,,$(LIBFILES),$(*B).def
678 $(IMPLIB) $(*B).lib $@
679 .ELIF "$(CCTYPE)" == "GCC"
680 $(LINK32) -o $@ $(BLINK_FLAGS) $< $(LIBFILES)
681 $(IMPLIB) --input-def $(*B).def --output-lib $(*B).a $@
683 $(LINK32) -dll -subsystem:windows -implib:$(*B).lib -def:$(*B).def \
684 -out:$@ $(BLINK_FLAGS) $(LIBFILES) $< $(LIBPERL)
689 .IF "$(CCTYPE)" == "GCC"
690 $(RSC) --use-temp-file --include-dir=. --include-dir=.. -O COFF -i $< -o $@
697 MINIPERL = ..\miniperl.exe
699 PERLEXE = ..\perl.exe
700 WPERLEXE = ..\wperl.exe
701 PERLEXESTATIC = ..\perl-static.exe
702 GLOBEXE = ..\perlglob.exe
703 CONFIGPM = ..\lib\Config.pm ..\lib\Config_heavy.pl
704 MINIMOD = ..\lib\ExtUtils\Miniperl.pm
706 GENUUDMAP = ..\generate_uudmap.exe
707 .IF "$(BUILD_STATIC)" == "define"
713 # Unicode data files generated by mktables
714 UNIDATAFILES = ..\lib\unicore\Canonical.pl ..\lib\unicore\Exact.pl \
715 ..\lib\unicore\Properties ..\lib\unicore\Decomposition.pl \
716 ..\lib\unicore\CombiningClass.pl ..\lib\unicore\Name.pl \
717 ..\lib\unicore\PVA.pl
719 # Directories of Unicode data files generated by mktables
720 UNIDATADIR1 = ..\lib\unicore\To
721 UNIDATADIR2 = ..\lib\unicore\lib
723 PERLEXE_ICO = .\perlexe.ico
724 PERLEXE_RES = .\perlexe.res
727 # Nominate a target which causes extensions to be re-built
728 # This used to be $(PERLEXE), but at worst it is the .dll that they depend
729 # on and really only the interface - i.e. the .def file used to export symbols
731 PERLDEP = perldll.def
734 PL2BAT = bin\pl2bat.pl
735 GLOBBAT = bin\perlglob.bat
751 ..\utils\config_data \
758 ..\utils\cpanp-run-perl \
779 .IF "$(CCTYPE)" == "BORLAND"
781 CFGSH_TMPL = config.bc
782 CFGH_TMPL = config_H.bc
784 .ELIF "$(CCTYPE)" == "GCC"
786 CFGSH_TMPL = config.gc
787 CFGH_TMPL = config_H.gc
788 PERLIMPLIB = ..\libperl511$(a)
789 PERLSTATICLIB = ..\libperl511s$(a)
793 .IF "$(WIN64)" == "define"
794 CFGSH_TMPL = config.vc64
795 CFGH_TMPL = config_H.vc64
797 CFGSH_TMPL = config.vc
798 CFGH_TMPL = config_H.vc
803 # makedef.pl must be updated if this changes, and this should normally
804 # only change when there is an incompatible revision of the public API.
805 PERLIMPLIB *= ..\perl511$(a)
806 PERLSTATICLIB *= ..\perl511s$(a)
807 PERLDLL = ..\perl511.dll
809 XCOPY = xcopy /f /r /i /d /y
810 RCOPY = xcopy /f /r /i /e /d /y
814 # filenames given to xsubpp must have forward slashes (since it puts
815 # full pathnames in #line strings)
816 XSUBPP = ..\$(MINIPERL) -I..\..\lib -I..\Cwd -I..\Cwd\lib ..\$(EXTUTILSDIR)\xsubpp \
856 EXTRACORE_SRC += perllib.c
858 .IF "$(PERL_MALLOC)" == "define"
859 EXTRACORE_SRC += ..\malloc.c
862 EXTRACORE_SRC += ..\perlio.c
869 # We need this for miniperl build unless we override canned
870 # config.h #define building mini\*
871 #.IF "$(USE_PERLIO)" == "define"
872 WIN32_SRC += .\win32io.c
875 .IF "$(CRYPT_SRC)" != ""
876 WIN32_SRC += .\$(CRYPT_SRC)
923 .\include\sys\socket.h \
926 CORE_H = $(CORE_NOCFG_H) .\config.h ..\git_version.h
928 UUDMAP_H = ..\uudmap.h
929 BITCOUNT_H = ..\bitcount.h
931 MICROCORE_OBJ = $(MICROCORE_SRC:db:+$(o))
932 CORE_OBJ = $(MICROCORE_OBJ) $(EXTRACORE_SRC:db:+$(o))
933 WIN32_OBJ = $(WIN32_SRC:db:+$(o))
934 MINICORE_OBJ = $(MINIDIR)\{$(MICROCORE_OBJ:f) miniperlmain$(o) perlio$(o)}
935 MINIWIN32_OBJ = $(MINIDIR)\{$(WIN32_OBJ:f)}
936 MINI_OBJ = $(MINICORE_OBJ) $(MINIWIN32_OBJ)
937 DLL_OBJ = $(DYNALOADER)
938 X2P_OBJ = $(X2P_SRC:db:+$(o))
939 GENUUDMAP_OBJ = $(GENUUDMAP:db:+$(o))
941 PERLDLL_OBJ = $(CORE_OBJ)
942 PERLEXE_OBJ = perlmain$(o)
943 PERLEXEST_OBJ = perlmainst$(o)
945 PERLDLL_OBJ += $(WIN32_OBJ) $(DLL_OBJ)
947 .IF "$(USE_SETARGV)" != ""
948 SETARGV_OBJ = setargv$(o)
951 .IF "$(ALL_STATIC)" == "define"
952 # some exclusions, unfortunately, until fixed:
953 # - Win32 extension contains overlapped symbols with win32.c (BUG!)
954 # - MakeMaker isn't capable enough for SDBM_File (smaller bug)
955 # - Encode (encoding search algorithm relies on shared library?)
956 STATIC_EXT = * !Win32 !SDBM_File !Encode
958 # specify static extensions here, for example:
959 #STATIC_EXT = Cwd Compress/Raw/Zlib
960 STATIC_EXT = Win32CORE
963 DYNALOADER = ..\DynaLoader$(o)
965 # vars must be separated by "\t+~\t+", since we're using the tempfile
966 # version of config_sh.pl (we were overflowing someone's buffer by
967 # trying to fit them all on the command line)
970 INST_DRV=$(INST_DRV) ~ \
971 INST_TOP=$(INST_TOP) ~ \
972 INST_VER=$(INST_VER) ~ \
973 INST_ARCH=$(INST_ARCH) ~ \
974 archname=$(ARCHNAME) ~ \
977 ccflags=$(EXTRACFLAGS) $(OPTIMIZE) $(DEFINES) $(BUILDOPT) ~ \
978 cf_email=$(EMAIL) ~ \
979 d_crypt=$(D_CRYPT) ~ \
980 d_mymalloc=$(PERL_MALLOC) ~ \
981 libs=$(LIBFILES:f) ~ \
982 incpath=$(CCINCDIR) ~ \
983 libperl=$(PERLIMPLIB:f) ~ \
984 libpth=$(CCLIBDIR);$(EXTRALIBDIRS) ~ \
991 static_ext=$(STATIC_EXT) ~ \
992 usethreads=$(USE_ITHREADS) ~ \
993 useithreads=$(USE_ITHREADS) ~ \
994 usemultiplicity=$(USE_MULTI) ~ \
995 useperlio=$(USE_PERLIO) ~ \
996 uselargefiles=$(USE_LARGE_FILES) ~ \
997 usesitecustomize=$(USE_SITECUST) ~ \
998 LINK_FLAGS=$(LINK_FLAGS) ~ \
1002 # set up targets varying between Win95 and WinNT builds
1005 .IF "$(IS_WIN95)" == "define"
1007 RIGHTMAKE = __switch_makefiles
1013 .IMPORT .IGNORE : SystemRoot windir
1015 # Don't just .IMPORT OS from the environment because dmake sets OS itself.
1016 ENV_OS=$(subst,OS=, $(shell @set OS))
1018 .IF "$(ENV_OS)" == "Windows_NT"
1019 ODBCCP32_DLL = $(SystemRoot)\system32\odbccp32.dll
1021 ODBCCP32_DLL = $(windir)\system\odbccp32.dll
1024 ICWD = -I..\ext\Cwd -I..\ext\Cwd\lib
1030 all : CHECKDMAKE .\config.h ..\git_version.h $(GLOBEXE) $(MINIPERL) $(MK2) \
1031 $(RIGHTMAKE) $(MINIMOD) $(CONFIGPM) $(UNIDATAFILES) MakePPPort \
1032 $(PERLEXE) $(X2P) Extensions Extensions_nonxs $(PERLSTATIC)
1034 ..\regcharclass.h : ..\Porting\regcharclass.pl
1035 cd .. && miniperl Porting\regcharclass.pl && cd win32
1037 regnodes : ..\regnodes.h
1039 ..\regcomp$(o) : ..\regnodes.h ..\regcharclass.h
1041 ..\regexec$(o) : ..\regnodes.h ..\regcharclass.h
1043 reonly : regnodes .\config.h ..\git_version.h $(GLOBEXE) $(MINIPERL) $(MK2) \
1044 $(RIGHTMAKE) $(MINIMOD) $(CONFIGPM) $(UNIDATAFILES) $(PERLEXE) \
1045 $(X2P) Extensions_reonly
1047 static: $(PERLEXESTATIC)
1049 #----------------------------------------------------------------
1051 #-------------------- BEGIN Win95 SPECIFIC ----------------------
1053 # this target is a jump-off point for Win95
1054 # 1. it switches to the Win95-specific makefile if it exists
1055 # (__do_switch_makefiles)
1056 # 2. it prints a message when the Win95-specific one finishes (__done)
1057 # 3. it then kills this makefile by trying to make __no_such_target
1059 __switch_makefiles: __do_switch_makefiles __done __no_such_target
1061 __do_switch_makefiles:
1062 .IF "$(NOTFIRST)" != "true"
1063 if exist $(MK2) $(MAKE:s/-S//) -f $(MK2) $(MAKETARGETS) NOTFIRST=true
1068 .IF "$(NOTFIRST)" != "true"
1070 @echo Build process complete. Ignore any errors after this message.
1071 @echo Run "dmake test" to test and "dmake install" to install
1074 # dummy targets for Win95-specific makefile
1084 # This target is used to generate the new makefile (.\makefile.95) for Win95
1086 .\makefile.95: .\makefile.mk
1087 $(MINIPERL) genmk95.pl makefile.mk $(MK2)
1089 #--------------------- END Win95 SPECIFIC ---------------------
1091 # a blank target for when builds don't need to do certain things
1092 # this target added for Win95 port but used to keep the WinNT port able to
1098 .IF "$(NEWDMAKE)" == "define"
1101 @echo Your dmake doesn't support ^|^| or ^&^& in conditional expressions.
1102 @echo Please get the latest dmake from http://search.cpan.org/dist/dmake/
1106 $(GLOBEXE) : perlglob$(o)
1107 .IF "$(CCTYPE)" == "BORLAND"
1108 $(CC) -c -w -v -tWM -I"$(CCINCDIR)" perlglob.c
1109 $(LINK32) -Tpe -ap $(BLINK_FLAGS) c0x32$(o) perlglob$(o) \
1110 "$(CCLIBDIR)\32BIT\wildargs$(o)",$@,,import32.lib cw32mt.lib,
1111 .ELIF "$(CCTYPE)" == "GCC"
1112 $(LINK32) $(BLINK_FLAGS) -mconsole -o $@ perlglob$(o) $(LIBFILES)
1114 $(LINK32) $(BLINK_FLAGS) $(LIBFILES) -out:$@ -subsystem:$(SUBSYS) \
1115 perlglob$(o) setargv$(o)
1119 perlglob$(o) : perlglob.c
1121 config.w32 : $(CFGSH_TMPL)
1122 copy $(CFGSH_TMPL) config.w32
1124 .\config.h : $(CFGH_TMPL) $(CORE_NOCFG_H)
1126 copy $(CFGH_TMPL) config.h
1128 ..\git_version.h : $(MINIPERL) ..\make_patchnum.pl
1129 cd .. && miniperl -Ilib make_patchnum.pl
1131 # make sure that we recompile perl.c if the git version changes
1132 ..\perl$(o) : ..\git_version.h
1134 ..\config.sh : config.w32 $(MINIPERL) config_sh.PL FindExt.pm
1135 $(MINIPERL) -I..\lib config_sh.PL --cfgsh-option-file \
1136 $(mktmp $(CFG_VARS)) config.w32 > ..\config.sh
1138 # this target is for when changes to the main config.sh happen.
1139 # edit config.gc, then make perl using GCC in a minimal configuration (i.e.
1140 # with MULTI, ITHREADS, IMP_SYS, LARGE_FILES, PERLIO and CRYPT off), then make
1141 # this target to regenerate config_H.gc.
1142 # unfortunately, some further manual editing is also then required to restore all
1143 # the special _MSC_VER handling that is otherwise lost.
1144 # repeat for config.bc and config_H.bc (using BORLAND), except that there is no
1145 # _MSC_VER stuff in that case.
1147 $(MINIPERL) -I..\lib config_sh.PL --cfgsh-option-file $(mktmp $(CFG_VARS)) \
1148 $(CFGSH_TMPL) > ..\config.sh
1149 $(MINIPERL) -I..\lib ..\configpm --chdir=..
1150 -del /f $(CFGH_TMPL)
1151 -$(MINIPERL) -I..\lib $(ICWD) config_h.PL "INST_VER=$(INST_VER)"
1152 rename config.h $(CFGH_TMPL)
1154 $(CONFIGPM) : $(MINIPERL) ..\config.sh config_h.PL ..\minimod.pl
1155 $(MINIPERL) -I..\lib ..\configpm --chdir=..
1156 if exist lib\* $(RCOPY) lib\*.* ..\lib\$(NULL)
1157 $(XCOPY) ..\*.h $(COREDIR)\*.*
1158 $(XCOPY) *.h $(COREDIR)\*.*
1159 $(XCOPY) ..\ext\re\re.pm $(LIBDIR)\*.*
1160 $(RCOPY) include $(COREDIR)\*.*
1161 $(MINIPERL) -I..\lib $(ICWD) config_h.PL "INST_VER=$(INST_VER)" \
1162 || $(MAKE) $(MAKEMACROS) $(CONFIGPM) $(MAKEFILE)
1164 $(MINIPERL) : $(MINIDIR) $(MINI_OBJ) $(CRTIPMLIBS)
1165 .IF "$(CCTYPE)" == "BORLAND"
1166 if not exist $(CCLIBDIR)\PSDK\odbccp32.lib \
1167 cd $(CCLIBDIR)\PSDK && implib odbccp32.lib $(ODBCCP32_DLL)
1168 $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
1169 @$(mktmp c0x32$(o) $(MINI_OBJ),$@,,$(LIBFILES),)
1170 .ELIF "$(CCTYPE)" == "GCC"
1171 $(LINK32) -v -mconsole -o $@ $(BLINK_FLAGS) \
1172 $(mktmp $(LKPRE) $(MINI_OBJ) $(LIBFILES) $(LKPOST))
1174 $(LINK32) -subsystem:console -out:$@ $(BLINK_FLAGS) \
1175 @$(mktmp $(LIBFILES) $(MINI_OBJ))
1180 if not exist "$(MINIDIR)" mkdir "$(MINIDIR)"
1182 $(MINICORE_OBJ) : $(CORE_NOCFG_H)
1183 $(CC) -c $(CFLAGS) -DPERL_EXTERNAL_GLOB -DPERL_IS_MINIPERL $(OBJOUT_FLAG)$@ ..\$(*B).c
1185 $(MINIWIN32_OBJ) : $(CORE_NOCFG_H)
1186 $(CC) -c $(CFLAGS) $(OBJOUT_FLAG)$@ $(*B).c
1188 # -DPERL_IMPLICIT_SYS needs C++ for perllib.c
1189 # rules wrapped in .IFs break Win9X build (we end up with unbalanced []s unless
1190 # unless the .IF is true), so instead we use a .ELSE with the default.
1191 # This is the only file that depends on perlhost.h, vmem.h, and vdir.h
1193 perllib$(o) : perllib.c .\perlhost.h .\vdir.h .\vmem.h
1194 .IF "$(USE_IMP_SYS)" == "define"
1195 $(CC) -c -I. $(CFLAGS_O) $(CXX_FLAG) $(OBJOUT_FLAG)$@ perllib.c
1197 $(CC) -c -I. $(CFLAGS_O) $(OBJOUT_FLAG)$@ perllib.c
1200 # 1. we don't want to rebuild miniperl.exe when config.h changes
1201 # 2. we don't want to rebuild miniperl.exe with non-default config.h
1202 # 3. we can't have miniperl.exe depend on git_version.h, as miniperl creates it
1203 $(MINI_OBJ) : $(CORE_NOCFG_H)
1205 $(WIN32_OBJ) : $(CORE_H)
1207 $(CORE_OBJ) : $(CORE_H)
1209 $(DLL_OBJ) : $(CORE_H)
1211 $(X2P_OBJ) : $(CORE_H)
1213 perldll.def : $(MINIPERL) $(CONFIGPM) ..\global.sym ..\pp.sym ..\makedef.pl create_perllibst_h.pl
1214 $(MINIPERL) -I..\lib create_perllibst_h.pl
1215 $(MINIPERL) -I..\lib -w ..\makedef.pl PLATFORM=win32 $(OPTIMIZE) $(DEFINES) \
1216 $(BUILDOPT) CCTYPE=$(CCTYPE) > perldll.def
1218 $(PERLDLL): perldll.def $(PERLDLL_OBJ) $(PERLDLL_RES) Extensions_static
1219 .IF "$(CCTYPE)" == "BORLAND"
1220 $(LINK32) -Tpd -ap $(BLINK_FLAGS) \
1221 @$(mktmp c0d32$(o) $(PERLDLL_OBJ),$@,, \
1222 $(shell @type Extensions_static) $(LIBFILES),perldll.def)
1224 .ELIF "$(CCTYPE)" == "GCC"
1225 $(LINK32) -mdll -o $@ -Wl,--base-file -Wl,perl.base $(BLINK_FLAGS) \
1226 $(mktmp $(LKPRE) $(PERLDLL_OBJ) \
1227 $(shell @type Extensions_static) \
1228 $(LIBFILES) $(LKPOST))
1229 dlltool --output-lib $(PERLIMPLIB) \
1230 --dllname $(PERLDLL:b).dll \
1232 --base-file perl.base \
1233 --output-exp perl.exp
1234 $(LINK32) -mdll -o $@ $(BLINK_FLAGS) \
1235 $(mktmp $(LKPRE) $(PERLDLL_OBJ) \
1236 $(shell @type Extensions_static) \
1237 $(LIBFILES) perl.exp $(LKPOST))
1239 $(LINK32) -dll -def:perldll.def -out:$@ $(BLINK_FLAGS) \
1240 @Extensions_static \
1241 @$(mktmp -base:0x28000000 $(DELAYLOAD) $(LIBFILES) \
1242 $(PERLDLL_RES) $(PERLDLL_OBJ))
1245 $(XCOPY) $(PERLIMPLIB) $(COREDIR)
1247 $(PERLSTATICLIB): Extensions_static
1248 .IF "$(CCTYPE)" == "BORLAND"
1249 $(LIB32) $(LIB_FLAGS) $@ \
1250 @$(mktmp $(shell @type Extensions_static) \
1252 .ELIF "$(CCTYPE)" == "GCC"
1253 # XXX: It would be nice if MinGW's ar accepted a temporary file, but this
1254 # doesn't seem to work:
1255 # $(LIB32) $(LIB_FLAGS) $@ \
1256 # $(mktmp $(LKPRE) $(shell @type Extensions_static) \
1257 # $(PERLDLL_OBJ) $(LKPOST))
1258 $(LIB32) $(LIB_FLAGS) $@ \
1259 $(shell @type Extensions_static) \
1262 $(LIB32) $(LIB_FLAGS) -out:$@ @Extensions_static \
1263 @$(mktmp $(PERLDLL_OBJ))
1265 $(XCOPY) $(PERLSTATICLIB) $(COREDIR)
1267 $(PERLEXE_RES): perlexe.rc $(PERLEXE_ICO)
1269 $(MINIMOD) : $(MINIPERL) ..\minimod.pl
1270 cd .. && miniperl minimod.pl > lib\ExtUtils\Miniperl.pm
1272 ..\x2p\a2p$(o) : ..\x2p\a2p.c
1273 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\a2p.c
1275 ..\x2p\hash$(o) : ..\x2p\hash.c
1276 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\hash.c
1278 ..\x2p\str$(o) : ..\x2p\str.c
1279 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\str.c
1281 ..\x2p\util$(o) : ..\x2p\util.c
1282 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\util.c
1284 ..\x2p\walk$(o) : ..\x2p\walk.c
1285 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\walk.c
1287 $(X2P) : $(MINIPERL) $(X2P_OBJ) Extensions
1288 $(MINIPERL) -I..\lib ..\x2p\find2perl.PL
1289 $(MINIPERL) -I..\lib ..\x2p\s2p.PL
1290 .IF "$(CCTYPE)" == "BORLAND"
1291 $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
1292 @$(mktmp c0x32$(o) $(X2P_OBJ),$@,,$(LIBFILES),)
1293 .ELIF "$(CCTYPE)" == "GCC"
1294 $(LINK32) -v -o $@ $(BLINK_FLAGS) \
1295 $(mktmp $(LKPRE) $(X2P_OBJ) $(LIBFILES) $(LKPOST))
1297 $(LINK32) -subsystem:console -out:$@ $(BLINK_FLAGS) \
1298 @$(mktmp $(LIBFILES) $(X2P_OBJ))
1302 $(MINIDIR)\globals$(o) : $(UUDMAP_H) $(BITCOUNT_H)
1304 $(UUDMAP_H) $(BITCOUNT_H) : $(GENUUDMAP)
1305 $(GENUUDMAP) $(UUDMAP_H) $(BITCOUNT_H)
1307 $(GENUUDMAP) : $(GENUUDMAP_OBJ)
1308 .IF "$(CCTYPE)" == "BORLAND"
1309 $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
1310 @$(mktmp c0x32$(o) $(GENUUDMAP_OBJ),$@,,$(LIBFILES),)
1311 .ELIF "$(CCTYPE)" == "GCC"
1312 $(LINK32) -v -o $@ $(BLINK_FLAGS) \
1313 $(mktmp $(LKPRE) $(GENUUDMAP_OBJ) $(LIBFILES) $(LKPOST))
1315 $(LINK32) -subsystem:console -out:$@ $(BLINK_FLAGS) \
1316 @$(mktmp $(LIBFILES) $(GENUUDMAP_OBJ))
1320 perlmain.c : runperl.c
1321 copy runperl.c perlmain.c
1323 perlmain$(o) : perlmain.c
1324 $(CC) $(CFLAGS_O:s,-DPERLDLL,-UPERLDLL,) $(OBJOUT_FLAG)$@ -c perlmain.c
1326 perlmainst.c : runperl.c
1327 copy runperl.c perlmainst.c
1329 perlmainst$(o) : perlmainst.c
1330 $(CC) $(CFLAGS_O) $(OBJOUT_FLAG)$@ -c perlmainst.c
1332 $(PERLEXE): $(PERLDLL) $(CONFIGPM) $(PERLEXE_OBJ) $(PERLEXE_RES)
1333 .IF "$(CCTYPE)" == "BORLAND"
1334 $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
1335 @$(mktmp c0x32$(o) $(PERLEXE_OBJ),$@,, \
1336 $(PERLIMPLIB) $(LIBFILES),,$(PERLEXE_RES))
1337 .ELIF "$(CCTYPE)" == "GCC"
1338 $(LINK32) -mconsole -o $@ $(BLINK_FLAGS) \
1339 $(PERLEXE_OBJ) $(PERLEXE_RES) $(PERLIMPLIB) $(LIBFILES)
1341 $(LINK32) -subsystem:console -out:$@ -stack:0x1000000 $(BLINK_FLAGS) \
1342 $(LIBFILES) $(PERLEXE_OBJ) $(SETARGV_OBJ) $(PERLIMPLIB) $(PERLEXE_RES)
1345 copy $(PERLEXE) $(WPERLEXE)
1346 $(MINIPERL) -I..\lib bin\exetype.pl $(WPERLEXE) WINDOWS
1348 $(PERLEXESTATIC): $(PERLSTATICLIB) $(CONFIGPM) $(PERLEXEST_OBJ) $(PERLEXE_RES)
1349 .IF "$(CCTYPE)" == "BORLAND"
1350 $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
1351 @$(mktmp c0x32$(o) $(PERLEXEST_OBJ),$@,, \
1352 $(shell @type Extensions_static) $(PERLSTATICLIB) $(LIBFILES),, \
1354 .ELIF "$(CCTYPE)" == "GCC"
1355 $(LINK32) -mconsole -o $@ $(BLINK_FLAGS) \
1356 $(mktmp $(LKPRE) $(shell @type Extensions_static) \
1357 $(PERLSTATICLIB) $(LIBFILES) $(PERLEXEST_OBJ) \
1358 $(PERLEXE_RES) $(LKPOST))
1360 $(LINK32) -subsystem:console -out:$@ -stack:0x1000000 $(BLINK_FLAGS) \
1361 @Extensions_static $(PERLSTATICLIB) /PDB:NONE \
1362 $(LIBFILES) $(PERLEXEST_OBJ) $(SETARGV_OBJ) $(PERLEXE_RES)
1366 MakePPPort: $(MINIPERL) $(CONFIGPM) Extensions_nonxs
1367 $(MINIPERL) -I..\lib $(ICWD) ..\mkppport
1370 -if exist $(MINIPERL) $(MINIPERL) -I..\lib $(ICWD) ..\mkppport --clean
1372 #-------------------------------------------------------------------------------
1373 # There's no direct way to mark a dependency on
1374 # DynaLoader.pm, so this will have to do
1375 Extensions : ..\make_ext.pl $(PERLDEP) $(CONFIGPM) $(DYNALOADER)
1376 $(XCOPY) ..\*.h $(COREDIR)\*.*
1377 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --dynamic
1379 Extensions_reonly : ..\make_ext.pl $(PERLDEP) $(CONFIGPM) $(DYNALOADER)
1380 $(XCOPY) ..\*.h $(COREDIR)\*.*
1381 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --dynamic +re
1383 Extensions_static : ..\make_ext.pl list_static_libs.pl $(PERLDEP) $(CONFIGPM)
1384 $(XCOPY) ..\*.h $(COREDIR)\*.*
1385 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --static
1386 $(MINIPERL) -I..\lib list_static_libs.pl > Extensions_static
1388 Extensions_nonxs : ..\make_ext.pl $(PERLDEP) $(CONFIGPM)
1389 $(XCOPY) ..\*.h $(COREDIR)\*.*
1390 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --nonxs
1392 $(DYNALOADER) : ..\make_ext.pl $(PERLDEP) $(CONFIGPM) Extensions_nonxs
1393 $(XCOPY) ..\*.h $(COREDIR)\*.*
1394 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(EXTDIR) --dynaloader
1397 -if exist $(MINIPERL) $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --all --target=clean
1399 Extensions_realclean :
1400 -if exist $(MINIPERL) $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --all --target=realclean
1402 #-------------------------------------------------------------------------------
1405 doc: $(PERLEXE) ..\pod\perltoc.pod
1406 $(PERLEXE) -I..\lib ..\installhtml --podroot=.. --htmldir=$(HTMLDIR) \
1407 --podpath=pod:lib:ext:utils --htmlroot="file://$(INST_HTML:s,:,|,)"\
1408 --libpod=perlfunc:perlguts:perlvar:perlrun:perlop --recurse
1410 # Note that this next section is parsed (and regenerated) by pod/buildtoc
1411 # so please check that script before making structural changes here
1412 utils: $(PERLEXE) $(X2P)
1413 cd ..\utils && $(MAKE) PERL=$(MINIPERL)
1414 copy ..\README.aix ..\pod\perlaix.pod
1415 copy ..\README.amiga ..\pod\perlamiga.pod
1416 copy ..\README.apollo ..\pod\perlapollo.pod
1417 copy ..\README.beos ..\pod\perlbeos.pod
1418 copy ..\README.bs2000 ..\pod\perlbs2000.pod
1419 copy ..\README.ce ..\pod\perlce.pod
1420 copy ..\README.cn ..\pod\perlcn.pod
1421 copy ..\README.cygwin ..\pod\perlcygwin.pod
1422 copy ..\README.dgux ..\pod\perldgux.pod
1423 copy ..\README.dos ..\pod\perldos.pod
1424 copy ..\README.epoc ..\pod\perlepoc.pod
1425 copy ..\README.freebsd ..\pod\perlfreebsd.pod
1426 copy ..\README.haiku ..\pod\perlhaiku.pod
1427 copy ..\README.hpux ..\pod\perlhpux.pod
1428 copy ..\README.hurd ..\pod\perlhurd.pod
1429 copy ..\README.irix ..\pod\perlirix.pod
1430 copy ..\README.jp ..\pod\perljp.pod
1431 copy ..\README.ko ..\pod\perlko.pod
1432 copy ..\README.linux ..\pod\perllinux.pod
1433 copy ..\README.macos ..\pod\perlmacos.pod
1434 copy ..\README.macosx ..\pod\perlmacosx.pod
1435 copy ..\README.mpeix ..\pod\perlmpeix.pod
1436 copy ..\README.netware ..\pod\perlnetware.pod
1437 copy ..\README.openbsd ..\pod\perlopenbsd.pod
1438 copy ..\README.os2 ..\pod\perlos2.pod
1439 copy ..\README.os390 ..\pod\perlos390.pod
1440 copy ..\README.os400 ..\pod\perlos400.pod
1441 copy ..\README.plan9 ..\pod\perlplan9.pod
1442 copy ..\README.qnx ..\pod\perlqnx.pod
1443 copy ..\README.riscos ..\pod\perlriscos.pod
1444 copy ..\README.solaris ..\pod\perlsolaris.pod
1445 copy ..\README.symbian ..\pod\perlsymbian.pod
1446 copy ..\README.tru64 ..\pod\perltru64.pod
1447 copy ..\README.tw ..\pod\perltw.pod
1448 copy ..\README.uts ..\pod\perluts.pod
1449 copy ..\README.vmesa ..\pod\perlvmesa.pod
1450 copy ..\README.vos ..\pod\perlvos.pod
1451 copy ..\README.win32 ..\pod\perlwin32.pod
1452 copy ..\pod\perl5110delta.pod ..\pod\perldelta.pod
1453 cd ..\pod && $(MAKE) -f ..\win32\pod.mak converters
1454 $(PERLEXE) $(PL2BAT) $(UTILS)
1455 $(PERLEXE) $(ICWD) ..\autodoc.pl ..
1456 $(PERLEXE) $(ICWD) ..\pod\perlmodlib.pl -q
1458 ..\pod\perltoc.pod: $(PERLEXE) Extensions Extensions_nonxs
1459 $(PERLEXE) -f ..\pod\buildtoc --build-toc -q
1461 # Note that the pod cleanup in this next section is parsed (and regenerated
1462 # by pod/buildtoc so please check that script before making changes here
1464 distclean: realclean
1465 -del /f $(MINIPERL) $(PERLEXE) $(PERLDLL) $(GLOBEXE) \
1466 $(PERLIMPLIB) ..\miniperl$(a) $(MINIMOD) \
1467 $(PERLEXESTATIC) $(PERLSTATICLIB)
1469 -del /f $(LIBDIR)\Encode.pm $(LIBDIR)\encoding.pm $(LIBDIR)\Errno.pm
1470 -del /f $(LIBDIR)\Config.pod $(LIBDIR)\POSIX.pod $(LIBDIR)\threads.pm
1471 -del /f $(LIBDIR)\.exists $(LIBDIR)\attributes.pm $(LIBDIR)\DynaLoader.pm
1472 -del /f $(LIBDIR)\Fcntl.pm $(LIBDIR)\IO.pm $(LIBDIR)\Opcode.pm
1473 -del /f $(LIBDIR)\ops.pm $(LIBDIR)\Safe.pm
1474 -del /f $(LIBDIR)\SDBM_File.pm $(LIBDIR)\Socket.pm $(LIBDIR)\POSIX.pm
1475 -del /f $(LIBDIR)\B.pm $(LIBDIR)\O.pm $(LIBDIR)\re.pm
1476 -del /f $(LIBDIR)\Devel\Peek.pm $(LIBDIR)\Devel\DProf.pm
1477 -del /f $(LIBDIR)\Devel\PPPort.pm
1478 -del /f $(LIBDIR)\File\Glob.pm
1479 -del /f $(LIBDIR)\Storable.pm
1480 -del /f $(LIBDIR)\Digest\MD5.pm
1481 -del /f $(LIBDIR)\Digest\SHA.pm
1482 -del /f $(LIBDIR)\PerlIO\encoding.pm
1483 -del /f $(LIBDIR)\PerlIO\scalar.pm
1484 -del /f $(LIBDIR)\PerlIO\via.pm
1485 -del /f $(LIBDIR)\Sys\Hostname.pm
1486 -del /f $(LIBDIR)\threads\shared.pm
1487 -del /f $(LIBDIR)\Time\HiRes.pm
1488 -del /f $(LIBDIR)\Unicode\Normalize.pm
1489 -del /f $(LIBDIR)\Math\BigInt\FastCalc.pm
1490 -del /f $(LIBDIR)\Win32.pm
1491 -del /f $(LIBDIR)\Win32CORE.pm
1492 -del /f $(LIBDIR)\Win32API\File.pm
1493 -del /f $(LIBDIR)\Win32API\File\cFile.pc
1494 -if exist $(LIBDIR)\B rmdir /s /q $(LIBDIR)\B
1495 -if exist $(LIBDIR)\Compress rmdir /s /q $(LIBDIR)\Compress
1496 -if exist $(LIBDIR)\Data rmdir /s /q $(LIBDIR)\Data
1497 -if exist $(LIBDIR)\Encode rmdir /s /q $(LIBDIR)\Encode
1498 -if exist $(LIBDIR)\Filter\Util rmdir /s /q $(LIBDIR)\Filter\Util
1499 -if exist $(LIBDIR)\Hash rmdir /s /q $(LIBDIR)\Hash
1500 -if exist $(LIBDIR)\App rmdir /s /q $(LIBDIR)\App
1501 -if exist $(LIBDIR)\Module\Pluggable rmdir /s /q $(LIBDIR)\Module\Pluggable
1502 -if exist $(LIBDIR)\TAP rmdir /s /q $(LIBDIR)\TAP
1503 -if exist $(LIBDIR)\mro rmdir /s /q $(LIBDIR)\mro
1504 -if exist $(LIBDIR)\IO\Compress rmdir /s /q $(LIBDIR)\IO\Compress
1505 -if exist $(LIBDIR)\IO\Socket rmdir /s /q $(LIBDIR)\IO\Socket
1506 -if exist $(LIBDIR)\IO\Uncompress rmdir /s /q $(LIBDIR)\IO\Uncompress
1507 -if exist $(LIBDIR)\List rmdir /s /q $(LIBDIR)\List
1508 -if exist $(LIBDIR)\MIME rmdir /s /q $(LIBDIR)\MIME
1509 -if exist $(LIBDIR)\re rmdir /s /q $(LIBDIR)\re
1510 -if exist $(LIBDIR)\Scalar rmdir /s /q $(LIBDIR)\Scalar
1511 -if exist $(LIBDIR)\Sys rmdir /s /q $(LIBDIR)\Sys
1512 -if exist $(LIBDIR)\threads rmdir /s /q $(LIBDIR)\threads
1513 -if exist $(LIBDIR)\XS rmdir /s /q $(LIBDIR)\XS
1514 -if exist $(LIBDIR)\Win32API rmdir /s /q $(LIBDIR)\Win32API
1515 -cd $(PODDIR) && del /f *.html *.bat podchecker \
1516 perlaix.pod perlamiga.pod perlapi.pod perlapollo.pod \
1517 perlbeos.pod perlbs2000.pod perlce.pod perlcn.pod \
1518 perlcygwin.pod perldelta.pod perldgux.pod perldos.pod \
1519 perlepoc.pod perlfreebsd.pod perlhaiku.pod perlhpux.pod \
1520 perlhurd.pod perlintern.pod perlirix.pod perljp.pod perlko.pod \
1521 perllinux.pod perlmacos.pod perlmacosx.pod perlmodlib.pod \
1522 perlmpeix.pod perlnetware.pod perlopenbsd.pod perlos2.pod \
1523 perlos390.pod perlos400.pod perlplan9.pod perlqnx.pod \
1524 perlriscos.pod perlsolaris.pod perlsymbian.pod perltoc.pod \
1525 perltru64.pod perltw.pod perluts.pod perlvmesa.pod perlvos.pod \
1527 pod2html pod2latex pod2man pod2text pod2usage \
1529 -cd ..\utils && del /f h2ph splain perlbug pl2pm c2ph pstruct h2xs \
1530 perldoc perlivp dprofpp libnetcfg enc2xs piconv cpan *.bat \
1531 xsubpp instmodsh prove ptar ptardiff cpanp-run-perl cpanp cpan2dist shasum corelist config_data
1532 -cd ..\x2p && del /f find2perl s2p psed *.bat
1533 -del /f ..\config.sh perlmain.c dlutils.c config.h.new \
1536 -del /f ..\lib\Config_git.pl
1540 -cd .. && del /s *$(a) *.map *.pdb *.ilk *.tds *.bs *$(o) .exists pm_to_blib
1541 -cd $(EXTDIR) && del /s *.def Makefile Makefile.old
1542 -cd $(DISTDIR) && del /s *.def Makefile Makefile.old
1543 -cd $(CPANDIR) && del /s *.def Makefile Makefile.old
1544 -if exist $(AUTODIR) rmdir /s /q $(AUTODIR)
1545 -if exist $(COREDIR) rmdir /s /q $(COREDIR)
1546 -if exist pod2htmd.tmp del pod2htmd.tmp
1547 -if exist pod2htmi.tmp del pod2htmi.tmp
1548 -if exist $(HTMLDIR) rmdir /s /q $(HTMLDIR)
1549 -del /f ..\t\test_state
1551 install : all installbare installhtml
1553 installbare : $(RIGHTMAKE) utils ..\pod\perltoc.pod
1554 $(PERLEXE) ..\installperl
1555 if exist $(WPERLEXE) $(XCOPY) $(WPERLEXE) $(INST_BIN)\*.*
1556 if exist $(PERLEXESTATIC) $(XCOPY) $(PERLEXESTATIC) $(INST_BIN)\*.*
1557 $(XCOPY) $(GLOBEXE) $(INST_BIN)\*.*
1558 if exist ..\perl*.pdb $(XCOPY) ..\perl*.pdb $(INST_BIN)\*.*
1559 if exist ..\x2p\a2p.pdb $(XCOPY) ..\x2p\a2p.pdb $(INST_BIN)\*.*
1560 $(XCOPY) bin\*.bat $(INST_SCRIPT)\*.*
1563 $(RCOPY) $(HTMLDIR)\*.* $(INST_HTML)\*.*
1565 inst_lib : $(CONFIGPM)
1566 $(RCOPY) ..\lib $(INST_LIB)\*.*
1568 $(UNIDATAFILES) .UPDATEALL : $(MINIPERL) $(CONFIGPM) ..\lib\unicore\mktables Extensions_nonxs
1569 cd ..\lib\unicore && \
1570 ..\$(MINIPERL) -I.. -I..\..\ext\Cwd\lib mktables
1572 minitest : $(MINIPERL) $(GLOBEXE) $(CONFIGPM) $(UNIDATAFILES) utils
1573 $(XCOPY) $(MINIPERL) ..\t\$(NULL)
1574 if exist ..\t\perl.exe del /f ..\t\perl.exe
1575 rename ..\t\miniperl.exe perl.exe
1576 .IF "$(CCTYPE)" == "BORLAND"
1577 $(XCOPY) $(GLOBBAT) ..\t\$(NULL)
1579 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1583 $(MINIPERL) -I..\lib harness base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t
1585 test-prep : all utils
1586 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1587 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1588 .IF "$(CCTYPE)" == "BORLAND"
1589 $(XCOPY) $(GLOBBAT) ..\t\$(NULL)
1591 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1594 test : $(RIGHTMAKE) test-prep
1595 cd ..\t && $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES)
1597 test-reonly : reonly utils
1598 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1599 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1600 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1602 $(PERLEXE) -I..\lib harness $(OPT) -re \bpat\\/ $(EXTRA) && \
1606 cd .. && regen.pl && cd win32
1608 test-notty : test-prep
1609 set PERL_SKIP_TTY_TEST=1 && \
1610 cd ..\t && $(PERLEXE) -I.\lib harness $(TEST_SWITCHES) $(TEST_FILES)
1612 _test : $(RIGHTMAKE)
1613 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1614 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1615 .IF "$(CCTYPE)" == "BORLAND"
1616 $(XCOPY) $(GLOBBAT) ..\t\$(NULL)
1618 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1620 cd ..\t && $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES)
1623 -@erase miniperlmain$(o)
1625 -@erase perlglob$(o)
1626 -@erase perlmain$(o)
1627 -@erase perlmainst$(o)
1630 -@erase /f ..\git_version.h
1634 -@erase $(PERLEXESTATIC)
1635 -@erase $(PERLSTATICLIB)
1638 -@erase $(GENUUDMAP) $(GENUUDMAP_OBJ) $(UUDMAP_H) $(BITCOUNT_H)
1639 -if exist $(MINIDIR) rmdir /s /q $(MINIDIR)
1640 -if exist $(UNIDATADIR1) rmdir /s /q $(UNIDATADIR1)
1641 -if exist $(UNIDATADIR2) rmdir /s /q $(UNIDATADIR2)
1642 -@erase $(UNIDATAFILES)
1643 -@erase $(WIN32_OBJ)
1646 -@erase ..\*$(o) ..\*$(a) ..\*.exp *$(o) *$(a) *.exp *.res
1647 -@erase ..\t\*.exe ..\t\*.dll ..\t\*.bat
1648 -@erase ..\x2p\*.exe ..\x2p\*.bat
1652 -@erase Extensions_static
1656 clean : Extensions_clean _clean
1658 realclean : Extensions_realclean MakePPPort_clean _clean
1660 # Handy way to run perlbug -ok without having to install and run the
1661 # installed perlbug. We don't re-run the tests here - we trust the user.
1662 # Please *don't* use this unless all tests pass.
1663 # If you want to report test failures, use "dmake nok" instead.
1665 $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)"
1668 $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)" -F perl.ok
1671 $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)"
1674 $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)" -F perl.nok