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