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