This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Merge the two 5134delta entries for uniary functions
[perl5.git] / win32 / makefile.mk
1 #
2 # Makefile to build perl on Windows using DMAKE.
3 # Supported compilers:
4 #       Microsoft Visual C++ 6.0 or later
5 #       Borland C++ 5.02 or later
6 #       MinGW with gcc-3.2 or later
7 #       Windows SDK 64-bit compiler and tools **experimental**
8 #
9 # This is set up to build a perl.exe that runs off a shared library
10 # (perl513.dll).  Also makes individual DLLs for the XS extensions.
11 #
12
13 ##
14 ## Make sure you read README.win32 *before* you mess with anything here!
15 ##
16
17 ##
18 ## Build configuration.  Edit the values below to suit your needs.
19 ##
20
21 #
22 # Set these to wherever you want "dmake install" to put your
23 # newly built perl.
24 #
25 INST_DRV        *= c:
26 INST_TOP        *= $(INST_DRV)\perl
27
28 #
29 # Uncomment if you want to build a 32-bit Perl using a 32-bit compiler
30 # on a 64-bit version of Windows.
31 #WIN64          *= undef
32
33 #
34 # Comment this out if you DON'T want your perl installation to be versioned.
35 # This means that the new installation will overwrite any files from the
36 # old installation at the same INST_TOP location.  Leaving it enabled is
37 # the safest route, as perl adds the extra version directory to all the
38 # locations it installs files to.  If you disable it, an alternative
39 # versioned installation can be obtained by setting INST_TOP above to a
40 # path that includes an arbitrary version string.
41 #
42 #INST_VER       *= \5.13.4
43
44 #
45 # Comment this out if you DON'T want your perl installation to have
46 # architecture specific components.  This means that architecture-
47 # specific files will be installed along with the architecture-neutral
48 # files.  Leaving it enabled is safer and more flexible, in case you
49 # want to build multiple flavors of perl and install them together in
50 # the same location.  Commenting it out gives you a simpler
51 # installation that is easier to understand for beginners.
52 #
53 #INST_ARCH      *= \$(ARCHNAME)
54
55 #
56 # Uncomment this if you want perl to run
57 #       $Config{sitelibexp}\sitecustomize.pl
58 # before anything else.  This script can then be set up, for example,
59 # to add additional entries to @INC.
60 #
61 #USE_SITECUST   *= define
62
63 #
64 # uncomment to enable multiple interpreters.  This is need for fork()
65 # emulation and for thread support.
66 #
67 USE_MULTI       *= define
68
69 #
70 # Interpreter cloning/threads; now reasonably complete.
71 # This should be enabled to get the fork() emulation.  
72 # This needs USE_MULTI above.
73 #
74 USE_ITHREADS    *= define
75
76 #
77 # uncomment to enable the implicit "host" layer for all system calls
78 # made by perl.  This needs USE_MULTI above.  
79 # This is also needed to get fork().
80 #
81 USE_IMP_SYS     *= define
82
83 #
84 # Comment out next assign to disable perl's I/O subsystem and use compiler's 
85 # stdio for IO - depending on your compiler vendor and run time library you may 
86 # then get a number of fails from make test i.e. bugs - complain to them not us ;-). 
87 # You will also be unable to take full advantage of perl5.8's support for multiple 
88 # encodings and may see lower IO performance. You have been warned.
89 USE_PERLIO      *= define
90
91 #
92 # Comment this out if you don't want to enable large file support for
93 # some reason.  Should normally only be changed to maintain compatibility
94 # with an older release of perl.
95 USE_LARGE_FILES *= define
96
97 #
98 # uncomment exactly one of the following
99 #
100 # Visual C++ 6.x (aka Visual C++ 98)
101 #CCTYPE         *= MSVC60
102 # Visual C++ Toolkit 2003 (aka Visual C++ 7.x) (free command-line tools)
103 #CCTYPE         *= MSVC70FREE
104 # Visual C++ .NET 2003 (aka Visual C++ 7.x) (full version)
105 #CCTYPE         *= MSVC70
106 # Visual C++ 2005 Express Edition (aka Visual C++ 8.x) (free version)
107 #CCTYPE         *= MSVC80FREE
108 # Visual C++ 2005 (aka Visual C++ 8.x) (full version)
109 #CCTYPE         *= MSVC80
110 # Visual C++ 2008 Express Edition (aka Visual C++ 9.x) (free version)
111 #CCTYPE         *= MSVC90FREE
112 # Visual C++ 2008 (aka Visual C++ 9.x) (full version)
113 #CCTYPE         *= MSVC90
114 # Borland 5.02 or later
115 #CCTYPE         *= BORLAND
116 # MinGW or mingw-w64 with gcc-3.2 or later
117 CCTYPE          *= GCC
118
119 #
120 # uncomment this if your Borland compiler is older than v5.4.
121 #BCCOLD         *= define
122 #
123 # uncomment this if you want to use Borland's VCL as your CRT
124 #BCCVCL         *= define
125
126 #
127 # uncomment this if you are compiling under Windows 95/98 and command.com
128 # (not needed if you're running under 4DOS/NT 6.01 or later)
129 #IS_WIN95       *= define
130
131 #
132 # uncomment next line if you want debug version of perl (big,slow)
133 # If not enabled, we automatically try to use maximum optimization
134 # with all compilers that are known to have a working optimizer.
135 #
136 #CFG            *= Debug
137
138 #
139 # uncomment to enable linking with setargv.obj under the Visual C
140 # compiler. Setting this options enables perl to expand wildcards in
141 # arguments, but it may be harder to use alternate methods like
142 # File::DosGlob that are more powerful.  This option is supported only with
143 # Visual C.
144 #
145 #USE_SETARGV    *= define
146
147 #
148 # if you want to have the crypt() builtin function implemented, leave this or
149 # CRYPT_LIB uncommented.  The fcrypt.c file named here contains a suitable
150 # version of des_fcrypt().
151 #
152 CRYPT_SRC       *= fcrypt.c
153
154 #
155 # if you didn't set CRYPT_SRC and if you have des_fcrypt() available in a
156 # library, uncomment this, and make sure the library exists (see README.win32)
157 # Specify the full pathname of the library.
158 #
159 #CRYPT_LIB      *= fcrypt.lib
160
161 #
162 # set this if you wish to use perl's malloc
163 # WARNING: Turning this on/off WILL break binary compatibility with extensions
164 # you may have compiled with/without it.  Be prepared to recompile all
165 # extensions if you change the default.  Currently, this cannot be enabled
166 # if you ask for USE_IMP_SYS above.
167 #
168 #PERL_MALLOC    *= define
169
170 #
171 # set this to enable debugging mstats
172 # This must be enabled to use the Devel::Peek::mstat() function.  This cannot
173 # be enabled without PERL_MALLOC as well.
174 #
175 #DEBUG_MSTATS   *= define
176
177 #
178 # set this to additionally provide a statically linked perl-static.exe.
179 # Note that dynamic loading will not work with this perl, so you must
180 # include required modules statically using the STATIC_EXT or ALL_STATIC
181 # variables below. A static library perl513s.lib will also be created.
182 # Ordinary perl.exe is not affected by this option.
183 #
184 #BUILD_STATIC   *= define
185
186 #
187 # in addition to BUILD_STATIC the option ALL_STATIC makes *every*
188 # extension get statically built
189 # This will result in a very large perl executable, but the main purpose
190 # is to have proper linking set so as to be able to create miscellaneous
191 # executables with different built-in extensions
192 #
193 #ALL_STATIC     *= define
194
195 #
196 # set the install locations of the compiler include/libraries
197 # Running VCVARS32.BAT is *required* when using Visual C.
198 # Some versions of Visual C don't define MSVCDIR in the environment,
199 # so you may have to set CCHOME explicitly (spaces in the path name should
200 # not be quoted)
201 #
202 .IF "$(CCTYPE)" == "BORLAND"
203 CCHOME          *= C:\Borland\BCC55
204 .ELIF "$(CCTYPE)" == "GCC"
205 CCHOME          *= C:\MinGW
206 .ELSE
207 CCHOME          *= $(MSVCDIR)
208 .ENDIF
209
210 #
211 # If building with gcc-4.x.x (or x86_64-w64-mingw32-gcc-4.x.x), then
212 # uncomment  the following assignment to GCC_4XX, make sure that CCHOME
213 # has been set correctly above, and uncomment the appropriate
214 # GCCHELPERDLL line.
215 # The name of the dll can change, depending upon which vendor has supplied
216 # your 4.x.x compiler, and upon the values of "x".
217 # (The dll will be in your mingw/bin folder, so check there if you're
218 # unsure about the correct name.)
219 # Without these corrections, the op/taint.t test script will fail.
220 #
221 #GCC_4XX                *= define
222 #GCCHELPERDLL   *= $(CCHOME)\bin\libgcc_s_sjlj-1.dll
223 #GCCHELPERDLL   *= $(CCHOME)\bin\libgcc_s_dw2-1.dll
224 #GCCHELPERDLL   *= $(CCHOME)\bin\libgcc_s_1.dll
225
226 #
227 # uncomment this if you are using x86_64-w64-mingw32 cross-compiler
228 # ie if your gcc executable is called 'x86_64-w64-mingw32-gcc'
229 # instead of the usual 'gcc'.
230 #
231 #GCCCROSS       *= define
232
233 #
234 # Following sets $Config{incpath} and $Config{libpth}
235 #
236
237 .IF "$(GCCCROSS)" == "define"
238 CCINCDIR *= $(CCHOME)\mingw\include
239 CCLIBDIR *= $(CCHOME)\mingw\lib
240 .ELSE
241 CCINCDIR *= $(CCHOME)\include
242 CCLIBDIR *= $(CCHOME)\lib
243 .ENDIF
244
245 #
246 # Additional compiler flags can be specified here.
247 #
248 BUILDOPT        *= $(BUILDOPTEXTRA)
249
250 #
251 # Adding -DPERL_HASH_SEED_EXPLICIT will disable randomization of Perl's
252 # internal hash function unless the PERL_HASH_SEED environment variable is set.
253 # Alternatively, adding -DNO_HASH_SEED will completely disable the
254 # randomization feature. 
255 # The latter is required to maintain binary compatibility with Perl 5.8.0.
256 #
257 #BUILDOPT       += -DPERL_HASH_SEED_EXPLICIT
258 #BUILDOPT       += -DNO_HASH_SEED
259
260 #
261 # This should normally be disabled.  Enabling it will disable the File::Glob
262 # implementation of CORE::glob.
263 #
264 #BUILDOPT       += -DPERL_EXTERNAL_GLOB
265
266 #
267 # This should normally be disabled.  Enabling it causes perl to read scripts
268 # in text mode (which is the 5.005 behavior) and will break ByteLoader.
269 #
270 #BUILDOPT       += -DPERL_TEXTMODE_SCRIPTS
271
272 #
273 # specify semicolon-separated list of extra directories that modules will
274 # look for libraries (spaces in path names need not be quoted)
275 #
276 EXTRALIBDIRS    *=
277
278 #
279 # set this to point to cmd.exe (only needed if you use some
280 # alternate shell that doesn't grok cmd.exe style commands)
281 #
282 #SHELL          *= g:\winnt\system32\cmd.exe
283
284 #
285 # set this to your email address (perl will guess a value from
286 # from your loginname and your hostname, which may not be right)
287 #
288 #EMAIL          *=
289
290 ##
291 ## Build configuration ends.
292 ##
293
294 ##################### CHANGE THESE ONLY IF YOU MUST #####################
295
296 .IF "$(CRYPT_SRC)$(CRYPT_LIB)" == ""
297 D_CRYPT         = undef
298 .ELSE
299 D_CRYPT         = define
300 CRYPT_FLAG      = -DHAVE_DES_FCRYPT
301 .ENDIF
302
303 PERL_MALLOC     *= undef
304 DEBUG_MSTATS    *= undef
305
306 USE_SITECUST    *= undef
307 USE_MULTI       *= undef
308 USE_ITHREADS    *= undef
309 USE_IMP_SYS     *= undef
310 USE_PERLIO      *= undef
311 USE_LARGE_FILES *= undef
312
313 .IF "$(USE_IMP_SYS)" == "define"
314 PERL_MALLOC     = undef
315 .ENDIF
316
317 .IF "$(PERL_MALLOC)" == "undef"
318 DEBUG_MSTATS    = undef
319 .ENDIF
320
321 .IF "$(DEBUG_MSTATS)" == "define"
322 BUILDOPT        += -DPERL_DEBUGGING_MSTATS
323 .ENDIF
324
325 .IF "$(USE_IMP_SYS) $(USE_MULTI)" == "define undef"
326 USE_MULTI       != define
327 .ENDIF
328
329 .IF "$(USE_ITHREADS) $(USE_MULTI)" == "define undef"
330 USE_MULTI       != define
331 .ENDIF
332
333 .IF "$(USE_SITECUST)" == "define"
334 BUILDOPT        += -DUSE_SITECUSTOMIZE
335 .ENDIF
336
337 .IF "$(USE_MULTI)" != "undef"
338 BUILDOPT        += -DPERL_IMPLICIT_CONTEXT
339 .ENDIF
340
341 .IF "$(USE_IMP_SYS)" != "undef"
342 BUILDOPT        += -DPERL_IMPLICIT_SYS
343 .ENDIF
344
345 .IMPORT .IGNORE : PROCESSOR_ARCHITECTURE PROCESSOR_ARCHITEW6432 WIN64
346
347 PROCESSOR_ARCHITECTURE *= x86
348
349 .IF "$(WIN64)" == ""
350 # When we are running from a 32bit cmd.exe on AMD64 then
351 # PROCESSOR_ARCHITECTURE is set to x86 and PROCESSOR_ARCHITEW6432
352 # is set to AMD64
353 .IF "$(PROCESSOR_ARCHITEW6432)" != ""
354 PROCESSOR_ARCHITECTURE  != $(PROCESSOR_ARCHITEW6432)
355 WIN64                   = define
356 .ELIF "$(PROCESSOR_ARCHITECTURE)" == "AMD64" || "$(PROCESSOR_ARCHITECTURE)" == "IA64"
357 WIN64                   = define
358 .ELSE
359 WIN64                   = undef
360 .ENDIF
361 .ENDIF
362
363 ARCHITECTURE = $(PROCESSOR_ARCHITECTURE)
364 .IF "$(ARCHITECTURE)" == "AMD64"
365 ARCHITECTURE    = x64
366 .ENDIF
367 .IF "$(ARCHITECTURE)" == "IA64"
368 ARCHITECTURE    = ia64
369 .ENDIF
370
371 .IF "$(USE_MULTI)" == "define"
372 ARCHNAME        = MSWin32-$(ARCHITECTURE)-multi
373 .ELSE
374 .IF "$(USE_PERLIO)" == "define"
375 ARCHNAME        = MSWin32-$(ARCHITECTURE)-perlio
376 .ELSE
377 ARCHNAME        = MSWin32-$(ARCHITECTURE)
378 .ENDIF
379 .ENDIF
380
381 .IF "$(USE_ITHREADS)" == "define"
382 ARCHNAME        !:= $(ARCHNAME)-thread
383 .ENDIF
384
385 # Visual C++ 98, .NET 2003, 2005 and 2008 specific.
386 # VC++ 6.x, 7.x, 8.x and 9.x can load DLL's on demand.  Makes the test suite run
387 # in about 10% less time.  (The free version of 7.x can't do this, but the free
388 # versions of 8.x and 9.x can.)
389 .IF "$(CCTYPE)" == "MSVC60" || "$(CCTYPE)" == "MSVC70"     || \
390     "$(CCTYPE)" == "MSVC80" || "$(CCTYPE)" == "MSVC80FREE" ||
391     "$(CCTYPE)" == "MSVC90" || "$(CCTYPE)" == "MSVC90FREE"
392 DELAYLOAD       *= -DELAYLOAD:ws2_32.dll delayimp.lib
393 .ENDIF
394
395 # Visual C++ 2005 and 2008 (VC++ 8.x and 9.x) create manifest files for EXEs and
396 # DLLs. These either need copying everywhere with the binaries, or else need
397 # embedding in them otherwise MSVCR80.dll or MSVCR90.dll won't be found. For
398 # simplicity, embed them if they exist (and delete them afterwards so that they
399 # don't get installed too).
400 EMBED_EXE_MANI  = if exist $@.manifest mt -nologo -manifest $@.manifest -outputresource:$@;1 && \
401                   if exist $@.manifest del $@.manifest
402 EMBED_DLL_MANI  = if exist $@.manifest mt -nologo -manifest $@.manifest -outputresource:$@;2 && \
403                   if exist $@.manifest del $@.manifest
404
405 ARCHDIR         = ..\lib\$(ARCHNAME)
406 COREDIR         = ..\lib\CORE
407 AUTODIR         = ..\lib\auto
408 LIBDIR          = ..\lib
409 EXTDIR          = ..\ext
410 DISTDIR         = ..\dist
411 CPANDIR         = ..\cpan
412 PODDIR          = ..\pod
413 EXTUTILSDIR     = $(LIBDIR)\ExtUtils
414 HTMLDIR         = .\html
415
416 #
417 INST_SCRIPT     = $(INST_TOP)$(INST_VER)\bin
418 INST_BIN        = $(INST_SCRIPT)$(INST_ARCH)
419 INST_LIB        = $(INST_TOP)$(INST_VER)\lib
420 INST_ARCHLIB    = $(INST_LIB)$(INST_ARCH)
421 INST_COREDIR    = $(INST_ARCHLIB)\CORE
422 INST_HTML       = $(INST_TOP)$(INST_VER)\html
423
424 #
425 # Programs to compile, build .lib files and link
426 #
427
428 .USESHELL :
429
430 .IF "$(CCTYPE)" == "BORLAND"
431
432 CC              = bcc32
433 .IF "$(BCCOLD)" != "define"
434 LINK32          = ilink32
435 .ELSE
436 LINK32          = tlink32
437 .ENDIF
438 LIB32           = tlib /a /P128
439 IMPLIB          = implib -c
440 RSC             = brcc32
441
442 #
443 # Options
444 #
445 INCLUDES        = -I$(COREDIR) -I.\include -I. -I.. -I"$(CCINCDIR)"
446 #PCHFLAGS       = -H -Hc -H=c:\temp\bcmoduls.pch
447 DEFINES         = -DWIN32 $(CRYPT_FLAG)
448 LOCDEFS         = -DPERLDLL -DPERL_CORE
449 SUBSYS          = console
450 CXX_FLAG        = -P
451
452 LIBC            = cw32mti.lib
453
454 # same libs as MSVC, except Borland doesn't have oldnames.lib
455 LIBFILES        = $(CRYPT_LIB) \
456                 kernel32.lib user32.lib gdi32.lib winspool.lib \
457                 comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \
458                 netapi32.lib uuid.lib ws2_32.lib mpr.lib winmm.lib \
459                 version.lib odbc32.lib odbccp32.lib comctl32.lib \
460                 import32.lib $(LIBC)
461
462 .IF  "$(CFG)" == "Debug"
463 OPTIMIZE        = -v -D_RTLDLL -DDEBUGGING
464 LINK_DBG        = -v
465 .ELSE
466 OPTIMIZE        = -O2 -D_RTLDLL
467 LINK_DBG        =
468 .ENDIF
469
470 EXTRACFLAGS     =
471 CFLAGS          = -w -g0 -tWM -tWD $(INCLUDES) $(DEFINES) $(LOCDEFS) \
472                 $(PCHFLAGS) $(OPTIMIZE)
473 LINK_FLAGS      = $(LINK_DBG) -x -L"$(INST_COREDIR)" -L"$(CCLIBDIR)" \
474                 -L"$(CCLIBDIR)\PSDK"
475 OBJOUT_FLAG     = -o
476 EXEOUT_FLAG     = -e
477 LIBOUT_FLAG     =
478 .IF "$(BCCOLD)" != "define"
479 LINK_FLAGS      += -Gn
480 DEFINES  += -D_MT -D__USELOCALES__ -D_WIN32_WINNT=0x0410
481 .END
482 .IF "$(BCCVCL)" == "define"
483 LIBC            = cp32mti.lib vcl.lib vcl50.lib vclx50.lib vcle50.lib
484 LINK_FLAGS      += -L"$(CCLIBDIR)\Release"
485 .END
486
487
488 .ELIF "$(CCTYPE)" == "GCC"
489
490 .IF "$(GCCCROSS)" == "define"
491 ARCHPREFIX      = x86_64-w64-mingw32-
492 .ENDIF
493
494 CC              = $(ARCHPREFIX)gcc
495 LINK32          = $(ARCHPREFIX)g++
496 LIB32           = $(ARCHPREFIX)ar rc
497 IMPLIB          = $(ARCHPREFIX)dlltool
498 RSC             = $(ARCHPREFIX)windres
499
500 i = .i
501 o = .o
502 a = .a
503
504 #
505 # Options
506 #
507
508 INCLUDES        = -I.\include -I. -I.. -I$(COREDIR)
509 DEFINES         = -DWIN32 $(CRYPT_FLAG)
510 .IF "$(WIN64)" == "define"
511 DEFINES         += -DWIN64 -DCONSERVATIVE
512 .ENDIF
513 LOCDEFS         = -DPERLDLL -DPERL_CORE
514 SUBSYS          = console
515 CXX_FLAG        = -xc++
516
517 # Current releases of MinGW 5.1.4 (as of 11-Aug-2009) will fail to link
518 # correctly if -lmsvcrt is specified explicitly.
519 LIBC            =
520 #LIBC           = -lmsvcrt
521
522 # same libs as MSVC
523 LIBFILES        = $(CRYPT_LIB) $(LIBC) \
524                   -lmoldname -lkernel32 -luser32 -lgdi32 \
525                   -lwinspool -lcomdlg32 -ladvapi32 -lshell32 -lole32 \
526                   -loleaut32 -lnetapi32 -luuid -lws2_32 -lmpr \
527                   -lwinmm -lversion -lodbc32 -lodbccp32 -lcomctl32
528
529 .IF  "$(CFG)" == "Debug"
530 OPTIMIZE        = -g -O2 -DDEBUGGING
531 LINK_DBG        = -g
532 .ELSE
533 OPTIMIZE        = -s -O2
534 LINK_DBG        = -s
535 .ENDIF
536
537 EXTRACFLAGS     =
538 CFLAGS          = $(INCLUDES) $(DEFINES) $(LOCDEFS) $(OPTIMIZE)
539 LINK_FLAGS      = $(LINK_DBG) -L"$(INST_COREDIR)" -L"$(CCLIBDIR)"
540 OBJOUT_FLAG     = -o
541 EXEOUT_FLAG     = -o
542 LIBOUT_FLAG     =
543
544 # NOTE: we assume that GCC uses MSVCRT.DLL
545 # See comments about PERL_MSVCRT_READFIX in the "cl" compiler section below.
546 BUILDOPT        += -fno-strict-aliasing -mms-bitfields -DPERL_MSVCRT_READFIX
547
548 .ELSE
549
550 CC              = cl
551 LINK32          = link
552 LIB32           = $(LINK32) -lib
553 RSC             = rc
554
555 #
556 # Options
557 #
558
559 INCLUDES        = -I$(COREDIR) -I.\include -I. -I..
560 #PCHFLAGS       = -Fpc:\temp\vcmoduls.pch -YX
561 DEFINES         = -DWIN32 -D_CONSOLE -DNO_STRICT $(CRYPT_FLAG)
562 LOCDEFS         = -DPERLDLL -DPERL_CORE
563 SUBSYS          = console
564 CXX_FLAG        = -TP -EHsc
565
566 LIBC    = msvcrt.lib
567
568 .IF  "$(CFG)" == "Debug"
569 OPTIMIZE        = -O1 -MD -Zi -DDEBUGGING
570 LINK_DBG        = -debug
571 .ELSE
572 OPTIMIZE        = -MD -Zi -DNDEBUG
573 # we enable debug symbols in release builds also
574 LINK_DBG        = -debug -opt:ref,icf
575 # you may want to enable this if you want COFF symbols in the executables
576 # in addition to the PDB symbols.  The default Dr. Watson that ships with
577 # Windows can use the the former but not latter.  The free WinDbg can be
578 # installed to get better stack traces from just the PDB symbols, so we
579 # avoid the bloat of COFF symbols by default.
580 #LINK_DBG       = $(LINK_DBG) -debugtype:both
581 .IF "$(WIN64)" == "define"
582 # enable Whole Program Optimizations (WPO) and Link Time Code Generation (LTCG)
583 OPTIMIZE        += -Ox -GL
584 LINK_DBG        += -ltcg
585 .ELSE
586 # -O1 yields smaller code, which turns out to be faster than -O2 on x86
587 OPTIMIZE        += -O1
588 #OPTIMIZE       += -O2
589 .ENDIF
590 .ENDIF
591
592 .IF "$(WIN64)" == "define"
593 DEFINES         += -DWIN64 -DCONSERVATIVE
594 OPTIMIZE        += -Wp64 -fp:precise
595 .ENDIF
596
597 # For now, silence VC++ 8.x's and 9.x's warnings about "unsafe" CRT functions
598 # and POSIX CRT function names being deprecated.
599 .IF "$(CCTYPE)" == "MSVC80" || "$(CCTYPE)" == "MSVC80FREE" || \
600     "$(CCTYPE)" == "MSVC90" || "$(CCTYPE)" == "MSVC90FREE"
601 DEFINES         += -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE
602 .ENDIF
603
604 # Use the MSVCRT read() fix only when using VC++ 6.x or earlier. Later
605 # versions use MSVCR70.dll, MSVCR71.dll, etc, which do not require the
606 # fix.
607 .IF "$(CCTYPE)" == "MSVC60" 
608 BUILDOPT        += -DPERL_MSVCRT_READFIX
609 .ENDIF
610
611 LIBBASEFILES    = $(CRYPT_LIB) \
612                 oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.lib \
613                 comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \
614                 netapi32.lib uuid.lib ws2_32.lib mpr.lib winmm.lib \
615                 version.lib odbc32.lib odbccp32.lib comctl32.lib
616
617 # The 64 bit Platform SDK compilers contain a runtime library that doesn't
618 # include the buffer overrun verification code used by the /GS switch.
619 # Since the code links against libraries that are compiled with /GS, this
620 # "security cookie verification" must be included via bufferoverlow.lib.
621 .IF "$(WIN64)" == "define"
622 LIBBASEFILES    += bufferoverflowU.lib
623 .ENDIF
624
625 LIBFILES        = $(LIBBASEFILES) $(LIBC)
626
627 EXTRACFLAGS     = -nologo -GF -W3
628 CFLAGS          = $(EXTRACFLAGS) $(INCLUDES) $(DEFINES) $(LOCDEFS) \
629                 $(PCHFLAGS) $(OPTIMIZE)
630 LINK_FLAGS      = -nologo -nodefaultlib $(LINK_DBG) \
631                 -libpath:"$(INST_COREDIR)" \
632                 -machine:$(PROCESSOR_ARCHITECTURE)
633 LIB_FLAGS       = -nologo
634 OBJOUT_FLAG     = -Fo
635 EXEOUT_FLAG     = -Fe
636 LIBOUT_FLAG     = /out:
637
638 .ENDIF
639
640 CFLAGS_O        = $(CFLAGS) $(BUILDOPT)
641
642 .IF "$(CCTYPE)" == "MSVC80" || "$(CCTYPE)" == "MSVC80FREE" || \
643     "$(CCTYPE)" == "MSVC90" || "$(CCTYPE)" == "MSVC90FREE"
644 LINK_FLAGS      += "/manifestdependency:type='Win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'"
645 .ELSE
646 RSC_FLAGS       = -DINCLUDE_MANIFEST
647 .ENDIF
648
649
650 # used to allow local linking flags that are not propogated into Config.pm,
651 # currently unused
652 #   -- BKS, 12-12-1999
653 PRIV_LINK_FLAGS *=
654 BLINK_FLAGS     = $(PRIV_LINK_FLAGS) $(LINK_FLAGS)
655
656 #################### do not edit below this line #######################
657 ############# NO USER-SERVICEABLE PARTS BEYOND THIS POINT ##############
658
659 # Some old dmakes (including Sarathy's one at
660 # http://search.cpan.org/CPAN/authors/id/G/GS/GSAR/dmake-4.1pl1-win32.zip)
661 # don't support logical OR (||) or logical AND (&&) in conditional
662 # expressions and hence don't process this makefile correctly. Determine
663 # whether this is the case so that we can give the user an error message.
664 .IF 1 == 1 || 1 == 1
665 NEWDMAKE = define
666 .ELSE
667 NEWDMAKE = undef
668 .ENDIF
669
670 o *= .obj
671 a *= .lib
672
673 LKPRE           = INPUT (
674 LKPOST          = )
675
676 #
677 # Rules
678 #
679
680 .SUFFIXES : .c .i $(o) .dll $(a) .exe .rc .res
681
682 .c$(o):
683         $(CC) -c $(null,$(<:d) $(NULL) -I$(<:d)) $(CFLAGS_O) $(OBJOUT_FLAG)$@ $<
684
685 .c.i:
686         $(CC) -c $(null,$(<:d) $(NULL) -I$(<:d)) $(CFLAGS_O) -E $< >$@
687
688 .y.c:
689         $(NOOP)
690
691 $(o).dll:
692 .IF "$(CCTYPE)" == "BORLAND"
693         $(LINK32) -Tpd -ap $(BLINK_FLAGS) c0d32$(o) $<,$@,,$(LIBFILES),$(*B).def
694         $(IMPLIB) $(*B).lib $@
695 .ELIF "$(CCTYPE)" == "GCC"
696         $(LINK32) -o $@ $(BLINK_FLAGS) $< $(LIBFILES)
697         $(IMPLIB) --input-def $(*B).def --output-lib $(*B).a $@
698 .ELSE
699         $(LINK32) -dll -subsystem:windows -implib:$(*B).lib -def:$(*B).def \
700             -out:$@ $(BLINK_FLAGS) $(LIBFILES) $< $(LIBPERL)
701         $(EMBED_DLL_MANI)
702 .ENDIF
703
704 .rc.res:
705 .IF "$(CCTYPE)" == "GCC"
706         $(RSC) --use-temp-file --include-dir=. --include-dir=.. -O COFF -D INCLUDE_MANIFEST -i $< -o $@
707 .ELSE
708         $(RSC) -i.. -DINCLUDE_MANIFEST $<
709 .ENDIF
710
711 #
712 # various targets
713 MINIPERL        = ..\miniperl.exe
714 MINIDIR         = .\mini
715 PERLEXE         = ..\perl.exe
716 WPERLEXE        = ..\wperl.exe
717 PERLEXESTATIC   = ..\perl-static.exe
718 GLOBEXE         = ..\perlglob.exe
719 CONFIGPM        = ..\lib\Config.pm ..\lib\Config_heavy.pl
720 MINIMOD         = ..\lib\ExtUtils\Miniperl.pm
721 X2P             = ..\x2p\a2p.exe
722 GENUUDMAP       = ..\generate_uudmap.exe
723 .IF "$(BUILD_STATIC)" == "define"
724 PERLSTATIC      = static
725 .ELSE
726 PERLSTATIC      = 
727 .ENDIF
728
729 # Unicode data files generated by mktables
730 UNIDATAFILES     = ..\lib\unicore\Decomposition.pl ..\lib\unicore\TestProp.pl \
731                    ..\lib\unicore\CombiningClass.pl ..\lib\unicore\Name.pl \
732                    ..\lib\unicore\Heavy.pl ..\lib\unicore\mktables.lst
733
734 # Directories of Unicode data files generated by mktables
735 UNIDATADIR1     = ..\lib\unicore\To
736 UNIDATADIR2     = ..\lib\unicore\lib
737
738 PERLEXE_MANIFEST= .\perlexe.manifest
739 PERLEXE_ICO     = .\perlexe.ico
740 PERLEXE_RES     = .\perlexe.res
741 PERLDLL_RES     =
742
743 # Nominate a target which causes extensions to be re-built
744 # This used to be $(PERLEXE), but at worst it is the .dll that they depend
745 # on and really only the interface - i.e. the .def file used to export symbols
746 # from the .dll
747 PERLDEP = perldll.def
748
749
750 PL2BAT          = bin\pl2bat.pl
751 GLOBBAT         = bin\perlglob.bat
752
753 UTILS           =                       \
754                 ..\utils\h2ph           \
755                 ..\utils\splain         \
756                 ..\utils\dprofpp        \
757                 ..\utils\perlbug        \
758                 ..\utils\pl2pm          \
759                 ..\utils\c2ph           \
760                 ..\utils\pstruct        \
761                 ..\utils\h2xs           \
762                 ..\utils\perldoc        \
763                 ..\utils\perlivp        \
764                 ..\utils\libnetcfg      \
765                 ..\utils\enc2xs         \
766                 ..\utils\piconv         \
767                 ..\utils\config_data    \
768                 ..\utils\corelist       \
769                 ..\utils\cpan           \
770                 ..\utils\xsubpp         \
771                 ..\utils\prove          \
772                 ..\utils\ptar           \
773                 ..\utils\ptardiff       \
774                 ..\utils\cpanp-run-perl \
775                 ..\utils\cpanp  \
776                 ..\utils\cpan2dist      \
777                 ..\utils\shasum         \
778                 ..\utils\instmodsh      \
779                 ..\pod\pod2html         \
780                 ..\pod\pod2latex        \
781                 ..\pod\pod2man          \
782                 ..\pod\pod2text         \
783                 ..\pod\pod2usage        \
784                 ..\pod\podchecker       \
785                 ..\pod\podselect        \
786                 ..\x2p\find2perl        \
787                 ..\x2p\psed             \
788                 ..\x2p\s2p              \
789                 bin\exetype.pl          \
790                 bin\runperl.pl          \
791                 bin\pl2bat.pl           \
792                 bin\perlglob.pl         \
793                 bin\search.pl
794
795 .IF "$(CCTYPE)" == "BORLAND"
796
797 CFGSH_TMPL      = config.bc
798 CFGH_TMPL       = config_H.bc
799
800 .ELIF "$(CCTYPE)" == "GCC"
801
802 .IF "$(WIN64)" == "define"
803 .IF "$(GCCCROSS)" == "define"
804 CFGSH_TMPL      = config.gc64
805 CFGH_TMPL       = config_H.gc64
806 .ELSE
807 CFGSH_TMPL      = config.gc64nox
808 CFGH_TMPL       = config_H.gc64nox
809 .ENDIF
810 .ELSE
811 CFGSH_TMPL      = config.gc
812 CFGH_TMPL       = config_H.gc
813 .ENDIF
814 PERLIMPLIB      = ..\libperl513$(a)
815 PERLSTATICLIB   = ..\libperl513s$(a)
816
817 .ELSE
818
819 .IF "$(WIN64)" == "define"
820 CFGSH_TMPL      = config.vc64
821 CFGH_TMPL       = config_H.vc64
822 .ELSE
823 CFGSH_TMPL      = config.vc
824 CFGH_TMPL       = config_H.vc
825 .ENDIF
826
827 .ENDIF
828
829 # makedef.pl must be updated if this changes, and this should normally
830 # only change when there is an incompatible revision of the public API.
831 PERLIMPLIB      *= ..\perl513$(a)
832 PERLSTATICLIB   *= ..\perl513s$(a)
833 PERLDLL         = ..\perl513.dll
834
835 XCOPY           = xcopy /f /r /i /d /y
836 RCOPY           = xcopy /f /r /i /e /d /y
837 NOOP            = @rem
838
839 MICROCORE_SRC   =               \
840                 ..\av.c         \
841                 ..\deb.c        \
842                 ..\doio.c       \
843                 ..\doop.c       \
844                 ..\dump.c       \
845                 ..\globals.c    \
846                 ..\gv.c         \
847                 ..\mro.c        \
848                 ..\hv.c         \
849                 ..\locale.c     \
850                 ..\mathoms.c    \
851                 ..\mg.c         \
852                 ..\numeric.c    \
853                 ..\op.c         \
854                 ..\pad.c        \
855                 ..\perl.c       \
856                 ..\perlapi.c    \
857                 ..\perly.c      \
858                 ..\pp.c         \
859                 ..\pp_ctl.c     \
860                 ..\pp_hot.c     \
861                 ..\pp_pack.c    \
862                 ..\pp_sort.c    \
863                 ..\pp_sys.c     \
864                 ..\reentr.c     \
865                 ..\regcomp.c    \
866                 ..\regexec.c    \
867                 ..\run.c        \
868                 ..\scope.c      \
869                 ..\sv.c         \
870                 ..\taint.c      \
871                 ..\toke.c       \
872                 ..\universal.c  \
873                 ..\utf8.c       \
874                 ..\util.c
875
876 EXTRACORE_SRC   += perllib.c
877
878 .IF "$(PERL_MALLOC)" == "define"
879 EXTRACORE_SRC   += ..\malloc.c
880 .ENDIF
881
882 EXTRACORE_SRC   += ..\perlio.c
883
884 WIN32_SRC       =               \
885                 .\win32.c       \
886                 .\win32sck.c    \
887                 .\win32thread.c
888
889 # We need this for miniperl build unless we override canned 
890 # config.h #define building mini\*
891 #.IF "$(USE_PERLIO)" == "define"
892 WIN32_SRC       += .\win32io.c
893 #.ENDIF
894
895 .IF "$(CRYPT_SRC)" != ""
896 WIN32_SRC       += .\$(CRYPT_SRC)
897 .ENDIF
898
899 X2P_SRC         =               \
900                 ..\x2p\a2p.c    \
901                 ..\x2p\hash.c   \
902                 ..\x2p\str.c    \
903                 ..\x2p\util.c   \
904                 ..\x2p\walk.c
905
906 CORE_NOCFG_H    =               \
907                 ..\av.h         \
908                 ..\cop.h        \
909                 ..\cv.h         \
910                 ..\dosish.h     \
911                 ..\embed.h      \
912                 ..\form.h       \
913                 ..\gv.h         \
914                 ..\handy.h      \
915                 ..\hv.h         \
916                 ..\iperlsys.h   \
917                 ..\mg.h         \
918                 ..\nostdio.h    \
919                 ..\op.h         \
920                 ..\opcode.h     \
921                 ..\perl.h       \
922                 ..\perlapi.h    \
923                 ..\perlsdio.h   \
924                 ..\perlsfio.h   \
925                 ..\perly.h      \
926                 ..\pp.h         \
927                 ..\proto.h      \
928                 ..\regcomp.h    \
929                 ..\regexp.h     \
930                 ..\scope.h      \
931                 ..\sv.h         \
932                 ..\thread.h     \
933                 ..\unixish.h    \
934                 ..\utf8.h       \
935                 ..\util.h       \
936                 ..\warnings.h   \
937                 ..\XSUB.h       \
938                 ..\EXTERN.h     \
939                 ..\perlvars.h   \
940                 ..\intrpvar.h   \
941                 .\include\dirent.h      \
942                 .\include\netdb.h       \
943                 .\include\sys\socket.h  \
944                 .\win32.h
945
946 CORE_H          = $(CORE_NOCFG_H) .\config.h ..\git_version.h
947
948 UUDMAP_H        = ..\uudmap.h
949 BITCOUNT_H      = ..\bitcount.h
950
951 MICROCORE_OBJ   = $(MICROCORE_SRC:db:+$(o))
952 CORE_OBJ        = $(MICROCORE_OBJ) $(EXTRACORE_SRC:db:+$(o))
953 WIN32_OBJ       = $(WIN32_SRC:db:+$(o))
954 MINICORE_OBJ    = $(MINIDIR)\{$(MICROCORE_OBJ:f) miniperlmain$(o) perlio$(o)}
955 MINIWIN32_OBJ   = $(MINIDIR)\{$(WIN32_OBJ:f)}
956 MINI_OBJ        = $(MINICORE_OBJ) $(MINIWIN32_OBJ)
957 DLL_OBJ         = $(DYNALOADER)
958 X2P_OBJ         = $(X2P_SRC:db:+$(o))
959 GENUUDMAP_OBJ   = $(GENUUDMAP:db:+$(o))
960
961 PERLDLL_OBJ     = $(CORE_OBJ)
962 PERLEXE_OBJ     = perlmain$(o)
963 PERLEXEST_OBJ   = perlmainst$(o)
964
965 PERLDLL_OBJ     += $(WIN32_OBJ) $(DLL_OBJ)
966
967 .IF "$(USE_SETARGV)" != ""
968 SETARGV_OBJ     = setargv$(o)
969 .ENDIF
970
971 .IF "$(ALL_STATIC)" == "define"
972 # some exclusions, unfortunately, until fixed:
973 #  - Win32 extension contains overlapped symbols with win32.c (BUG!)
974 #  - MakeMaker isn't capable enough for SDBM_File (smaller bug)
975 #  - Encode (encoding search algorithm relies on shared library?)
976 STATIC_EXT      = * !Win32 !SDBM_File !Encode
977 .ELSE
978 # specify static extensions here, for example:
979 #STATIC_EXT     = Cwd Compress/Raw/Zlib
980 STATIC_EXT      = Win32CORE
981 .ENDIF
982
983 DYNALOADER      = ..\DynaLoader$(o)
984
985 # vars must be separated by "\t+~\t+", since we're using the tempfile
986 # version of config_sh.pl (we were overflowing someone's buffer by
987 # trying to fit them all on the command line)
988 #       -- BKS 10-17-1999
989 CFG_VARS        =                                       \
990                 INST_DRV=$(INST_DRV)            ~       \
991                 INST_TOP=$(INST_TOP)    ~       \
992                 INST_VER=$(INST_VER)    ~       \
993                 INST_ARCH=$(INST_ARCH)          ~       \
994                 archname=$(ARCHNAME)            ~       \
995                 cc=$(CC)                        ~       \
996                 ld=$(LINK32)                    ~       \
997                 ccflags=$(EXTRACFLAGS) $(OPTIMIZE) $(DEFINES) $(BUILDOPT)       ~       \
998                 cf_email=$(EMAIL)               ~       \
999                 d_crypt=$(D_CRYPT)              ~       \
1000                 d_mymalloc=$(PERL_MALLOC)       ~       \
1001                 libs=$(LIBFILES:f)              ~       \
1002                 incpath=$(CCINCDIR)     ~       \
1003                 libperl=$(PERLIMPLIB:f)         ~       \
1004                 libpth=$(CCLIBDIR);$(EXTRALIBDIRS)      ~       \
1005                 libc=$(LIBC)                    ~       \
1006                 make=dmake                      ~       \
1007                 _o=$(o)                         ~       \
1008                 obj_ext=$(o)                    ~       \
1009                 _a=$(a)                         ~       \
1010                 lib_ext=$(a)                    ~       \
1011                 static_ext=$(STATIC_EXT)        ~       \
1012                 usethreads=$(USE_ITHREADS)      ~       \
1013                 useithreads=$(USE_ITHREADS)     ~       \
1014                 usemultiplicity=$(USE_MULTI)    ~       \
1015                 useperlio=$(USE_PERLIO)         ~       \
1016                 uselargefiles=$(USE_LARGE_FILES)        ~       \
1017                 usesitecustomize=$(USE_SITECUST)        ~       \
1018                 LINK_FLAGS=$(LINK_FLAGS)        ~       \
1019                 optimize=$(OPTIMIZE)
1020
1021 #
1022 # set up targets varying between Win95 and WinNT builds
1023 #
1024
1025 .IF "$(IS_WIN95)" == "define"
1026 MK2             = .\makefile.95
1027 RIGHTMAKE       = __switch_makefiles
1028 .ELSE
1029 MK2             = __not_needed
1030 RIGHTMAKE       =
1031 .ENDIF
1032
1033 .IMPORT .IGNORE : SystemRoot windir
1034
1035 # Don't just .IMPORT OS from the environment because dmake sets OS itself.
1036 ENV_OS=$(subst,OS=, $(shell @set OS))
1037
1038 .IF "$(ENV_OS)" == "Windows_NT"
1039 ODBCCP32_DLL = $(SystemRoot)\system32\odbccp32.dll
1040 .ELSE
1041 ODBCCP32_DLL = $(windir)\system\odbccp32.dll
1042 .ENDIF
1043
1044 ICWD = -I..\dist\Cwd -I..\dist\Cwd\lib
1045
1046 #
1047 # Top targets
1048 #
1049
1050 all : CHECKDMAKE .\config.h ..\git_version.h $(GLOBEXE) $(MINIPERL) $(MK2)      \
1051         $(RIGHTMAKE) $(MINIMOD) $(CONFIGPM) $(UNIDATAFILES) MakePPPort          \
1052         $(PERLEXE) $(X2P) Extensions Extensions_nonxs $(PERLSTATIC)
1053
1054 regnodes : ..\regnodes.h
1055
1056 ..\regcomp$(o) : ..\regnodes.h ..\regcharclass.h        
1057
1058 ..\regexec$(o) : ..\regnodes.h ..\regcharclass.h
1059
1060 reonly : regnodes .\config.h ..\git_version.h $(GLOBEXE) $(MINIPERL) $(MK2)     \
1061         $(RIGHTMAKE) $(MINIMOD) $(CONFIGPM) $(UNIDATAFILES) $(PERLEXE)          \
1062         $(X2P) Extensions_reonly
1063
1064 static: $(PERLEXESTATIC)
1065
1066 #----------------------------------------------------------------
1067
1068 #-------------------- BEGIN Win95 SPECIFIC ----------------------
1069
1070 # this target is a jump-off point for Win95
1071 #  1. it switches to the Win95-specific makefile if it exists
1072 #     (__do_switch_makefiles)
1073 #  2. it prints a message when the Win95-specific one finishes (__done)
1074 #  3. it then kills this makefile by trying to make __no_such_target
1075
1076 __switch_makefiles: __do_switch_makefiles __done __no_such_target
1077
1078 __do_switch_makefiles:
1079 .IF "$(NOTFIRST)" != "true"
1080         if exist $(MK2) $(MAKE:s/-S//) -f $(MK2) $(MAKETARGETS) NOTFIRST=true
1081 .ELSE
1082         $(NOOP)
1083 .ENDIF
1084
1085 .IF "$(NOTFIRST)" != "true"
1086 __done:
1087         @echo Build process complete. Ignore any errors after this message.
1088         @echo Run "dmake test" to test and "dmake install" to install
1089
1090 .ELSE
1091 # dummy targets for Win95-specific makefile
1092
1093 __done:
1094         $(NOOP)
1095
1096 __no_such_target:
1097         $(NOOP)
1098
1099 .ENDIF
1100
1101 # This target is used to generate the new makefile (.\makefile.95) for Win95
1102
1103 .\makefile.95: .\makefile.mk
1104         $(MINIPERL) genmk95.pl makefile.mk $(MK2)
1105
1106 #--------------------- END Win95 SPECIFIC ---------------------
1107
1108 # a blank target for when builds don't need to do certain things
1109 # this target added for Win95 port but used to keep the WinNT port able to
1110 # use this file
1111 __not_needed:
1112         $(NOOP)
1113
1114 CHECKDMAKE :
1115 .IF "$(NEWDMAKE)" == "define"
1116         $(NOOP)
1117 .ELSE
1118         @echo Your dmake doesn't support ^|^| or ^&^& in conditional expressions.
1119         @echo Please get the latest dmake from http://search.cpan.org/dist/dmake/
1120         @exit 1
1121 .ENDIF
1122
1123 $(GLOBEXE) : perlglob$(o)
1124 .IF "$(CCTYPE)" == "BORLAND"
1125         $(CC) -c -w -v -tWM -I"$(CCINCDIR)" perlglob.c
1126         $(LINK32) -Tpe -ap $(BLINK_FLAGS) c0x32$(o) perlglob$(o) \
1127             "$(CCLIBDIR)\32BIT\wildargs$(o)",$@,,import32.lib cw32mt.lib,
1128 .ELIF "$(CCTYPE)" == "GCC"
1129         $(LINK32) $(BLINK_FLAGS) -mconsole -o $@ perlglob$(o) $(LIBFILES)
1130 .ELSE
1131         $(LINK32) $(BLINK_FLAGS) $(LIBFILES) -out:$@ -subsystem:$(SUBSYS) \
1132             perlglob$(o) setargv$(o)
1133         $(EMBED_EXE_MANI)
1134 .ENDIF
1135
1136 perlglob$(o)  : perlglob.c
1137
1138 config.w32 : $(CFGSH_TMPL)
1139         copy $(CFGSH_TMPL) config.w32
1140
1141 .\config.h : $(CFGH_TMPL) $(CORE_NOCFG_H)
1142         -del /f config.h
1143         copy $(CFGH_TMPL) config.h
1144
1145 ..\git_version.h : $(MINIPERL) ..\make_patchnum.pl
1146         cd .. && miniperl -Ilib make_patchnum.pl
1147
1148 # make sure that we recompile perl.c if the git version changes
1149 ..\perl$(o) : ..\git_version.h
1150
1151 ..\config.sh : config.w32 $(MINIPERL) config_sh.PL FindExt.pm
1152         $(MINIPERL) -I..\lib config_sh.PL --cfgsh-option-file \
1153             $(mktmp $(CFG_VARS)) config.w32 > ..\config.sh
1154
1155 # this target is for when changes to the main config.sh happen.
1156 # edit config.gc, then make perl using GCC in a minimal configuration (i.e.
1157 # with MULTI, ITHREADS, IMP_SYS, LARGE_FILES, PERLIO and CRYPT off), then make
1158 # this target to regenerate config_H.gc.
1159 # unfortunately, some further manual editing is also then required to restore all
1160 # the special _MSC_VER handling that is otherwise lost.
1161 # repeat for config.bc and config_H.bc (using BORLAND), except that there is no
1162 # _MSC_VER stuff in that case.
1163 regen_config_h:
1164         $(MINIPERL) -I..\lib config_sh.PL --cfgsh-option-file $(mktmp $(CFG_VARS)) \
1165             $(CFGSH_TMPL) > ..\config.sh
1166         $(MINIPERL) -I..\lib ..\configpm --chdir=..
1167         -del /f $(CFGH_TMPL)
1168         -$(MINIPERL) -I..\lib $(ICWD) config_h.PL "INST_VER=$(INST_VER)"
1169         rename config.h $(CFGH_TMPL)
1170
1171 $(CONFIGPM) : $(MINIPERL) ..\config.sh config_h.PL ..\minimod.pl
1172         $(MINIPERL) -I..\lib ..\configpm --chdir=..
1173         if exist lib\* $(RCOPY) lib\*.* ..\lib\$(NULL)
1174         $(XCOPY) ..\*.h $(COREDIR)\*.*
1175         $(XCOPY) *.h $(COREDIR)\*.*
1176         $(XCOPY) ..\ext\re\re.pm $(LIBDIR)\*.*
1177         $(RCOPY) include $(COREDIR)\*.*
1178         $(MINIPERL) -I..\lib $(ICWD) config_h.PL "INST_VER=$(INST_VER)" \
1179             || $(MAKE) $(MAKEMACROS) $(CONFIGPM) $(MAKEFILE)
1180
1181 $(MINIPERL) : $(MINIDIR) $(MINI_OBJ) $(CRTIPMLIBS)
1182 .IF "$(CCTYPE)" == "BORLAND"
1183         if not exist $(CCLIBDIR)\PSDK\odbccp32.lib \
1184             cd $(CCLIBDIR)\PSDK && implib odbccp32.lib $(ODBCCP32_DLL)
1185         $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
1186             @$(mktmp c0x32$(o) $(MINI_OBJ),$@,,$(LIBFILES),)
1187 .ELIF "$(CCTYPE)" == "GCC"
1188         $(LINK32) -v -mconsole -o $@ $(BLINK_FLAGS) \
1189             $(mktmp $(LKPRE) $(MINI_OBJ) $(LIBFILES) $(LKPOST))
1190 .ELSE
1191         $(LINK32) -subsystem:console -out:$@ $(BLINK_FLAGS) \
1192             @$(mktmp $(LIBFILES) $(MINI_OBJ))
1193         $(EMBED_EXE_MANI)
1194 .ENDIF
1195
1196 $(MINIDIR) :
1197         if not exist "$(MINIDIR)" mkdir "$(MINIDIR)"
1198
1199 $(MINICORE_OBJ) : $(CORE_NOCFG_H)
1200         $(CC) -c $(CFLAGS) -DPERL_EXTERNAL_GLOB -DPERL_IS_MINIPERL $(OBJOUT_FLAG)$@ ..\$(*B).c
1201
1202 $(MINIWIN32_OBJ) : $(CORE_NOCFG_H)
1203         $(CC) -c $(CFLAGS) $(OBJOUT_FLAG)$@ $(*B).c
1204
1205 # -DPERL_IMPLICIT_SYS needs C++ for perllib.c
1206 # rules wrapped in .IFs break Win9X build (we end up with unbalanced []s unless
1207 # unless the .IF is true), so instead we use a .ELSE with the default.
1208 # This is the only file that depends on perlhost.h, vmem.h, and vdir.h
1209
1210 perllib$(o)     : perllib.c .\perlhost.h .\vdir.h .\vmem.h
1211 .IF "$(USE_IMP_SYS)" == "define"
1212         $(CC) -c -I. $(CFLAGS_O) $(CXX_FLAG) $(OBJOUT_FLAG)$@ perllib.c
1213 .ELSE
1214         $(CC) -c -I. $(CFLAGS_O) $(OBJOUT_FLAG)$@ perllib.c
1215 .ENDIF
1216
1217 # 1. we don't want to rebuild miniperl.exe when config.h changes
1218 # 2. we don't want to rebuild miniperl.exe with non-default config.h
1219 # 3. we can't have miniperl.exe depend on git_version.h, as miniperl creates it
1220 $(MINI_OBJ)     : $(CORE_NOCFG_H)
1221
1222 $(WIN32_OBJ)    : $(CORE_H)
1223
1224 $(CORE_OBJ)     : $(CORE_H)
1225
1226 $(DLL_OBJ)      : $(CORE_H)
1227
1228 $(X2P_OBJ)      : $(CORE_H)
1229
1230 perldll.def : $(MINIPERL) $(CONFIGPM) ..\global.sym ..\pp.sym ..\makedef.pl create_perllibst_h.pl
1231         $(MINIPERL) -I..\lib create_perllibst_h.pl
1232         $(MINIPERL) -I..\lib -w ..\makedef.pl PLATFORM=win32 $(OPTIMIZE) $(DEFINES) \
1233         $(BUILDOPT) CCTYPE=$(CCTYPE) > perldll.def
1234
1235 $(PERLDLL): perldll.def $(PERLDLL_OBJ) $(PERLDLL_RES) Extensions_static
1236 .IF "$(CCTYPE)" == "BORLAND"
1237         $(LINK32) -Tpd -ap $(BLINK_FLAGS) \
1238             @$(mktmp c0d32$(o) $(PERLDLL_OBJ),$@,, \
1239                 $(shell @type Extensions_static) $(LIBFILES),perldll.def)
1240         $(IMPLIB) $*.lib $@
1241 .ELIF "$(CCTYPE)" == "GCC"
1242         $(LINK32) -mdll -o $@ -Wl,--base-file -Wl,perl.base $(BLINK_FLAGS) \
1243             $(mktmp $(LKPRE) $(PERLDLL_OBJ) \
1244                 $(shell @type Extensions_static) \
1245                 $(LIBFILES) $(LKPOST))
1246         $(IMPLIB) --output-lib $(PERLIMPLIB) \
1247                 --dllname $(PERLDLL:b).dll \
1248                 --def perldll.def \
1249                 --base-file perl.base \
1250                 --output-exp perl.exp
1251         $(LINK32) -mdll -o $@ $(BLINK_FLAGS) \
1252             $(mktmp $(LKPRE) $(PERLDLL_OBJ) \
1253                 $(shell @type Extensions_static) \
1254                 $(LIBFILES) perl.exp $(LKPOST))
1255 .ELSE
1256         $(LINK32) -dll -def:perldll.def -out:$@ $(BLINK_FLAGS) \
1257             @Extensions_static \
1258             @$(mktmp -base:0x28000000 $(DELAYLOAD) $(LIBFILES) \
1259                 $(PERLDLL_RES) $(PERLDLL_OBJ))
1260         $(EMBED_DLL_MANI)
1261 .ENDIF
1262         $(XCOPY) $(PERLIMPLIB) $(COREDIR)
1263
1264 $(PERLSTATICLIB): Extensions_static
1265 .IF "$(CCTYPE)" == "BORLAND"
1266         $(LIB32) $(LIB_FLAGS) $@ \
1267             @$(mktmp $(shell @type Extensions_static) \
1268                 $(PERLDLL_OBJ))
1269 .ELIF "$(CCTYPE)" == "GCC"
1270 # XXX: It would be nice if MinGW's ar accepted a temporary file, but this
1271 # doesn't seem to work:
1272 #       $(LIB32) $(LIB_FLAGS) $@ \
1273 #           $(mktmp $(LKPRE) $(shell @type Extensions_static) \
1274 #               $(PERLDLL_OBJ) $(LKPOST))
1275         $(LIB32) $(LIB_FLAGS) $@ \
1276             $(shell @type Extensions_static) \
1277             $(PERLDLL_OBJ)
1278 .ELSE
1279         $(LIB32) $(LIB_FLAGS) -out:$@ @Extensions_static \
1280             @$(mktmp $(PERLDLL_OBJ))
1281 .ENDIF
1282         $(XCOPY) $(PERLSTATICLIB) $(COREDIR)
1283
1284 $(PERLEXE_RES): perlexe.rc $(PERLEXE_MANIFEST) $(PERLEXE_ICO)
1285
1286 $(MINIMOD) : $(MINIPERL) ..\minimod.pl
1287         cd .. && miniperl minimod.pl > lib\ExtUtils\Miniperl.pm
1288
1289 ..\x2p\a2p$(o) : ..\x2p\a2p.c
1290         $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\a2p.c
1291
1292 ..\x2p\hash$(o) : ..\x2p\hash.c
1293         $(CC) -I..\x2p  $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\hash.c
1294
1295 ..\x2p\str$(o) : ..\x2p\str.c
1296         $(CC) -I..\x2p  $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\str.c
1297
1298 ..\x2p\util$(o) : ..\x2p\util.c
1299         $(CC) -I..\x2p  $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\util.c
1300
1301 ..\x2p\walk$(o) : ..\x2p\walk.c
1302         $(CC) -I..\x2p  $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\walk.c
1303
1304 $(X2P) : $(MINIPERL) $(X2P_OBJ) Extensions
1305         $(MINIPERL) -I..\lib ..\x2p\find2perl.PL
1306         $(MINIPERL) -I..\lib ..\x2p\s2p.PL
1307 .IF "$(CCTYPE)" == "BORLAND"
1308         $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
1309             @$(mktmp c0x32$(o) $(X2P_OBJ),$@,,$(LIBFILES),)
1310 .ELIF "$(CCTYPE)" == "GCC"
1311         $(LINK32) -v -o $@ $(BLINK_FLAGS) \
1312             $(mktmp $(LKPRE) $(X2P_OBJ) $(LIBFILES) $(LKPOST))
1313 .ELSE
1314         $(LINK32) -subsystem:console -out:$@ $(BLINK_FLAGS) \
1315             @$(mktmp $(LIBFILES) $(X2P_OBJ))
1316         $(EMBED_EXE_MANI)
1317 .ENDIF
1318
1319 $(MINIDIR)\globals$(o) : $(UUDMAP_H) $(BITCOUNT_H)
1320
1321 $(UUDMAP_H) $(BITCOUNT_H) : $(GENUUDMAP)
1322         $(GENUUDMAP) $(UUDMAP_H) $(BITCOUNT_H)
1323
1324 $(GENUUDMAP) : $(GENUUDMAP_OBJ)
1325 .IF "$(CCTYPE)" == "BORLAND"
1326         $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
1327             @$(mktmp c0x32$(o) $(GENUUDMAP_OBJ),$@,,$(LIBFILES),)
1328 .ELIF "$(CCTYPE)" == "GCC"
1329         $(LINK32) -v -o $@ $(BLINK_FLAGS) \
1330             $(mktmp $(LKPRE) $(GENUUDMAP_OBJ) $(LIBFILES) $(LKPOST))
1331 .ELSE
1332         $(LINK32) -subsystem:console -out:$@ $(BLINK_FLAGS) \
1333             @$(mktmp $(LIBFILES) $(GENUUDMAP_OBJ))
1334         $(EMBED_EXE_MANI)
1335 .ENDIF
1336
1337 perlmain.c : runperl.c
1338         copy runperl.c perlmain.c
1339
1340 perlmain$(o) : perlmain.c
1341         $(CC) $(CFLAGS_O:s,-DPERLDLL,-UPERLDLL,) $(OBJOUT_FLAG)$@ -c perlmain.c
1342
1343 perlmainst.c : runperl.c
1344         copy runperl.c perlmainst.c
1345
1346 perlmainst$(o) : perlmainst.c
1347         $(CC) $(CFLAGS_O) $(OBJOUT_FLAG)$@ -c perlmainst.c
1348
1349 $(PERLEXE): $(PERLDLL) $(CONFIGPM) $(PERLEXE_OBJ) $(PERLEXE_RES)
1350 .IF "$(CCTYPE)" == "BORLAND"
1351         $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
1352             @$(mktmp c0x32$(o) $(PERLEXE_OBJ),$@,, \
1353                 $(PERLIMPLIB) $(LIBFILES),,$(PERLEXE_RES))
1354 .ELIF "$(CCTYPE)" == "GCC"
1355         $(LINK32) -mconsole -o $@ $(BLINK_FLAGS)  \
1356             $(PERLEXE_OBJ) $(PERLEXE_RES) $(PERLIMPLIB) $(LIBFILES)
1357 .ELSE
1358         $(LINK32) -subsystem:console -out:$@ -stack:0x1000000 $(BLINK_FLAGS) \
1359             $(LIBFILES) $(PERLEXE_OBJ) $(SETARGV_OBJ) $(PERLIMPLIB) $(PERLEXE_RES)
1360         $(EMBED_EXE_MANI)
1361 .ENDIF
1362         copy $(PERLEXE) $(WPERLEXE)
1363         $(MINIPERL) -I..\lib bin\exetype.pl $(WPERLEXE) WINDOWS
1364
1365 $(PERLEXESTATIC): $(PERLSTATICLIB) $(CONFIGPM) $(PERLEXEST_OBJ) $(PERLEXE_RES)
1366 .IF "$(CCTYPE)" == "BORLAND"
1367         $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
1368             @$(mktmp c0x32$(o) $(PERLEXEST_OBJ),$@,, \
1369                 $(shell @type Extensions_static) $(PERLSTATICLIB) $(LIBFILES),, \
1370                 $(PERLEXE_RES))
1371 .ELIF "$(CCTYPE)" == "GCC"
1372         $(LINK32) -mconsole -o $@ $(BLINK_FLAGS) \
1373             $(mktmp $(LKPRE) $(shell @type Extensions_static) \
1374                 $(PERLSTATICLIB) $(LIBFILES) $(PERLEXEST_OBJ) \
1375                 $(PERLEXE_RES) $(LKPOST))
1376 .ELSE
1377         $(LINK32) -subsystem:console -out:$@ -stack:0x1000000 $(BLINK_FLAGS) \
1378             @Extensions_static $(PERLSTATICLIB) /PDB:NONE \
1379             $(LIBFILES) $(PERLEXEST_OBJ) $(SETARGV_OBJ) $(PERLEXE_RES)
1380         $(EMBED_EXE_MANI)
1381 .ENDIF
1382
1383 MakePPPort: $(MINIPERL) $(CONFIGPM) Extensions_nonxs
1384         $(MINIPERL) -I..\lib $(ICWD) ..\mkppport
1385
1386 #-------------------------------------------------------------------------------
1387 # There's no direct way to mark a dependency on
1388 # DynaLoader.pm, so this will have to do
1389 Extensions : ..\make_ext.pl $(PERLDEP) $(CONFIGPM) $(DYNALOADER)
1390         $(XCOPY) ..\*.h $(COREDIR)\*.*
1391         $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --dynamic
1392
1393 Extensions_reonly : ..\make_ext.pl $(PERLDEP) $(CONFIGPM) $(DYNALOADER)
1394         $(XCOPY) ..\*.h $(COREDIR)\*.*
1395         $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --dynamic +re
1396
1397 Extensions_static : ..\make_ext.pl list_static_libs.pl $(PERLDEP) $(CONFIGPM)
1398         $(XCOPY) ..\*.h $(COREDIR)\*.*
1399         $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --static
1400         $(MINIPERL) -I..\lib list_static_libs.pl > Extensions_static
1401
1402 Extensions_nonxs : ..\make_ext.pl $(PERLDEP) $(CONFIGPM)
1403         $(XCOPY) ..\*.h $(COREDIR)\*.*
1404         $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --nonxs
1405
1406 $(DYNALOADER) : ..\make_ext.pl $(PERLDEP) $(CONFIGPM) Extensions_nonxs
1407         $(XCOPY) ..\*.h $(COREDIR)\*.*
1408         $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(EXTDIR) --dynaloader
1409
1410 Extensions_clean :
1411         -if exist $(MINIPERL) $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --all --target=clean
1412
1413 Extensions_realclean :
1414         -if exist $(MINIPERL) $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --all --target=realclean
1415
1416 #-------------------------------------------------------------------------------
1417
1418
1419 doc: $(PERLEXE) ..\pod\perltoc.pod
1420         $(PERLEXE) -I..\lib ..\installhtml --podroot=.. --htmldir=$(HTMLDIR) \
1421             --podpath=pod:lib:ext:utils --htmlroot="file://$(INST_HTML:s,:,|,)"\
1422             --libpod=perlfunc:perlguts:perlvar:perlrun:perlop --recurse
1423
1424 # Note that this next section is parsed (and regenerated) by pod/buildtoc
1425 # so please check that script before making structural changes here
1426 utils: $(PERLEXE) $(X2P)
1427         cd ..\utils && $(MAKE) PERL=$(MINIPERL)
1428         copy ..\README.aix      ..\pod\perlaix.pod
1429         copy ..\README.amiga    ..\pod\perlamiga.pod
1430         copy ..\README.apollo   ..\pod\perlapollo.pod
1431         copy ..\README.beos     ..\pod\perlbeos.pod
1432         copy ..\README.bs2000   ..\pod\perlbs2000.pod
1433         copy ..\README.ce       ..\pod\perlce.pod
1434         copy ..\README.cn       ..\pod\perlcn.pod
1435         copy ..\README.cygwin   ..\pod\perlcygwin.pod
1436         copy ..\README.dgux     ..\pod\perldgux.pod
1437         copy ..\README.dos      ..\pod\perldos.pod
1438         copy ..\README.epoc     ..\pod\perlepoc.pod
1439         copy ..\README.freebsd  ..\pod\perlfreebsd.pod
1440         copy ..\README.haiku    ..\pod\perlhaiku.pod
1441         copy ..\README.hpux     ..\pod\perlhpux.pod
1442         copy ..\README.hurd     ..\pod\perlhurd.pod
1443         copy ..\README.irix     ..\pod\perlirix.pod
1444         copy ..\README.jp       ..\pod\perljp.pod
1445         copy ..\README.ko       ..\pod\perlko.pod
1446         copy ..\README.linux    ..\pod\perllinux.pod
1447         copy ..\README.macos    ..\pod\perlmacos.pod
1448         copy ..\README.macosx   ..\pod\perlmacosx.pod
1449         copy ..\README.mpeix    ..\pod\perlmpeix.pod
1450         copy ..\README.netware  ..\pod\perlnetware.pod
1451         copy ..\README.openbsd  ..\pod\perlopenbsd.pod
1452         copy ..\README.os2      ..\pod\perlos2.pod
1453         copy ..\README.os390    ..\pod\perlos390.pod
1454         copy ..\README.os400    ..\pod\perlos400.pod
1455         copy ..\README.plan9    ..\pod\perlplan9.pod
1456         copy ..\README.qnx      ..\pod\perlqnx.pod
1457         copy ..\README.riscos   ..\pod\perlriscos.pod
1458         copy ..\README.solaris  ..\pod\perlsolaris.pod
1459         copy ..\README.symbian  ..\pod\perlsymbian.pod
1460         copy ..\README.tru64    ..\pod\perltru64.pod
1461         copy ..\README.tw       ..\pod\perltw.pod
1462         copy ..\README.uts      ..\pod\perluts.pod
1463         copy ..\README.vmesa    ..\pod\perlvmesa.pod
1464         copy ..\README.vos      ..\pod\perlvos.pod
1465         copy ..\README.win32    ..\pod\perlwin32.pod
1466         copy ..\pod\perl5135delta.pod ..\pod\perldelta.pod
1467         cd ..\pod && $(MAKE) -f ..\win32\pod.mak converters
1468         $(PERLEXE) $(PL2BAT) $(UTILS)
1469         $(PERLEXE) $(ICWD) ..\autodoc.pl ..
1470         $(PERLEXE) $(ICWD) ..\pod\perlmodlib.pl -q
1471
1472 ..\pod\perltoc.pod: $(PERLEXE) Extensions Extensions_nonxs
1473         $(PERLEXE) -f ..\pod\buildtoc --build-toc -q
1474
1475 # Note that the pod cleanup in this next section is parsed (and regenerated
1476 # by pod/buildtoc so please check that script before making changes here
1477
1478 distclean: realclean
1479         -del /f $(MINIPERL) $(PERLEXE) $(PERLDLL) $(GLOBEXE) \
1480                 $(PERLIMPLIB) ..\miniperl$(a) $(MINIMOD) \
1481                 $(PERLEXESTATIC) $(PERLSTATICLIB)
1482         -del /f *.def *.map
1483         -del /f $(LIBDIR)\Encode.pm $(LIBDIR)\encoding.pm $(LIBDIR)\Errno.pm
1484         -del /f $(LIBDIR)\Config.pod $(LIBDIR)\POSIX.pod $(LIBDIR)\threads.pm
1485         -del /f $(LIBDIR)\.exists $(LIBDIR)\attributes.pm $(LIBDIR)\DynaLoader.pm
1486         -del /f $(LIBDIR)\Fcntl.pm $(LIBDIR)\IO.pm $(LIBDIR)\Opcode.pm
1487         -del /f $(LIBDIR)\ops.pm $(LIBDIR)\Safe.pm
1488         -del /f $(LIBDIR)\SDBM_File.pm $(LIBDIR)\Socket.pm $(LIBDIR)\POSIX.pm
1489         -del /f $(LIBDIR)\B.pm $(LIBDIR)\O.pm $(LIBDIR)\re.pm
1490         -del /f $(LIBDIR)\File\Glob.pm
1491         -del /f $(LIBDIR)\Storable.pm
1492         -del /f $(LIBDIR)\Sys\Hostname.pm
1493         -del /f $(LIBDIR)\Time\HiRes.pm
1494         -del /f $(LIBDIR)\Unicode\Normalize.pm
1495         -del /f $(LIBDIR)\Math\BigInt\FastCalc.pm
1496         -del /f $(LIBDIR)\Win32.pm
1497         -del /f $(LIBDIR)\Win32CORE.pm
1498         -del /f $(LIBDIR)\Win32API\File.pm
1499         -del /f $(LIBDIR)\Win32API\File\cFile.pc
1500         -del /f $(DISTDIR)\XSLoader\XSLoader.pm
1501         -if exist $(LIBDIR)\App rmdir /s /q $(LIBDIR)\App
1502         -if exist $(LIBDIR)\Archive rmdir /s /q $(LIBDIR)\Archive
1503         -if exist $(LIBDIR)\Attribute rmdir /s /q $(LIBDIR)\Attribute
1504         -if exist $(LIBDIR)\autodie rmdir /s /q $(LIBDIR)\autodie
1505         -if exist $(LIBDIR)\B rmdir /s /q $(LIBDIR)\B
1506         -if exist $(LIBDIR)\CGI rmdir /s /q $(LIBDIR)\CGI
1507         -if exist $(LIBDIR)\CPAN rmdir /s /q $(LIBDIR)\CPAN
1508         -if exist $(LIBDIR)\CPANPLUS rmdir /s /q $(LIBDIR)\CPANPLUS
1509         -if exist $(LIBDIR)\Compress rmdir /s /q $(LIBDIR)\Compress
1510         -if exist $(LIBDIR)\Data rmdir /s /q $(LIBDIR)\Data
1511         -if exist $(LIBDIR)\Devel rmdir /s /q $(LIBDIR)\Devel
1512         -if exist $(LIBDIR)\Digest rmdir /s /q $(LIBDIR)\Digest
1513         -if exist $(LIBDIR)\Encode rmdir /s /q $(LIBDIR)\Encode
1514         -if exist $(LIBDIR)\encoding rmdir /s /q $(LIBDIR)\encoding
1515         -if exist $(LIBDIR)\ExtUtils\CBuilder rmdir /s /q $(LIBDIR)\ExtUtils\CBuilder
1516         -if exist $(LIBDIR)\ExtUtils\Command rmdir /s /q $(LIBDIR)\ExtUtils\Command
1517         -if exist $(LIBDIR)\ExtUtils\Constant rmdir /s /q $(LIBDIR)\ExtUtils\Constant
1518         -if exist $(LIBDIR)\ExtUtils\Liblist rmdir /s /q $(LIBDIR)\ExtUtils\Liblist
1519         -if exist $(LIBDIR)\ExtUtils\MakeMaker rmdir /s /q $(LIBDIR)\ExtUtils\MakeMaker
1520         -if exist $(LIBDIR)\File\Spec rmdir /s /q $(LIBDIR)\File\Spec
1521         -if exist $(LIBDIR)\Filter rmdir /s /q $(LIBDIR)\Filter
1522         -if exist $(LIBDIR)\Hash rmdir /s /q $(LIBDIR)\Hash
1523         -if exist $(LIBDIR)\I18N\LangTags rmdir /s /q $(LIBDIR)\I18N\LangTags
1524         -if exist $(LIBDIR)\inc rmdir /s /q $(LIBDIR)\inc
1525         -if exist $(LIBDIR)\Module\Pluggable rmdir /s /q $(LIBDIR)\Module\Pluggable
1526         -if exist $(LIBDIR)\IO rmdir /s /q $(LIBDIR)\IO
1527         -if exist $(LIBDIR)\IPC rmdir /s /q $(LIBDIR)\IPC
1528         -if exist $(LIBDIR)\List rmdir /s /q $(LIBDIR)\List
1529         -if exist $(LIBDIR)\Locale rmdir /s /q $(LIBDIR)\Locale
1530         -if exist $(LIBDIR)\Log rmdir /s /q $(LIBDIR)\Log
1531         -if exist $(LIBDIR)\Math rmdir /s /q $(LIBDIR)\Math
1532         -if exist $(LIBDIR)\Memoize rmdir /s /q $(LIBDIR)\Memoize
1533         -if exist $(LIBDIR)\MIME rmdir /s /q $(LIBDIR)\MIME
1534         -if exist $(LIBDIR)\Module rmdir /s /q $(LIBDIR)\Module
1535         -if exist $(LIBDIR)\mro rmdir /s /q $(LIBDIR)\mro
1536         -if exist $(LIBDIR)\Net\FTP rmdir /s /q $(LIBDIR)\Net\FTP
1537         -if exist $(LIBDIR)\Object rmdir /s /q $(LIBDIR)\Object
1538         -if exist $(LIBDIR)\Package rmdir /s /q $(LIBDIR)\Package
1539         -if exist $(LIBDIR)\Params rmdir /s /q $(LIBDIR)\Params
1540         -if exist $(LIBDIR)\Parse rmdir /s /q $(LIBDIR)\Parse
1541         -if exist $(LIBDIR)\PerlIO rmdir /s /q $(LIBDIR)\PerlIO
1542         -if exist $(LIBDIR)\Pod\Perldoc rmdir /s /q $(LIBDIR)\Pod\Perldoc
1543         -if exist $(LIBDIR)\Pod\Simple rmdir /s /q $(LIBDIR)\Pod\Simple
1544         -if exist $(LIBDIR)\Pod\Text rmdir /s /q $(LIBDIR)\Pod\Text
1545         -if exist $(LIBDIR)\re rmdir /s /q $(LIBDIR)\re
1546         -if exist $(LIBDIR)\Scalar rmdir /s /q $(LIBDIR)\Scalar
1547         -if exist $(LIBDIR)\Sys rmdir /s /q $(LIBDIR)\Sys
1548         -if exist $(LIBDIR)\TAP rmdir /s /q $(LIBDIR)\TAP
1549         -if exist $(LIBDIR)\Term\UI rmdir /s /q $(LIBDIR)\Term\UI
1550         -if exist $(LIBDIR)\Test rmdir /s /q $(LIBDIR)\Test
1551         -if exist $(LIBDIR)\Thread rmdir /s /q $(LIBDIR)\Thread
1552         -if exist $(LIBDIR)\threads rmdir /s /q $(LIBDIR)\threads
1553         -if exist $(LIBDIR)\Unicode\Collate rmdir /s /q $(LIBDIR)\Unicode\Collate
1554         -if exist $(LIBDIR)\XS rmdir /s /q $(LIBDIR)\XS
1555         -if exist $(LIBDIR)\Win32API rmdir /s /q $(LIBDIR)\Win32API
1556         -cd $(PODDIR) && del /f *.html *.bat \
1557             perlaix.pod perlamiga.pod perlapi.pod perlapollo.pod \
1558             perlbeos.pod perlbs2000.pod perlce.pod perlcn.pod \
1559             perlcygwin.pod perldelta.pod perldgux.pod perldos.pod \
1560             perlepoc.pod perlfreebsd.pod perlhaiku.pod perlhpux.pod \
1561             perlhurd.pod perlintern.pod perlirix.pod perljp.pod perlko.pod \
1562             perllinux.pod perlmacos.pod perlmacosx.pod perlmodlib.pod \
1563             perlmpeix.pod perlnetware.pod perlopenbsd.pod perlos2.pod \
1564             perlos390.pod perlos400.pod perlplan9.pod perlqnx.pod \
1565             perlriscos.pod perlsolaris.pod perlsymbian.pod perltoc.pod \
1566             perltru64.pod perltw.pod perluniprops.pod perluts.pod \
1567             perlvmesa.pod perlvos.pod perlwin32.pod \
1568             pod2html pod2latex pod2man pod2text pod2usage \
1569             podchecker podselect
1570         -cd ..\utils && del /f h2ph splain perlbug pl2pm c2ph pstruct h2xs \
1571             perldoc perlivp dprofpp libnetcfg enc2xs piconv cpan *.bat \
1572             xsubpp instmodsh prove ptar ptardiff cpanp-run-perl cpanp cpan2dist shasum corelist config_data
1573         -cd ..\x2p && del /f find2perl s2p psed *.bat
1574         -del /f ..\config.sh perlmain.c dlutils.c config.h.new \
1575             perlmainst.c
1576         -del /f $(CONFIGPM)
1577         -del /f ..\lib\Config_git.pl
1578         -del /f bin\*.bat
1579         -del /f perllibst.h
1580         -del /f $(PERLEXE_RES) perl.base
1581         -cd .. && del /s *$(a) *.map *.pdb *.ilk *.tds *.bs *$(o) .exists pm_to_blib ppport.h
1582         -cd $(EXTDIR) && del /s *.def Makefile Makefile.old
1583         -cd $(DISTDIR) && del /s *.def Makefile Makefile.old
1584         -cd $(CPANDIR) && del /s *.def Makefile Makefile.old
1585         -if exist $(AUTODIR) rmdir /s /q $(AUTODIR)
1586         -if exist $(COREDIR) rmdir /s /q $(COREDIR)
1587         -if exist pod2htmd.tmp del pod2htmd.tmp
1588         -if exist pod2htmi.tmp del pod2htmi.tmp
1589         -if exist $(HTMLDIR) rmdir /s /q $(HTMLDIR)
1590         -del /f ..\t\test_state
1591
1592 install : all installbare installhtml
1593
1594 installbare : $(RIGHTMAKE) utils ..\pod\perltoc.pod
1595         $(PERLEXE) ..\installperl
1596         if exist $(WPERLEXE) $(XCOPY) $(WPERLEXE) $(INST_BIN)\*.*
1597         if exist $(PERLEXESTATIC) $(XCOPY) $(PERLEXESTATIC) $(INST_BIN)\*.*
1598         $(XCOPY) $(GLOBEXE) $(INST_BIN)\*.*
1599         if exist ..\perl*.pdb $(XCOPY) ..\perl*.pdb $(INST_BIN)\*.*
1600         if exist ..\x2p\a2p.pdb $(XCOPY) ..\x2p\a2p.pdb $(INST_BIN)\*.*
1601         $(XCOPY) bin\*.bat $(INST_SCRIPT)\*.*
1602
1603 installhtml : doc
1604         $(RCOPY) $(HTMLDIR)\*.* $(INST_HTML)\*.*
1605
1606 inst_lib : $(CONFIGPM)
1607         $(RCOPY) ..\lib $(INST_LIB)\*.*
1608
1609 $(UNIDATAFILES) ..\pod\perluniprops.pod .UPDATEALL : $(MINIPERL) $(CONFIGPM) ..\lib\unicore\mktables Extensions_nonxs
1610         cd ..\lib\unicore && \
1611         ..\$(MINIPERL) -I.. -I..\..\dist\Cwd\lib -I..\..\dist\Cwd mktables -P ..\..\pod -maketest -makelist -p
1612
1613 minitest : $(MINIPERL) $(GLOBEXE) $(CONFIGPM) $(UNIDATAFILES) utils
1614         $(XCOPY) $(MINIPERL) ..\t\$(NULL)
1615         if exist ..\t\perl.exe del /f ..\t\perl.exe
1616         rename ..\t\miniperl.exe perl.exe
1617 .IF "$(CCTYPE)" == "BORLAND"
1618         $(XCOPY) $(GLOBBAT) ..\t\$(NULL)
1619 .ELSE
1620         $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1621 .ENDIF
1622         attrib -r ..\t\*.*
1623         cd ..\t && \
1624         $(MINIPERL) -I..\lib harness base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t
1625
1626 test-prep : all utils
1627         $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1628         $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1629 .IF "$(CCTYPE)" == "BORLAND"
1630         $(XCOPY) $(GLOBBAT) ..\t\$(NULL)
1631 .ELSE
1632         $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1633 .ENDIF
1634 .IF "$(CCTYPE)" == "GCC"
1635 .IF "$(GCC_4XX)" == "define"
1636         $(XCOPY) $(GCCHELPERDLL) ..\t\$(NULL)
1637 .ENDIF
1638 .ENDIF
1639
1640 test : $(RIGHTMAKE) test-prep
1641         cd ..\t && $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES)
1642
1643 test-reonly : reonly utils
1644         $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1645         $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1646         $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1647         cd ..\t && \
1648         $(PERLEXE) -I..\lib harness $(OPT) -re \bpat\\/ $(EXTRA) && \
1649         cd ..\win32
1650
1651 regen :
1652         cd .. && regen.pl && cd win32
1653
1654 test-notty : test-prep
1655         set PERL_SKIP_TTY_TEST=1 && \
1656             cd ..\t && $(PERLEXE) -I.\lib harness $(TEST_SWITCHES) $(TEST_FILES)
1657
1658 _test : $(RIGHTMAKE)
1659         $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1660         $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1661 .IF "$(CCTYPE)" == "BORLAND"
1662         $(XCOPY) $(GLOBBAT) ..\t\$(NULL)
1663 .ELSE
1664         $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1665 .ENDIF
1666         cd ..\t && $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES)
1667
1668 _clean :
1669         -@erase miniperlmain$(o)
1670         -@erase $(MINIPERL)
1671         -@erase perlglob$(o)
1672         -@erase perlmain$(o)
1673         -@erase perlmainst$(o)
1674         -@erase config.w32
1675         -@erase /f config.h
1676         -@erase /f ..\git_version.h
1677         -@erase $(GLOBEXE)
1678         -@erase $(PERLEXE)
1679         -@erase $(WPERLEXE)
1680         -@erase $(PERLEXESTATIC)
1681         -@erase $(PERLSTATICLIB)
1682         -@erase $(PERLDLL)
1683         -@erase $(CORE_OBJ)
1684         -@erase $(GENUUDMAP) $(GENUUDMAP_OBJ) $(UUDMAP_H) $(BITCOUNT_H)
1685         -if exist $(MINIDIR) rmdir /s /q $(MINIDIR)
1686         -if exist $(UNIDATADIR1) rmdir /s /q $(UNIDATADIR1)
1687         -if exist $(UNIDATADIR2) rmdir /s /q $(UNIDATADIR2)
1688         -@erase $(UNIDATAFILES)
1689         -@erase $(WIN32_OBJ)
1690         -@erase $(DLL_OBJ)
1691         -@erase $(X2P_OBJ)
1692         -@erase ..\*$(o) ..\*$(a) ..\*.exp *$(o) *$(a) *.exp *.res
1693         -@erase ..\t\*.exe ..\t\*.dll ..\t\*.bat
1694         -@erase ..\x2p\*.exe ..\x2p\*.bat
1695         -@erase *.ilk
1696         -@erase *.pdb
1697         -@erase *.tds
1698         -@erase Extensions_static
1699
1700
1701
1702 clean : Extensions_clean _clean
1703
1704 realclean : Extensions_realclean _clean
1705
1706 # Handy way to run perlbug -ok without having to install and run the
1707 # installed perlbug. We don't re-run the tests here - we trust the user.
1708 # Please *don't* use this unless all tests pass.
1709 # If you want to report test failures, use "dmake nok" instead.
1710 ok: utils
1711         $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)"
1712
1713 okfile: utils
1714         $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)" -F perl.ok
1715
1716 nok: utils
1717         $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)"
1718
1719 nokfile: utils
1720         $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)" -F perl.nok