2 # Makefile to build perl on Windows NT using DMAKE.
4 # Visual C++ 2.0 through 7.0 (and possibly newer versions)
5 # Borland C++ 5.02 or better
6 # MinGW with gcc-2.95.2 or better
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 # (perl59.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 # Borland 5.02 or later
111 # MinGW with gcc-2.95.2 or later
115 # uncomment this if your Borland compiler is older than v5.4.
118 # uncomment this if you want to use Borland's VCL as your CRT
122 # uncomment this if you are compiling under Windows 95/98 and command.com
123 # (not needed if you're running under 4DOS/NT 6.01 or later)
127 # uncomment next line if you want debug version of perl (big,slow)
128 # If not enabled, we automatically try to use maximum optimization
129 # with all compilers that are known to have a working optimizer.
134 # uncomment to enable use of PerlCRT.DLL when using the Visual C compiler.
135 # It has patches that fix known bugs in older versions of MSVCRT.DLL.
136 # This currently requires VC 5.0 with Service Pack 3 or later.
137 # Get it from CPAN at http://www.cpan.org/authors/id/D/DO/DOUGL/
138 # and follow the directions in the package to install.
140 # Not recommended if you have VC 6.x and you're not running Windows 9x.
142 #USE_PERLCRT *= define
145 # uncomment to enable linking with setargv.obj under the Visual C
146 # compiler. Setting this options enables perl to expand wildcards in
147 # arguments, but it may be harder to use alternate methods like
148 # File::DosGlob that are more powerful. This option is supported only with
151 #USE_SETARGV *= define
154 # if you want to have the crypt() builtin function implemented, leave this or
155 # CRYPT_LIB uncommented. The fcrypt.c file named here contains a suitable
156 # version of des_fcrypt().
158 CRYPT_SRC *= fcrypt.c
161 # if you didn't set CRYPT_SRC and if you have des_fcrypt() available in a
162 # library, uncomment this, and make sure the library exists (see README.win32)
163 # Specify the full pathname of the library.
165 #CRYPT_LIB *= fcrypt.lib
168 # set this if you wish to use perl's malloc
169 # WARNING: Turning this on/off WILL break binary compatibility with extensions
170 # you may have compiled with/without it. Be prepared to recompile all
171 # extensions if you change the default. Currently, this cannot be enabled
172 # if you ask for USE_IMP_SYS above.
174 #PERL_MALLOC *= define
177 # set this to enable debugging mstats
178 # This must be enabled to use the Devel::Peek::mstat() function. This cannot
179 # be enabled without PERL_MALLOC as well.
181 #DEBUG_MSTATS *= define
184 # set this to additionally provide a statically linked perl-static.exe.
185 # Note that dynamic loading will not work with this perl, so you must
186 # include required modules statically using STATIC_EXT variable below.
187 # A static library perl59s.lib will also be created.
188 # Ordinary perl.exe is not affected by this option.
190 #BUILD_STATIC *= define
193 # set the install locations of the compiler include/libraries
194 # Running VCVARS32.BAT is *required* when using Visual C.
195 # Some versions of Visual C don't define MSVCDIR in the environment,
196 # so you may have to set CCHOME explicitly (spaces in the path name should
199 .IF "$(CCTYPE)" == "BORLAND"
200 CCHOME *= C:\Borland\BCC55
201 .ELIF "$(CCTYPE)" == "GCC"
206 CCINCDIR *= $(CCHOME)\include
207 CCLIBDIR *= $(CCHOME)\lib
210 # Additional compiler flags can be specified here.
212 BUILDOPT *= $(BUILDOPTEXTRA)
215 # Adding -DPERL_HASH_SEED_EXPLICIT will disable randomization of Perl's
216 # internal hash function unless the PERL_HASH_SEED environment variable is set.
217 # Alternatively, adding -DNO_HASH_SEED will completely disable the
218 # randomization feature.
219 # The latter is required to maintain binary compatibility with Perl 5.8.0.
221 #BUILDOPT += -DPERL_HASH_SEED_EXPLICIT
222 #BUILDOPT += -DNO_HASH_SEED
225 # This should normally be disabled. Adding -DPERL_POLLUTE enables support
226 # for old symbols by default, at the expense of extreme pollution. You most
227 # probably just want to build modules that won't compile with
228 # perl Makefile.PL POLLUTE=1
229 # instead of enabling this. Please report such modules to the respective
232 #BUILDOPT += -DPERL_POLLUTE
235 # This should normally be disabled. Enabling it will disable the File::Glob
236 # implementation of CORE::glob.
238 #BUILDOPT += -DPERL_EXTERNAL_GLOB
241 # This should normally be disabled. Enabling it causes perl to read scripts
242 # in text mode (which is the 5.005 behavior) and will break ByteLoader.
244 #BUILDOPT += -DPERL_TEXTMODE_SCRIPTS
247 # specify semicolon-separated list of extra directories that modules will
248 # look for libraries (spaces in path names need not be quoted)
253 # set this to point to cmd.exe (only needed if you use some
254 # alternate shell that doesn't grok cmd.exe style commands)
256 #SHELL *= g:\winnt\system32\cmd.exe
259 # set this to your email address (perl will guess a value from
260 # from your loginname and your hostname, which may not be right)
265 ## Build configuration ends.
268 ##################### CHANGE THESE ONLY IF YOU MUST #####################
270 .IF "$(CRYPT_SRC)$(CRYPT_LIB)" == ""
274 CRYPT_FLAG = -DHAVE_DES_FCRYPT
278 DEBUG_MSTATS *= undef
280 USE_SITECUST *= undef
282 USE_ITHREADS *= undef
285 USE_LARGE_FILES *= undef
288 .IF "$(USE_IMP_SYS)" == "define"
292 .IF "$(PERL_MALLOC)" == "undef"
296 .IF "$(DEBUG_MSTATS)" == "define"
297 BUILDOPT += -DPERL_DEBUGGING_MSTATS
300 .IF "$(USE_IMP_SYS) $(USE_MULTI)" == "define undef"
304 .IF "$(USE_ITHREADS) $(USE_MULTI)" == "define undef"
308 .IF "$(USE_SITECUST)" == "define"
309 BUILDOPT += -DUSE_SITECUSTOMIZE
312 .IF "$(USE_MULTI)" != "undef"
313 BUILDOPT += -DPERL_IMPLICIT_CONTEXT
316 .IF "$(USE_IMP_SYS)" != "undef"
317 BUILDOPT += -DPERL_IMPLICIT_SYS
320 .IMPORT .IGNORE : PROCESSOR_ARCHITECTURE PROCESSOR_ARCHITEW6432
322 PROCESSOR_ARCHITECTURE *= x86
325 # When we are running from a 32bit cmd.exe on AMD64 then
326 # PROCESSOR_ARCHITECTURE is set to x86 and PROCESSOR_ARCHITEW6432
328 .IF "$(PROCESSOR_ARCHITEW6432)" != ""
329 PROCESSOR_ARCHITECTURE != $(PROCESSOR_ARCHITEW6432)
331 .ELIF "$(PROCESSOR_ARCHITECTURE)" == "AMD64" || "$(PROCESSOR_ARCHITECTURE)" == "IA64"
338 ARCHITECTURE = $(PROCESSOR_ARCHITECTURE)
339 .IF "$(ARCHITECTURE)" == "AMD64"
342 .IF "$(ARCHITECTURE)" == "IA64"
346 .IF "$(USE_MULTI)" == "define"
347 ARCHNAME = MSWin32-$(ARCHITECTURE)-multi
349 .IF "$(USE_PERLIO)" == "define"
350 ARCHNAME = MSWin32-$(ARCHITECTURE)-perlio
352 ARCHNAME = MSWin32-$(ARCHITECTURE)
356 .IF "$(USE_ITHREADS)" == "define"
357 ARCHNAME !:= $(ARCHNAME)-thread
360 # Visual C++ 98, .NET 2003 and 2005 specific.
361 # VC++ 6.x, 7.x and 8.x can load DLL's on demand. Makes the test suite run in
362 # about 10% less time. (The free version of 7.x can't do this, but the free
363 # version of 8.x can.)
364 .IF "$(CCTYPE)" == "MSVC60" || "$(CCTYPE)" == "MSVC70" \
365 "$(CCTYPE)" == "MSVC80" || "$(CCTYPE)" == "MSVC80FREE"
366 DELAYLOAD *= -DELAYLOAD:ws2_32.dll -DELAYLOAD:shell32.dll delayimp.lib
369 # Visual C++ 2005 (VC++ 8.x) creates manifest files for EXEs and DLLs. These
370 # either need copying everywhere with the binaries, or else need embedding in
371 # them otherwise MSVCR80.dll won't be found. Embed them for simplicity, and
372 # delete them afterwards so that they don't get installed too.
373 .IF "$(CCTYPE)" == "MSVC80" || "$(CCTYPE)" == "MSVC80FREE"
374 EMBED_EXE_MANI = mt -nologo -manifest $@.manifest -outputresource:$@;1 && \
376 EMBED_DLL_MANI = mt -nologo -manifest $@.manifest -outputresource:$@;2 && \
380 ARCHDIR = ..\lib\$(ARCHNAME)
381 COREDIR = ..\lib\CORE
382 AUTODIR = ..\lib\auto
386 EXTUTILSDIR = $(LIBDIR)\ExtUtils
390 INST_SCRIPT = $(INST_TOP)$(INST_VER)\bin
391 INST_BIN = $(INST_SCRIPT)$(INST_ARCH)
392 INST_LIB = $(INST_TOP)$(INST_VER)\lib
393 INST_ARCHLIB = $(INST_LIB)$(INST_ARCH)
394 INST_COREDIR = $(INST_ARCHLIB)\CORE
395 INST_HTML = $(INST_TOP)$(INST_VER)\html
398 # Programs to compile, build .lib files and link
403 .IF "$(CCTYPE)" == "BORLAND"
406 .IF "$(BCCOLD)" != "define"
411 LIB32 = tlib /a /P128
418 INCLUDES = -I$(COREDIR) -I.\include -I. -I.. -I"$(CCINCDIR)"
419 #PCHFLAGS = -H -Hc -H=c:\temp\bcmoduls.pch
420 DEFINES = -DWIN32 $(CRYPT_FLAG)
421 LOCDEFS = -DPERLDLL -DPERL_CORE
427 # same libs as MSVC, except Borland doesn't have oldnames.lib
428 LIBFILES = $(CRYPT_LIB) \
429 kernel32.lib user32.lib gdi32.lib winspool.lib \
430 comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \
431 netapi32.lib uuid.lib ws2_32.lib mpr.lib winmm.lib \
432 version.lib odbc32.lib odbccp32.lib \
435 .IF "$(CFG)" == "Debug"
436 OPTIMIZE = -v -D_RTLDLL -DDEBUGGING
439 OPTIMIZE = -O2 -D_RTLDLL
444 CFLAGS = -w -g0 -tWM -tWD $(INCLUDES) $(DEFINES) $(LOCDEFS) \
445 $(PCHFLAGS) $(OPTIMIZE)
446 LINK_FLAGS = $(LINK_DBG) -L"$(INST_COREDIR)" -L"$(CCLIBDIR)" \
451 .IF "$(BCCOLD)" != "define"
453 DEFINES += -D_MT -D__USELOCALES__ -D_WIN32_WINNT=0x0410
455 .IF "$(BCCVCL)" == "define"
456 LIBC = cp32mti.lib vcl.lib vcl50.lib vclx50.lib vcle50.lib
457 LINK_FLAGS += -L"$(CCLIBDIR)\Release"
461 .ELIF "$(CCTYPE)" == "GCC"
477 INCLUDES = -I.\include -I. -I.. -I$(COREDIR)
478 DEFINES = -DWIN32 $(CRYPT_FLAG)
479 LOCDEFS = -DPERLDLL -DPERL_CORE
486 LIBFILES = $(CRYPT_LIB) $(LIBC) \
487 -lmoldname -lkernel32 -luser32 -lgdi32 \
488 -lwinspool -lcomdlg32 -ladvapi32 -lshell32 -lole32 \
489 -loleaut32 -lnetapi32 -luuid -lws2_32 -lmpr \
490 -lwinmm -lversion -lodbc32 -lodbccp32
492 .IF "$(CFG)" == "Debug"
493 OPTIMIZE = -g -O2 -DDEBUGGING
501 CFLAGS = $(INCLUDES) $(DEFINES) $(LOCDEFS) $(OPTIMIZE)
502 LINK_FLAGS = $(LINK_DBG) -L"$(INST_COREDIR)" -L"$(CCLIBDIR)"
507 # NOTE: we assume that GCC uses MSVCRT.DLL
508 # See comments about PERL_MSVCRT_READFIX in the "cl" compiler section below.
509 BUILDOPT += -fno-strict-aliasing -DPERL_MSVCRT_READFIX
515 LIB32 = $(LINK32) -lib
522 INCLUDES = -I$(COREDIR) -I.\include -I. -I..
523 #PCHFLAGS = -Fpc:\temp\vcmoduls.pch -YX
524 DEFINES = -DWIN32 -D_CONSOLE -DNO_STRICT $(CRYPT_FLAG)
525 LOCDEFS = -DPERLDLL -DPERL_CORE
529 .IF "$(USE_PERLCRT)" != "define"
535 .IF "$(CFG)" == "Debug"
536 .IF "$(CCTYPE)" == "MSVC20"
537 OPTIMIZE = -Od -MD -Z7 -DDEBUGGING
539 OPTIMIZE = -O1 -MD -Zi -DDEBUGGING
543 OPTIMIZE = -MD -Zi -DNDEBUG
544 # we enable debug symbols in release builds also
545 LINK_DBG = -debug -opt:ref,icf
546 # you may want to enable this if you want COFF symbols in the executables
547 # in addition to the PDB symbols. The default Dr. Watson that ships with
548 # Windows can use the the former but not latter. The free WinDbg can be
549 # installed to get better stack traces from just the PDB symbols, so we
550 # avoid the bloat of COFF symbols by default.
551 #LINK_DBG = $(LINK_DBG) -debugtype:both
552 .IF "$(WIN64)" == "define"
553 # enable Whole Program Optimizations (WPO) and Link Time Code Generation (LTCG)
557 # -O1 yields smaller code, which turns out to be faster than -O2 on x86
563 .IF "$(WIN64)" == "define"
564 DEFINES += -DWIN64 -DCONSERVATIVE
565 OPTIMIZE += -Wp64 -fp:precise
568 # Use the MSVCRT read() fix if the PerlCRT was not chosen, but only when using
569 # VC++ 6.x or earlier. Later versions use MSVCR70.dll, MSVCR71.dll, etc, which
570 # do not require the fix.
571 .IF "$(CCTYPE)" == "MSVC20" || "$(CCTYPE)" == "MSVC" || "$(CCTYPE)" == "MSVC60"
572 .IF "$(USE_PERLCRT)" != "define"
573 BUILDOPT += -DPERL_MSVCRT_READFIX
577 LIBBASEFILES = $(CRYPT_LIB) \
578 oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.lib \
579 comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \
580 netapi32.lib uuid.lib ws2_32.lib mpr.lib winmm.lib \
581 version.lib odbc32.lib odbccp32.lib
583 # The 64 bit Platform SDK compilers contain a runtime library that doesn't
584 # include the buffer overrun verification code used by the /GS switch.
585 # Since the code links against libraries that are compiled with /GS, this
586 # "security cookie verification" must be included via bufferoverlow.lib.
587 .IF "$(WIN64)" == "define"
588 LIBBASEFILES = $(LIBBASEFILES) bufferoverflowU.lib
591 # we add LIBC here, since we may be using PerlCRT.dll
592 LIBFILES = $(LIBBASEFILES) $(LIBC)
594 EXTRACFLAGS = -nologo -GF -W3
595 CFLAGS = $(EXTRACFLAGS) $(INCLUDES) $(DEFINES) $(LOCDEFS) \
596 $(PCHFLAGS) $(OPTIMIZE)
597 LINK_FLAGS = -nologo -nodefaultlib $(LINK_DBG) \
598 -libpath:"$(INST_COREDIR)" \
599 -machine:$(PROCESSOR_ARCHITECTURE)
607 CFLAGS_O = $(CFLAGS) $(BUILDOPT)
609 # used to allow local linking flags that are not propogated into Config.pm,
613 BLINK_FLAGS = $(PRIV_LINK_FLAGS) $(LINK_FLAGS)
615 #################### do not edit below this line #######################
616 ############# NO USER-SERVICEABLE PARTS BEYOND THIS POINT ##############
618 # Some dmake's built with Borland C++, including Sarathy's one at:
619 # http://search.cpan.org/CPAN/authors/id/G/GS/GSAR/dmake-4.1pl1-win32.zip
620 # require backslashes to be doubled-up when written to $(mktmp) files.
621 # Other dmake's do not require this and would actually output a double
622 # backslash if they were doubled-up.
623 .IF "$(shell @type $(mktmp \\))"=="\\"
629 # There is a related issue with other escape sequences: Sarathy's old
630 # dmake automatically maps escape sequences like \n to their ASCII values
631 # when used in macros, while other dmake's only do so if this behaviour
632 # is explicitly requested with the :m modifier.
634 .IF "$(shell @type $(mktmp \n))"=="\n"
650 .SUFFIXES : .c .i $(o) .dll $(a) .exe .rc .res
653 $(CC) -c $(null,$(<:d) $(NULL) -I$(<:d)) $(CFLAGS_O) $(OBJOUT_FLAG)$@ $<
656 $(CC) -c $(null,$(<:d) $(NULL) -I$(<:d)) $(CFLAGS_O) -E $< >$@
662 .IF "$(CCTYPE)" == "BORLAND"
663 $(LINK32) -Tpd -ap $(BLINK_FLAGS) c0d32$(o) $<,$@,,$(LIBFILES),$(*B).def
664 $(IMPLIB) $(*B).lib $@
665 .ELIF "$(CCTYPE)" == "GCC"
666 $(LINK32) -o $@ $(BLINK_FLAGS) $< $(LIBFILES)
667 $(IMPLIB) --input-def $(*B).def --output-lib $(*B).a $@
669 $(LINK32) -dll -subsystem:windows -implib:$(*B).lib -def:$(*B).def \
670 -out:$@ $(BLINK_FLAGS) $(LIBFILES) $< $(LIBPERL)
675 .IF "$(CCTYPE)" == "GCC"
676 $(RSC) --use-temp-file -i $< -o $@
683 MINIPERL = ..\miniperl.exe
685 PERLEXE = ..\perl.exe
686 WPERLEXE = ..\wperl.exe
687 PERLEXESTATIC = ..\perl-static.exe
688 GLOBEXE = ..\perlglob.exe
689 CONFIGPM = ..\lib\Config.pm ..\lib\Config_heavy.pl
690 MINIMOD = ..\lib\ExtUtils\Miniperl.pm
692 .IF "$(BUILD_STATIC)" == "define"
698 # Unicode data files generated by mktables
699 UNIDATAFILES = ..\lib\unicore\Canonical.pl ..\lib\unicore\Exact.pl \
700 ..\lib\unicore\Properties ..\lib\unicore\Decomposition.pl \
701 ..\lib\unicore\CombiningClass.pl ..\lib\unicore\Name.pl \
702 ..\lib\unicore\PVA.pl
704 # Directories of Unicode data files generated by mktables
705 UNIDATADIR1 = ..\lib\unicore\To
706 UNIDATADIR2 = ..\lib\unicore\lib
708 PERLEXE_ICO = .\perlexe.ico
709 PERLEXE_RES = .\perlexe.res
712 # Nominate a target which causes extensions to be re-built
713 # This used to be $(PERLEXE), but at worst it is the .dll that they depend
714 # on and really only the interface - i.e. the .def file used to export symbols
716 PERLDEP = perldll.def
719 PL2BAT = bin\pl2bat.pl
720 GLOBBAT = bin\perlglob.bat
736 ..\utils\config_data \
762 .IF "$(CCTYPE)" == "BORLAND"
764 CFGSH_TMPL = config.bc
765 CFGH_TMPL = config_H.bc
767 .ELIF "$(CCTYPE)" == "GCC"
769 CFGSH_TMPL = config.gc
770 CFGH_TMPL = config_H.gc
771 PERLIMPLIB = ..\libperl59$(a)
772 PERLSTATICLIB = ..\libperl59s$(a)
776 .IF "$(WIN64)" == "define"
777 CFGSH_TMPL = config.vc64
778 CFGH_TMPL = config_H.vc64
780 CFGSH_TMPL = config.vc
781 CFGH_TMPL = config_H.vc
786 # makedef.pl must be updated if this changes, and this should normally
787 # only change when there is an incompatible revision of the public API.
788 PERLIMPLIB *= ..\perl59$(a)
789 PERLSTATICLIB *= ..\perl59s$(a)
790 PERLDLL = ..\perl59.dll
792 XCOPY = xcopy /f /r /i /d /y
793 RCOPY = xcopy /f /r /i /e /d /y
797 # filenames given to xsubpp must have forward slashes (since it puts
798 # full pathnames in #line strings)
799 XSUBPP = ..\$(MINIPERL) -I..\..\lib ..\$(EXTUTILSDIR)\xsubpp \
839 EXTRACORE_SRC += perllib.c
841 .IF "$(PERL_MALLOC)" == "define"
842 EXTRACORE_SRC += ..\malloc.c
845 EXTRACORE_SRC += ..\perlio.c
852 # We need this for miniperl build unless we override canned
853 # config.h #define building mini\*
854 #.IF "$(USE_PERLIO)" == "define"
855 WIN32_SRC += .\win32io.c
858 .IF "$(CRYPT_SRC)" != ""
859 WIN32_SRC += .\$(CRYPT_SRC)
862 DLL_SRC = $(DYNALOADER).c
909 .\include\sys\socket.h \
912 CORE_H = $(CORE_NOCFG_H) .\config.h
914 MICROCORE_OBJ = $(MICROCORE_SRC:db:+$(o))
915 CORE_OBJ = $(MICROCORE_OBJ) $(EXTRACORE_SRC:db:+$(o))
916 WIN32_OBJ = $(WIN32_SRC:db:+$(o))
917 MINICORE_OBJ = $(MINIDIR)\{$(MICROCORE_OBJ:f) miniperlmain$(o) perlio$(o)}
918 MINIWIN32_OBJ = $(MINIDIR)\{$(WIN32_OBJ:f)}
919 MINI_OBJ = $(MINICORE_OBJ) $(MINIWIN32_OBJ)
920 DLL_OBJ = $(DLL_SRC:db:+$(o))
921 X2P_OBJ = $(X2P_SRC:db:+$(o))
923 PERLDLL_OBJ = $(CORE_OBJ)
924 PERLEXE_OBJ = perlmain$(o)
925 PERLEXEST_OBJ = perlmainst$(o)
927 PERLDLL_OBJ += $(WIN32_OBJ) $(DLL_OBJ)
929 .IF "$(USE_SETARGV)" != ""
930 SETARGV_OBJ = setargv$(o)
933 DYNAMIC_EXT = Socket IO Fcntl Opcode SDBM_File POSIX attrs Thread B re \
934 Data/Dumper Devel/Peek ByteLoader Devel/DProf File/Glob \
935 Sys/Hostname Storable Filter/Util/Call Encode \
936 Digest/MD5 Digest/SHA PerlIO/scalar MIME/Base64 Time/HiRes \
937 Unicode/Normalize Math/BigInt/FastCalc Compress/Zlib Win32 \
942 DYNALOADER = $(EXTDIR)\DynaLoader\DynaLoader
944 # vars must be separated by "\t+~\t+", since we're using the tempfile
945 # version of config_sh.pl (we were overflowing someone's buffer by
946 # trying to fit them all on the command line)
949 INST_DRV=$(INST_DRV) ~ \
950 INST_TOP=$(INST_TOP:s,\,$B,) ~ \
951 INST_VER=$(INST_VER:s,\,$B,) ~ \
952 INST_ARCH=$(INST_ARCH) ~ \
953 archname=$(ARCHNAME) ~ \
956 ccflags=$(EXTRACFLAGS) $(OPTIMIZE) $(DEFINES) $(BUILDOPT) ~ \
957 cf_email=$(EMAIL) ~ \
958 d_crypt=$(D_CRYPT) ~ \
959 d_mymalloc=$(PERL_MALLOC) ~ \
960 libs=$(LIBFILES:f) ~ \
961 incpath=$(CCINCDIR:s,\,$B,) ~ \
962 libperl=$(PERLIMPLIB:f) ~ \
963 libpth=$(CCLIBDIR:s,\,$B,);$(EXTRALIBDIRS:s,\,$B,) ~ \
970 static_ext=$(STATIC_EXT) ~ \
971 usethreads=$(USE_ITHREADS) ~ \
972 useithreads=$(USE_ITHREADS) ~ \
973 usemultiplicity=$(USE_MULTI) ~ \
974 useperlio=$(USE_PERLIO) ~ \
975 uselargefiles=$(USE_LARGE_FILES) ~ \
976 usesitecustomize=$(USE_SITECUST) ~ \
977 LINK_FLAGS=$(LINK_FLAGS:s,\,$B,) ~ \
981 # set up targets varying between Win95 and WinNT builds
984 .IF "$(IS_WIN95)" == "define"
986 RIGHTMAKE = __switch_makefiles
992 .IMPORT .IGNORE : SystemRoot windir
994 # Don't just .IMPORT OS from the environment because dmake sets OS itself.
995 ENV_OS=$(subst,OS=, $(shell @set OS))
997 .IF "$(ENV_OS)" == "Windows_NT"
998 ODBCCP32_DLL = $(SystemRoot)\system32\odbccp32.dll
1000 ODBCCP32_DLL = $(windir)\system\odbccp32.dll
1007 all : .\config.h $(GLOBEXE) $(MINIPERL) $(MK2) \
1008 $(RIGHTMAKE) $(MINIMOD) $(CONFIGPM) $(UNIDATAFILES) $(PERLEXE) \
1009 $(X2P) MakePPPort Extensions $(PERLSTATIC)
1011 reonly : .\config.h $(GLOBEXE) $(MINIPERL) $(MK2) \
1012 $(RIGHTMAKE) $(MINIMOD) $(CONFIGPM) $(UNIDATAFILES) $(PERLEXE) \
1013 $(X2P) Extensions_reonly
1015 $(DYNALOADER)$(o) : $(DYNALOADER).c $(CORE_H) $(EXTDIR)\DynaLoader\dlutils.c
1017 static: $(PERLEXESTATIC)
1019 #----------------------------------------------------------------
1021 #-------------------- BEGIN Win95 SPECIFIC ----------------------
1023 # this target is a jump-off point for Win95
1024 # 1. it switches to the Win95-specific makefile if it exists
1025 # (__do_switch_makefiles)
1026 # 2. it prints a message when the Win95-specific one finishes (__done)
1027 # 3. it then kills this makefile by trying to make __no_such_target
1029 __switch_makefiles: __do_switch_makefiles __done __no_such_target
1031 __do_switch_makefiles:
1032 .IF "$(NOTFIRST)" != "true"
1033 if exist $(MK2) $(MAKE:s/-S//) -f $(MK2) $(MAKETARGETS) NOTFIRST=true
1038 .IF "$(NOTFIRST)" != "true"
1040 @echo Build process complete. Ignore any errors after this message.
1041 @echo Run "dmake test" to test and "dmake install" to install
1044 # dummy targets for Win95-specific makefile
1054 # This target is used to generate the new makefile (.\makefile.95) for Win95
1056 .\makefile.95: .\makefile.mk
1057 $(MINIPERL) genmk95.pl makefile.mk $(MK2)
1059 #--------------------- END Win95 SPECIFIC ---------------------
1061 # a blank target for when builds don't need to do certain things
1062 # this target added for Win95 port but used to keep the WinNT port able to
1067 $(GLOBEXE) : perlglob$(o)
1068 .IF "$(CCTYPE)" == "BORLAND"
1069 $(CC) -c -w -v -tWM -I"$(CCINCDIR)" perlglob.c
1070 $(LINK32) -Tpe -ap $(BLINK_FLAGS) c0x32$(o) perlglob$(o) \
1071 "$(CCLIBDIR)\32BIT\wildargs$(o)",$@,,import32.lib cw32mt.lib,
1072 .ELIF "$(CCTYPE)" == "GCC"
1073 $(LINK32) $(BLINK_FLAGS) -mconsole -o $@ perlglob$(o) $(LIBFILES)
1075 $(LINK32) $(BLINK_FLAGS) $(LIBFILES) -out:$@ -subsystem:$(SUBSYS) \
1076 perlglob$(o) setargv$(o)
1080 perlglob$(o) : perlglob.c
1082 config.w32 : $(CFGSH_TMPL)
1083 copy $(CFGSH_TMPL) config.w32
1085 .\config.h : $(CFGH_TMPL) $(CORE_NOCFG_H)
1087 copy $(CFGH_TMPL) config.h
1089 ..\config.sh : config.w32 $(MINIPERL) config_sh.PL FindExt.pm
1090 $(MINIPERL) -I..\lib config_sh.PL --cfgsh-option-file \
1091 $(mktmp $(CFG_VARS)) config.w32 > ..\config.sh
1093 # this target is for when changes to the main config.sh happen
1094 # edit config.{b,v,g}c and make this target once for each supported
1095 # compiler (e.g. `dmake CCTYPE=BORLAND regen_config_h`)
1097 perl config_sh.PL --cfgsh-option-file $(mktmp $(CFG_VARS)) \
1098 $(CFGSH_TMPL) > ..\config.sh
1099 -cd .. && del /f perl.exe
1100 -cd .. && del /f perl*.dll
1101 cd .. && perl configpm
1102 -del /f $(CFGH_TMPL)
1104 -perl config_h.PL "INST_VER=$(INST_VER)"
1105 rename config.h $(CFGH_TMPL)
1107 $(CONFIGPM) : $(MINIPERL) ..\config.sh config_h.PL ..\minimod.pl
1108 cd .. && miniperl configpm
1109 if exist lib\* $(RCOPY) lib\*.* ..\lib\$(NULL)
1110 $(XCOPY) ..\*.h $(COREDIR)\*.*
1111 $(XCOPY) *.h $(COREDIR)\*.*
1112 $(XCOPY) ..\ext\re\re.pm $(LIBDIR)\*.*
1113 $(RCOPY) include $(COREDIR)\*.*
1114 $(MINIPERL) -I..\lib config_h.PL "INST_VER=$(INST_VER)" \
1115 || $(MAKE) $(MAKEMACROS) $(CONFIGPM) $(MAKEFILE)
1117 $(MINIPERL) : $(MINIDIR) $(MINI_OBJ) $(CRTIPMLIBS)
1118 .IF "$(CCTYPE)" == "BORLAND"
1119 if not exist $(CCLIBDIR)\PSDK\odbccp32.lib \
1120 cd $(CCLIBDIR)\PSDK && implib odbccp32.lib $(ODBCCP32_DLL)
1121 $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
1122 @$(mktmp c0x32$(o) $(MINI_OBJ:s,\,$B,),$(@:s,\,$B,),,$(LIBFILES),)
1123 .ELIF "$(CCTYPE)" == "GCC"
1124 $(LINK32) -v -mconsole -o $@ $(BLINK_FLAGS) \
1125 $(mktmp $(LKPRE) $(MINI_OBJ:s,\,$B,) $(LIBFILES) $(LKPOST))
1127 $(LINK32) -subsystem:console -out:$@ \
1128 @$(mktmp $(BLINK_FLAGS) $(LIBFILES) $(MINI_OBJ:s,\,$B,))
1133 if not exist "$(MINIDIR)" mkdir "$(MINIDIR)"
1135 $(MINICORE_OBJ) : $(CORE_NOCFG_H)
1136 $(CC) -c $(CFLAGS) -DPERL_EXTERNAL_GLOB $(OBJOUT_FLAG)$@ ..\$(*B).c
1138 $(MINIWIN32_OBJ) : $(CORE_NOCFG_H)
1139 $(CC) -c $(CFLAGS) $(OBJOUT_FLAG)$@ $(*B).c
1141 # -DPERL_IMPLICIT_SYS needs C++ for perllib.c
1142 # rules wrapped in .IFs break Win9X build (we end up with unbalanced []s unless
1143 # unless the .IF is true), so instead we use a .ELSE with the default.
1144 # This is the only file that depends on perlhost.h, vmem.h, and vdir.h
1146 perllib$(o) : perllib.c .\perlhost.h .\vdir.h .\vmem.h
1147 .IF "$(USE_IMP_SYS)" == "define"
1148 $(CC) -c -I. $(CFLAGS_O) $(CXX_FLAG) $(OBJOUT_FLAG)$@ perllib.c
1150 $(CC) -c -I. $(CFLAGS_O) $(OBJOUT_FLAG)$@ perllib.c
1153 # 1. we don't want to rebuild miniperl.exe when config.h changes
1154 # 2. we don't want to rebuild miniperl.exe with non-default config.h
1155 $(MINI_OBJ) : $(CORE_NOCFG_H)
1157 $(WIN32_OBJ) : $(CORE_H)
1159 $(CORE_OBJ) : $(CORE_H)
1161 $(DLL_OBJ) : $(CORE_H)
1163 $(X2P_OBJ) : $(CORE_H)
1165 perldll.def : $(MINIPERL) $(CONFIGPM) ..\global.sym ..\pp.sym ..\makedef.pl
1166 $(MINIPERL) -I..\lib buildext.pl --create-perllibst-h
1167 $(MINIPERL) -w ..\makedef.pl PLATFORM=win32 $(OPTIMIZE) $(DEFINES) \
1168 $(BUILDOPT) CCTYPE=$(CCTYPE) > perldll.def
1170 $(PERLDLL): perldll.def $(PERLDLL_OBJ) $(PERLDLL_RES) Extensions_static
1171 .IF "$(CCTYPE)" == "BORLAND"
1172 $(LINK32) -Tpd -ap $(BLINK_FLAGS) \
1173 @$(mktmp c0d32$(o) $(PERLDLL_OBJ:s,\,$B,)$N \
1175 $(subst,\,$B $(shell @type Extensions_static)) $(LIBFILES)$N \
1178 .ELIF "$(CCTYPE)" == "GCC"
1179 $(LINK32) -mdll -o $@ -Wl,--base-file -Wl,perl.base $(BLINK_FLAGS) \
1180 $(mktmp $(LKPRE) $(PERLDLL_OBJ:s,\,$B,) \
1181 $(subst,\,$B $(shell @type Extensions_static)) \
1182 $(LIBFILES) $(LKPOST))
1183 dlltool --output-lib $(PERLIMPLIB) \
1184 --dllname $(PERLDLL:b).dll \
1186 --base-file perl.base \
1187 --output-exp perl.exp
1188 $(LINK32) -mdll -o $@ $(BLINK_FLAGS) \
1189 $(mktmp $(LKPRE) $(PERLDLL_OBJ:s,\,$B,) \
1190 $(subst,\,$B $(shell @type Extensions_static)) \
1191 $(LIBFILES) perl.exp $(LKPOST))
1193 $(LINK32) -dll -def:perldll.def -out:$@ \
1194 @Extensions_static \
1195 @$(mktmp -base:0x28000000 $(BLINK_FLAGS) $(DELAYLOAD) $(LIBFILES) \
1196 $(PERLDLL_RES) $(PERLDLL_OBJ:s,\,$B,))
1199 $(XCOPY) $(PERLIMPLIB) $(COREDIR)
1201 $(PERLSTATICLIB): Extensions_static
1202 .IF "$(CCTYPE)" == "BORLAND"
1203 $(LIB32) $(LIB_FLAGS) $@ \
1204 @$(mktmp $(subst,\,$B $(shell @type Extensions_static)) \
1205 $(PERLDLL_OBJ:s,\,$B,))
1206 .ELIF "$(CCTYPE)" == "GCC"
1207 # XXX: It would be nice if MinGW's ar accepted a temporary file, but this
1208 # doesn't seem to work:
1209 # $(LIB32) $(LIB_FLAGS) $@ \
1210 # $(mktmp $(LKPRE) $(subst,\,$B $(shell @type Extensions_static)) \
1211 # $(PERLDLL_OBJ:s,\,$B,) $(LKPOST))
1212 $(LIB32) $(LIB_FLAGS) $@ \
1213 $(subst,\,$B $(shell @type Extensions_static)) \
1214 $(PERLDLL_OBJ:s,\,$B,)
1216 $(LIB32) $(LIB_FLAGS) -out:$@ @Extensions_static \
1217 @$(mktmp $(PERLDLL_OBJ:s,\,$B,))
1219 $(XCOPY) $(PERLSTATICLIB) $(COREDIR)
1221 $(PERLEXE_ICO): $(MINIPERL) makeico.pl
1222 $(MINIPERL) makeico.pl > $@
1224 $(PERLEXE_RES): perlexe.rc $(PERLEXE_ICO)
1226 $(MINIMOD) : $(MINIPERL) ..\minimod.pl
1227 cd .. && miniperl minimod.pl > lib\ExtUtils\Miniperl.pm
1229 ..\x2p\a2p$(o) : ..\x2p\a2p.c
1230 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\a2p.c
1232 ..\x2p\hash$(o) : ..\x2p\hash.c
1233 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\hash.c
1235 ..\x2p\str$(o) : ..\x2p\str.c
1236 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\str.c
1238 ..\x2p\util$(o) : ..\x2p\util.c
1239 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\util.c
1241 ..\x2p\walk$(o) : ..\x2p\walk.c
1242 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\walk.c
1244 $(X2P) : $(MINIPERL) $(X2P_OBJ)
1245 $(MINIPERL) ..\x2p\find2perl.PL
1246 $(MINIPERL) ..\x2p\s2p.PL
1247 .IF "$(CCTYPE)" == "BORLAND"
1248 $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
1249 @$(mktmp c0x32$(o) $(X2P_OBJ:s,\,$B,),$(@:s,\,$B,),,$(LIBFILES),)
1250 .ELIF "$(CCTYPE)" == "GCC"
1251 $(LINK32) -v -o $@ $(BLINK_FLAGS) \
1252 $(mktmp $(LKPRE) $(X2P_OBJ:s,\,$B,) $(LIBFILES) $(LKPOST))
1254 $(LINK32) -subsystem:console -out:$@ \
1255 @$(mktmp $(BLINK_FLAGS) $(LIBFILES) $(X2P_OBJ:s,\,$B,))
1259 perlmain.c : runperl.c
1260 copy runperl.c perlmain.c
1262 perlmain$(o) : perlmain.c
1263 $(CC) $(CFLAGS_O) -UPERLDLL $(OBJOUT_FLAG)$@ -c perlmain.c
1265 perlmainst.c : runperl.c
1266 copy runperl.c perlmainst.c
1268 perlmainst$(o) : perlmainst.c
1269 $(CC) $(CFLAGS_O) -DPERLDLL $(OBJOUT_FLAG)$@ -c perlmainst.c
1271 $(PERLEXE): $(PERLDLL) $(CONFIGPM) $(PERLEXE_OBJ) $(PERLEXE_RES)
1272 .IF "$(CCTYPE)" == "BORLAND"
1273 $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
1274 @$(mktmp c0x32$(o) $(PERLEXE_OBJ:s,\,$B,)$N \
1276 $(PERLIMPLIB) $(LIBFILES)$N)
1277 .ELIF "$(CCTYPE)" == "GCC"
1278 $(LINK32) -mconsole -o $@ $(BLINK_FLAGS) \
1279 $(PERLEXE_OBJ) $(PERLIMPLIB) $(LIBFILES)
1281 $(LINK32) -subsystem:console -out:$@ -stack:0x1000000 $(BLINK_FLAGS) \
1282 $(LIBFILES) $(PERLEXE_OBJ) $(SETARGV_OBJ) $(PERLIMPLIB) $(PERLEXE_RES)
1285 copy $(PERLEXE) $(WPERLEXE)
1286 $(MINIPERL) -I..\lib bin\exetype.pl $(WPERLEXE) WINDOWS
1287 copy splittree.pl ..
1288 $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR)
1290 $(PERLEXESTATIC): $(PERLSTATICLIB) $(CONFIGPM) $(PERLEXEST_OBJ) $(PERLEXE_RES)
1291 .IF "$(CCTYPE)" == "BORLAND"
1292 $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
1293 @$(mktmp c0x32$(o) $(PERLEXEST_OBJ:s,\,$B,)$N \
1295 $(subst,\,$B $(shell @type Extensions_static)) \
1296 $(PERLSTATICLIB) $(LIBFILES)$N)
1297 .ELIF "$(CCTYPE)" == "GCC"
1298 $(LINK32) -mconsole -o $@ $(BLINK_FLAGS) \
1299 $(mktmp $(LKPRE) $(subst,\,$B $(shell @type Extensions_static)) \
1300 $(PERLSTATICLIB) $(LIBFILES) $(PERLEXEST_OBJ) $(LKPOST))
1302 $(LINK32) -subsystem:console -out:$@ -stack:0x1000000 $(BLINK_FLAGS) \
1303 @Extensions_static $(PERLSTATICLIB) \
1304 $(LIBFILES) $(PERLEXEST_OBJ) $(SETARGV_OBJ) $(PERLEXE_RES)
1308 $(DYNALOADER).c: $(MINIPERL) $(EXTDIR)\DynaLoader\dl_win32.xs $(CONFIGPM)
1309 if not exist $(AUTODIR) mkdir $(AUTODIR)
1310 cd $(EXTDIR)\$(*B) && ..\$(MINIPERL) -I..\..\lib $(*B)_pm.PL
1311 cd $(EXTDIR)\$(*B) && ..\$(MINIPERL) -I..\..\lib XSLoader_pm.PL
1312 $(XCOPY) $(EXTDIR)\$(*B)\$(*B).pm $(LIBDIR)\$(NULL)
1313 $(XCOPY) $(EXTDIR)\$(*B)\XSLoader.pm $(LIBDIR)\$(NULL)
1314 cd $(EXTDIR)\$(*B) && $(XSUBPP) dl_win32.xs > $(*B).c
1315 $(XCOPY) $(EXTDIR)\$(*B)\dlutils.c .
1317 $(EXTDIR)\DynaLoader\dl_win32.xs: dl_win32.xs
1318 copy dl_win32.xs $(EXTDIR)\DynaLoader\dl_win32.xs
1320 MakePPPort: $(MINIPERL) $(CONFIGPM)
1321 $(MINIPERL) -I..\lib ..\mkppport
1324 -if exist $(MINIPERL) $(MINIPERL) -I..\lib ..\mkppport --clean
1326 #-------------------------------------------------------------------------------
1327 Extensions : buildext.pl $(PERLDEP) $(CONFIGPM)
1328 $(XCOPY) ..\*.h $(COREDIR)\*.*
1329 $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) --dynamic
1330 $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext --dynamic
1332 Extensions_reonly : buildext.pl $(PERLDEP) $(CONFIGPM)
1333 $(XCOPY) ..\*.h $(COREDIR)\*.*
1334 $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) --dynamic +re
1335 $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext --dynamic +re
1337 Extensions_static : buildext.pl $(PERLDEP) $(CONFIGPM)
1338 $(XCOPY) ..\*.h $(COREDIR)\*.*
1339 $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) --static
1340 $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext --static
1341 $(MINIPERL) -I..\lib buildext.pl --list-static-libs > Extensions_static
1344 -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) clean
1345 -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext clean
1347 Extensions_realclean :
1348 -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) realclean
1349 -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext realclean
1351 #-------------------------------------------------------------------------------
1355 $(PERLEXE) -I..\lib ..\installhtml --podroot=.. --htmldir=$(HTMLDIR) \
1356 --podpath=pod:lib:ext:utils --htmlroot="file://$(INST_HTML:s,:,|,)"\
1357 --libpod=perlfunc:perlguts:perlvar:perlrun:perlop --recurse
1359 # Note that this next section is parsed (and regenerated) by pod/buildtoc
1360 # so please check that script before making structural changes here
1361 utils: $(PERLEXE) $(X2P)
1362 cd ..\utils && $(MAKE) PERL=$(MINIPERL)
1363 copy ..\vms\perlvms.pod ..\pod\perlvms.pod
1364 copy ..\README.aix ..\pod\perlaix.pod
1365 copy ..\README.amiga ..\pod\perlamiga.pod
1366 copy ..\README.apollo ..\pod\perlapollo.pod
1367 copy ..\README.beos ..\pod\perlbeos.pod
1368 copy ..\README.bs2000 ..\pod\perlbs2000.pod
1369 copy ..\README.ce ..\pod\perlce.pod
1370 copy ..\README.cn ..\pod\perlcn.pod
1371 copy ..\README.cygwin ..\pod\perlcygwin.pod
1372 copy ..\README.dgux ..\pod\perldgux.pod
1373 copy ..\README.dos ..\pod\perldos.pod
1374 copy ..\README.epoc ..\pod\perlepoc.pod
1375 copy ..\README.freebsd ..\pod\perlfreebsd.pod
1376 copy ..\README.hpux ..\pod\perlhpux.pod
1377 copy ..\README.hurd ..\pod\perlhurd.pod
1378 copy ..\README.irix ..\pod\perlirix.pod
1379 copy ..\README.jp ..\pod\perljp.pod
1380 copy ..\README.ko ..\pod\perlko.pod
1381 copy ..\README.linux ..\pod\perllinux.pod
1382 copy ..\README.machten ..\pod\perlmachten.pod
1383 copy ..\README.macos ..\pod\perlmacos.pod
1384 copy ..\README.macosx ..\pod\perlmacosx.pod
1385 copy ..\README.mint ..\pod\perlmint.pod
1386 copy ..\README.mpeix ..\pod\perlmpeix.pod
1387 copy ..\README.netware ..\pod\perlnetware.pod
1388 copy ..\README.openbsd ..\pod\perlopenbsd.pod
1389 copy ..\README.os2 ..\pod\perlos2.pod
1390 copy ..\README.os390 ..\pod\perlos390.pod
1391 copy ..\README.os400 ..\pod\perlos400.pod
1392 copy ..\README.plan9 ..\pod\perlplan9.pod
1393 copy ..\README.qnx ..\pod\perlqnx.pod
1394 copy ..\README.riscos ..\pod\perlriscos.pod
1395 copy ..\README.solaris ..\pod\perlsolaris.pod
1396 copy ..\README.symbian ..\pod\perlsymbian.pod
1397 copy ..\README.tru64 ..\pod\perltru64.pod
1398 copy ..\README.tw ..\pod\perltw.pod
1399 copy ..\README.uts ..\pod\perluts.pod
1400 copy ..\README.vmesa ..\pod\perlvmesa.pod
1401 copy ..\README.vms ..\pod\perlvms.pod
1402 copy ..\README.vos ..\pod\perlvos.pod
1403 copy ..\README.win32 ..\pod\perlwin32.pod
1404 copy ..\pod\perl595delta.pod ..\pod\perldelta.pod
1405 cd ..\pod && $(MAKE) -f ..\win32\pod.mak converters
1406 cd ..\lib && $(PERLEXE) lib_pm.PL
1407 $(PERLEXE) $(PL2BAT) $(UTILS)
1409 # Note that the pod cleanup in this next section is parsed (and regenerated
1410 # by pod/buildtoc so please check that script before making changes here
1412 distclean: realclean
1413 -del /f $(MINIPERL) $(PERLEXE) $(PERLDLL) $(GLOBEXE) \
1414 $(PERLIMPLIB) ..\miniperl$(a) $(MINIMOD) \
1415 $(PERLEXESTATIC) $(PERLSTATICLIB)
1417 -del /f $(DYNALOADER).c
1418 -del /f $(EXTDIR)\DynaLoader\dl_win32.xs
1419 -del /f $(EXTDIR)\DynaLoader\DynaLoader.pm
1420 -del /f $(EXTDIR)\DynaLoader\XSLoader.pm
1421 -del /f $(LIBDIR)\Encode.pm $(LIBDIR)\encoding.pm $(LIBDIR)\Errno.pm
1422 -del /f $(LIBDIR)\Config.pod $(LIBDIR)\POSIX.pod $(LIBDIR)\threads.pm
1423 -del /f $(LIBDIR)\.exists $(LIBDIR)\attrs.pm $(LIBDIR)\DynaLoader.pm
1424 -del /f $(LIBDIR)\XSLoader.pm $(LIBDIR)\lib.pm
1425 -del /f $(LIBDIR)\Fcntl.pm $(LIBDIR)\IO.pm $(LIBDIR)\Opcode.pm
1426 -del /f $(LIBDIR)\ops.pm $(LIBDIR)\Safe.pm
1427 -del /f $(LIBDIR)\SDBM_File.pm $(LIBDIR)\Socket.pm $(LIBDIR)\POSIX.pm
1428 -del /f $(LIBDIR)\B.pm $(LIBDIR)\O.pm $(LIBDIR)\re.pm
1429 -del /f $(LIBDIR)\ByteLoader.pm
1430 -del /f $(LIBDIR)\Devel\Peek.pm $(LIBDIR)\Devel\DProf.pm
1431 -del /f $(LIBDIR)\Devel\PPPort.pm
1432 -del /f $(LIBDIR)\File\Glob.pm
1433 -del /f $(LIBDIR)\Storable.pm
1434 -del /f $(LIBDIR)\Digest\MD5.pm
1435 -del /f $(LIBDIR)\Digest\SHA.pm
1436 -del /f $(LIBDIR)\PerlIO\encoding.pm
1437 -del /f $(LIBDIR)\PerlIO\scalar.pm
1438 -del /f $(LIBDIR)\PerlIO\via.pm
1439 -del /f $(LIBDIR)\Sys\Hostname.pm
1440 -del /f $(LIBDIR)\Thread\Signal.pm $(LIBDIR)\Thread\Specific.pm
1441 -del /f $(LIBDIR)\threads\shared.pm
1442 -del /f $(LIBDIR)\Time\HiRes.pm
1443 -del /f $(LIBDIR)\Unicode\Normalize.pm
1444 -del /f $(LIBDIR)\Math\BigInt\FastCalc.pm
1445 -del /f $(LIBDIR)\Win32.pm
1446 -del /f $(LIBDIR)\Win32API\File.pm
1447 -del /f $(LIBDIR)\Win32API\File\cFile.pc
1448 -if exist $(LIBDIR)\B rmdir /s /q $(LIBDIR)\B
1449 -if exist $(LIBDIR)\Compress rmdir /s /q $(LIBDIR)\Compress
1450 -if exist $(LIBDIR)\Data rmdir /s /q $(LIBDIR)\Data
1451 -if exist $(LIBDIR)\Encode rmdir /s /q $(LIBDIR)\Encode
1452 -if exist $(LIBDIR)\Filter\Util rmdir /s /q $(LIBDIR)\Filter\Util
1453 -if exist $(LIBDIR)\Hash rmdir /s /q $(LIBDIR)\Hash
1454 -if exist $(LIBDIR)\IO\Compress rmdir /s /q $(LIBDIR)\IO\Compress
1455 -if exist $(LIBDIR)\IO\Socket rmdir /s /q $(LIBDIR)\IO\Socket
1456 -if exist $(LIBDIR)\IO\Uncompress rmdir /s /q $(LIBDIR)\IO\Uncompress
1457 -if exist $(LIBDIR)\List rmdir /s /q $(LIBDIR)\List
1458 -if exist $(LIBDIR)\MIME rmdir /s /q $(LIBDIR)\MIME
1459 -if exist $(LIBDIR)\Scalar rmdir /s /q $(LIBDIR)\Scalar
1460 -if exist $(LIBDIR)\Sys rmdir /s /q $(LIBDIR)\Sys
1461 -if exist $(LIBDIR)\threads rmdir /s /q $(LIBDIR)\threads
1462 -if exist $(LIBDIR)\XS rmdir /s /q $(LIBDIR)\XS
1463 -if exist $(LIBDIR)\Win32API rmdir /s /q $(LIBDIR)\Win32API
1464 -cd $(PODDIR) && del /f *.html *.bat checkpods \
1465 perlaix.pod perlamiga.pod perlapollo.pod perlbeos.pod \
1466 perlbs2000.pod perlce.pod perlcn.pod perlcygwin.pod \
1467 perldelta.pod perldgux.pod perldos.pod perlepoc.pod \
1468 perlfreebsd.pod perlhpux.pod perlhurd.pod perlirix.pod \
1469 perljp.pod perlko.pod perllinux.pod perlmachten.pod \
1470 perlmacos.pod perlmacosx.pod perlmint.pod perlmpeix.pod \
1471 perlnetware.pod perlopenbsd.pod perlos2.pod perlos390.pod \
1472 perlos400.pod perlplan9.pod perlqnx.pod perlriscos.pod \
1473 perlsolaris.pod perlsymbian.pod perltru64.pod perltw.pod \
1474 perluts.pod perlvmesa.pod perlvms.pod perlvms.pod perlvos.pod \
1476 pod2html pod2latex pod2man pod2text pod2usage \
1477 podchecker podselect
1478 -cd ..\utils && del /f h2ph splain perlbug pl2pm c2ph pstruct h2xs \
1479 perldoc perlivp dprofpp libnetcfg enc2xs piconv cpan *.bat \
1480 xsubpp instmodsh prove ptar ptardiff shasum corelist config_data
1481 -cd ..\x2p && del /f find2perl s2p psed *.bat
1482 -del /f ..\config.sh ..\splittree.pl perlmain.c dlutils.c config.h.new \
1487 -del /f $(PERLEXE_ICO) perl.base
1488 -cd .. && del /s *$(a) *.map *.pdb *.ilk *.tds *.bs *$(o) .exists pm_to_blib
1489 -cd $(EXTDIR) && del /s *.def Makefile Makefile.old
1490 -if exist $(AUTODIR) rmdir /s /q $(AUTODIR)
1491 -if exist $(COREDIR) rmdir /s /q $(COREDIR)
1492 -if exist pod2htmd.tmp del pod2htmd.tmp
1493 -if exist pod2htmi.tmp del pod2htmi.tmp
1494 -if exist $(HTMLDIR) rmdir /s /q $(HTMLDIR)
1496 install : all installbare installhtml
1498 installbare : $(RIGHTMAKE) utils
1499 $(PERLEXE) ..\installperl
1500 if exist $(WPERLEXE) $(XCOPY) $(WPERLEXE) $(INST_BIN)\*.*
1501 $(XCOPY) $(GLOBEXE) $(INST_BIN)\*.*
1502 if exist ..\perl*.pdb $(XCOPY) ..\perl*.pdb $(INST_BIN)\*.*
1503 if exist ..\x2p\a2p.pdb $(XCOPY) ..\x2p\a2p.pdb $(INST_BIN)\*.*
1504 $(XCOPY) bin\*.bat $(INST_SCRIPT)\*.*
1507 $(RCOPY) $(HTMLDIR)\*.* $(INST_HTML)\*.*
1509 inst_lib : $(CONFIGPM)
1510 copy splittree.pl ..
1511 $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR)
1512 $(RCOPY) ..\lib $(INST_LIB)\*.*
1514 $(UNIDATAFILES) .UPDATEALL : $(MINIPERL) $(CONFIGPM) ..\lib\unicore\mktables
1515 cd ..\lib\unicore && \
1516 ..\$(MINIPERL) -I.. mktables
1518 minitest : $(MINIPERL) $(GLOBEXE) $(CONFIGPM) $(UNIDATAFILES) utils
1519 $(XCOPY) $(MINIPERL) ..\t\$(NULL)
1520 if exist ..\t\perl.exe del /f ..\t\perl.exe
1521 rename ..\t\miniperl.exe perl.exe
1522 .IF "$(CCTYPE)" == "BORLAND"
1523 $(XCOPY) $(GLOBBAT) ..\t\$(NULL)
1525 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1529 $(MINIPERL) -I..\lib harness base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t
1531 test-prep : all utils
1532 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1533 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1534 .IF "$(CCTYPE)" == "BORLAND"
1535 $(XCOPY) $(GLOBBAT) ..\t\$(NULL)
1537 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1540 test : $(RIGHTMAKE) test-prep
1541 cd ..\t && $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES)
1543 test-reonly : reonly utils
1544 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1545 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1546 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1548 $(PERLEXE) -I..\lib harness $(OPT) -re \bpat\b \breg \bre\b $(EXTRA) && \
1552 cd .. && regen.pl && cd win32
1555 cd .. && regcomp.pl && cd win32
1557 test-notty : test-prep
1558 set PERL_SKIP_TTY_TEST=1 && \
1559 cd ..\t && $(PERLEXE) -I.\lib harness $(TEST_SWITCHES) $(TEST_FILES)
1561 _test : $(RIGHTMAKE)
1562 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1563 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1564 .IF "$(CCTYPE)" == "BORLAND"
1565 $(XCOPY) $(GLOBBAT) ..\t\$(NULL)
1567 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1569 cd ..\t && $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES)
1572 -@erase miniperlmain$(o)
1574 -@erase perlglob$(o)
1575 -@erase perlmain$(o)
1576 -@erase perlmainst$(o)
1582 -@erase $(PERLEXESTATIC)
1583 -@erase $(PERLSTATICLIB)
1586 -if exist $(MINIDIR) rmdir /s /q $(MINIDIR)
1587 -if exist $(UNIDATADIR1) rmdir /s /q $(UNIDATADIR1)
1588 -if exist $(UNIDATADIR2) rmdir /s /q $(UNIDATADIR2)
1589 -@erase $(UNIDATAFILES)
1590 -@erase $(WIN32_OBJ)
1593 -@erase ..\*$(o) ..\*$(a) ..\*.exp *$(o) *$(a) *.exp *.res
1594 -@erase ..\t\*.exe ..\t\*.dll ..\t\*.bat
1595 -@erase ..\x2p\*.exe ..\x2p\*.bat
1599 -@erase Extensions_static
1601 clean : Extensions_clean _clean
1603 realclean : Extensions_realclean MakePPPort_clean _clean
1605 # Handy way to run perlbug -ok without having to install and run the
1606 # installed perlbug. We don't re-run the tests here - we trust the user.
1607 # Please *don't* use this unless all tests pass.
1608 # If you want to report test failures, use "dmake nok" instead.
1610 $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)"
1613 $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)" -F perl.ok
1616 $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)"
1619 $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)" -F perl.nok