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