Get Visual C++ 2005 (aka Visual C++ 8.x) support off the ground
[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. This may be not
549 # necessary with recent MSVCRT's, but we use the fix anyway in case this build
550 # is going to be run on a system with an old MSVCRT.
551 .IF "$(USE_PERLCRT)" != "define"
552 BUILDOPT        += -DPERL_MSVCRT_READFIX
553 .ENDIF
554
555 LIBBASEFILES    = $(CRYPT_LIB) \
556                 oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.lib \
557                 comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \
558                 netapi32.lib uuid.lib ws2_32.lib mpr.lib winmm.lib \
559                 version.lib odbc32.lib odbccp32.lib
560
561 # The 64 bit Platform SDK compilers contain a runtime library that doesn't
562 # include the buffer overrun verification code used by the /GS switch.
563 # Since the code links against libraries that are compiled with /GS, this
564 # "security cookie verification" must be included via bufferoverlow.lib.
565 .IF "$(WIN64)" == "define"
566 LIBBASEFILES    = $(LIBBASEFILES) bufferoverflowU.lib
567 .ENDIF
568
569 # we add LIBC here, since we may be using PerlCRT.dll
570 LIBFILES        = $(LIBBASEFILES) $(LIBC)
571
572 EXTRACFLAGS     = -nologo -GF -W3
573 CFLAGS          = $(EXTRACFLAGS) $(INCLUDES) $(DEFINES) $(LOCDEFS) \
574                 $(PCHFLAGS) $(OPTIMIZE)
575 LINK_FLAGS      = -nologo -nodefaultlib $(LINK_DBG) \
576                 -libpath:"$(INST_COREDIR)" \
577                 -machine:$(PROCESSOR_ARCHITECTURE)
578 OBJOUT_FLAG     = -Fo
579 EXEOUT_FLAG     = -Fe
580 LIBOUT_FLAG     = /out:
581
582 .ENDIF
583
584 CFLAGS_O        = $(CFLAGS) $(BUILDOPT)
585
586 # used to allow local linking flags that are not propogated into Config.pm,
587 # currently unused
588 #   -- BKS, 12-12-1999
589 PRIV_LINK_FLAGS *=
590 BLINK_FLAGS     = $(PRIV_LINK_FLAGS) $(LINK_FLAGS)
591
592 #################### do not edit below this line #######################
593 ############# NO USER-SERVICEABLE PARTS BEYOND THIS POINT ##############
594
595 # Some dmake's built with Borland C++, including Sarathy's one at:
596 # http://search.cpan.org/CPAN/authors/id/G/GS/GSAR/dmake-4.1pl1-win32.zip
597 # require backslashes to be doubled-up when written to $(mktmp) files.
598 # Other dmake's do not require this and would actually output a double
599 # backslash if they were doubled-up.
600 .IF "$(shell @type $(mktmp \\))"=="\\"
601 B=\\
602 .ELSE
603 B=\\\
604 .ENDIF
605
606 # There is a related issue with other escape sequences: Sarathy's old
607 # dmake automatically maps escape sequences like \n to their ASCII values
608 # when used in macros, while other dmake's only do so if this behaviour
609 # is explicitly requested with the :m modifier.
610 DONTUSETHIS=\n
611 .IF "$(shell @type $(mktmp \n))"=="\n"
612 N=$(DONTUSETHIS:m)
613 .ELSE
614 N=$(DONTUSETHIS)
615 .ENDIF
616
617 o *= .obj
618 a *= .lib
619
620 LKPRE           = INPUT (
621 LKPOST          = )
622
623 #
624 # Rules
625 #
626
627 .SUFFIXES : .c .i $(o) .dll $(a) .exe .rc .res
628
629 .c$(o):
630         $(CC) -c $(null,$(<:d) $(NULL) -I$(<:d)) $(CFLAGS_O) $(OBJOUT_FLAG)$@ $<
631
632 .c.i:
633         $(CC) -c $(null,$(<:d) $(NULL) -I$(<:d)) $(CFLAGS_O) -E $< >$@
634
635 .y.c:
636         $(NOOP)
637
638 $(o).dll:
639 .IF "$(CCTYPE)" == "BORLAND"
640         $(LINK32) -Tpd -ap $(BLINK_FLAGS) c0d32$(o) $<,$@,,$(LIBFILES),$(*B).def
641         $(IMPLIB) $(*B).lib $@
642 .ELIF "$(CCTYPE)" == "GCC"
643         $(LINK32) -o $@ $(BLINK_FLAGS) $< $(LIBFILES)
644         $(IMPLIB) --input-def $(*B).def --output-lib $(*B).a $@
645 .ELSE
646         $(LINK32) -dll -subsystem:windows -implib:$(*B).lib -def:$(*B).def \
647             -out:$@ $(BLINK_FLAGS) $(LIBFILES) $< $(LIBPERL)
648 .ENDIF
649
650 .rc.res:
651 .IF "$(CCTYPE)" == "GCC"
652         $(RSC) --use-temp-file -i $< -o $@
653 .ELSE
654         $(RSC) -i.. $<
655 .ENDIF
656
657 #
658 # various targets
659 MINIPERL        = ..\miniperl.exe
660 MINIDIR         = .\mini
661 PERLEXE         = ..\perl.exe
662 WPERLEXE        = ..\wperl.exe
663 GLOBEXE         = ..\perlglob.exe
664 CONFIGPM        = ..\lib\Config.pm ..\lib\Config_heavy.pl
665 MINIMOD         = ..\lib\ExtUtils\Miniperl.pm
666 X2P             = ..\x2p\a2p.exe
667
668 # Unicode data files generated by mktables
669 UNIDATAFILES     = ..\lib\unicore\Canonical.pl ..\lib\unicore\Exact.pl \
670                    ..\lib\unicore\Properties ..\lib\unicore\Decomposition.pl \
671                    ..\lib\unicore\CombiningClass.pl ..\lib\unicore\Name.pl \
672                    ..\lib\unicore\PVA.pl
673
674 # Directories of Unicode data files generated by mktables
675 UNIDATADIR1     = ..\lib\unicore\To
676 UNIDATADIR2     = ..\lib\unicore\lib
677
678 PERLEXE_ICO     = .\perlexe.ico
679 PERLEXE_RES     = .\perlexe.res
680 PERLDLL_RES     =
681
682 # Nominate a target which causes extensions to be re-built
683 # This used to be $(PERLEXE), but at worst it is the .dll that they depend
684 # on and really only the interface - i.e. the .def file used to export symbols
685 # from the .dll
686 PERLDEP = perldll.def
687
688
689 PL2BAT          = bin\pl2bat.pl
690 GLOBBAT         = bin\perlglob.bat
691
692 UTILS           =                       \
693                 ..\utils\h2ph           \
694                 ..\utils\splain         \
695                 ..\utils\dprofpp        \
696                 ..\utils\perlbug        \
697                 ..\utils\pl2pm          \
698                 ..\utils\c2ph           \
699                 ..\utils\pstruct        \
700                 ..\utils\h2xs           \
701                 ..\utils\perldoc        \
702                 ..\utils\perlivp        \
703                 ..\utils\libnetcfg      \
704                 ..\utils\enc2xs         \
705                 ..\utils\piconv         \
706                 ..\utils\config_data    \
707                 ..\utils\corelist       \
708                 ..\utils\cpan           \
709                 ..\utils\xsubpp         \
710                 ..\utils\prove          \
711                 ..\utils\ptar           \
712                 ..\utils\ptardiff       \
713                 ..\utils\shasum         \
714                 ..\utils\instmodsh      \
715                 ..\pod\checkpods        \
716                 ..\pod\pod2html         \
717                 ..\pod\pod2latex        \
718                 ..\pod\pod2man          \
719                 ..\pod\pod2text         \
720                 ..\pod\pod2usage        \
721                 ..\pod\podchecker       \
722                 ..\pod\podselect        \
723                 ..\x2p\find2perl        \
724                 ..\x2p\psed             \
725                 ..\x2p\s2p              \
726                 bin\exetype.pl          \
727                 bin\runperl.pl          \
728                 bin\pl2bat.pl           \
729                 bin\perlglob.pl         \
730                 bin\search.pl
731
732 .IF "$(CCTYPE)" == "BORLAND"
733
734 CFGSH_TMPL      = config.bc
735 CFGH_TMPL       = config_H.bc
736
737 .ELIF "$(CCTYPE)" == "GCC"
738
739 CFGSH_TMPL      = config.gc
740 CFGH_TMPL       = config_H.gc
741 PERLIMPLIB      = ..\libperl59$(a)
742
743 .ELSE
744
745 .IF "$(WIN64)" == "define"
746 CFGSH_TMPL      = config.vc64
747 CFGH_TMPL       = config_H.vc64
748 .ELSE
749 CFGSH_TMPL      = config.vc
750 CFGH_TMPL       = config_H.vc
751 .ENDIF
752
753 .ENDIF
754
755 # makedef.pl must be updated if this changes, and this should normally
756 # only change when there is an incompatible revision of the public API.
757 PERLIMPLIB      *= ..\perl59$(a)
758 PERLDLL         = ..\perl59.dll
759
760 XCOPY           = xcopy /f /r /i /d /y
761 RCOPY           = xcopy /f /r /i /e /d /y
762 NOOP            = @rem
763
764 #
765 # filenames given to xsubpp must have forward slashes (since it puts
766 # full pathnames in #line strings)
767 XSUBPP          = ..\$(MINIPERL) -I..\..\lib ..\$(EXTUTILSDIR)\xsubpp \
768                 -C++ -prototypes
769
770 MICROCORE_SRC   =               \
771                 ..\av.c         \
772                 ..\deb.c        \
773                 ..\doio.c       \
774                 ..\doop.c       \
775                 ..\dump.c       \
776                 ..\globals.c    \
777                 ..\gv.c         \
778                 ..\hv.c         \
779                 ..\locale.c     \
780                 ..\mathoms.c    \
781                 ..\mg.c         \
782                 ..\numeric.c    \
783                 ..\op.c         \
784                 ..\pad.c        \
785                 ..\perl.c       \
786                 ..\perlapi.c    \
787                 ..\perly.c      \
788                 ..\pp.c         \
789                 ..\pp_ctl.c     \
790                 ..\pp_hot.c     \
791                 ..\pp_pack.c    \
792                 ..\pp_sort.c    \
793                 ..\pp_sys.c     \
794                 ..\reentr.c     \
795                 ..\regcomp.c    \
796                 ..\regexec.c    \
797                 ..\run.c        \
798                 ..\scope.c      \
799                 ..\sv.c         \
800                 ..\taint.c      \
801                 ..\toke.c       \
802                 ..\universal.c  \
803                 ..\utf8.c       \
804                 ..\util.c       \
805                 ..\xsutils.c
806
807 EXTRACORE_SRC   += perllib.c
808
809 .IF "$(PERL_MALLOC)" == "define"
810 EXTRACORE_SRC   += ..\malloc.c
811 .ENDIF
812
813 EXTRACORE_SRC   += ..\perlio.c
814
815 WIN32_SRC       =               \
816                 .\win32.c       \
817                 .\win32sck.c    \
818                 .\win32thread.c
819
820 # We need this for miniperl build unless we override canned 
821 # config.h #define building mini\*
822 #.IF "$(USE_PERLIO)" == "define"
823 WIN32_SRC       += .\win32io.c
824 #.ENDIF
825
826 .IF "$(CRYPT_SRC)" != ""
827 WIN32_SRC       += .\$(CRYPT_SRC)
828 .ENDIF
829
830 DLL_SRC         = $(DYNALOADER).c
831
832 X2P_SRC         =               \
833                 ..\x2p\a2p.c    \
834                 ..\x2p\hash.c   \
835                 ..\x2p\str.c    \
836                 ..\x2p\util.c   \
837                 ..\x2p\walk.c
838
839 CORE_NOCFG_H    =               \
840                 ..\av.h         \
841                 ..\cop.h        \
842                 ..\cv.h         \
843                 ..\dosish.h     \
844                 ..\embed.h      \
845                 ..\form.h       \
846                 ..\gv.h         \
847                 ..\handy.h      \
848                 ..\hv.h         \
849                 ..\iperlsys.h   \
850                 ..\mg.h         \
851                 ..\nostdio.h    \
852                 ..\op.h         \
853                 ..\opcode.h     \
854                 ..\perl.h       \
855                 ..\perlapi.h    \
856                 ..\perlsdio.h   \
857                 ..\perlsfio.h   \
858                 ..\perly.h      \
859                 ..\pp.h         \
860                 ..\proto.h      \
861                 ..\regcomp.h    \
862                 ..\regexp.h     \
863                 ..\scope.h      \
864                 ..\sv.h         \
865                 ..\thread.h     \
866                 ..\unixish.h    \
867                 ..\utf8.h       \
868                 ..\util.h       \
869                 ..\warnings.h   \
870                 ..\XSUB.h       \
871                 ..\EXTERN.h     \
872                 ..\perlvars.h   \
873                 ..\intrpvar.h   \
874                 ..\thrdvar.h    \
875                 .\include\dirent.h      \
876                 .\include\netdb.h       \
877                 .\include\sys\socket.h  \
878                 .\win32.h
879
880 CORE_H          = $(CORE_NOCFG_H) .\config.h
881
882 MICROCORE_OBJ   = $(MICROCORE_SRC:db:+$(o))
883 CORE_OBJ        = $(MICROCORE_OBJ) $(EXTRACORE_SRC:db:+$(o))
884 WIN32_OBJ       = $(WIN32_SRC:db:+$(o))
885 MINICORE_OBJ    = $(MINIDIR)\{$(MICROCORE_OBJ:f) miniperlmain$(o) perlio$(o)}
886 MINIWIN32_OBJ   = $(MINIDIR)\{$(WIN32_OBJ:f)}
887 MINI_OBJ        = $(MINICORE_OBJ) $(MINIWIN32_OBJ)
888 DLL_OBJ         = $(DLL_SRC:db:+$(o))
889 X2P_OBJ         = $(X2P_SRC:db:+$(o))
890
891 PERLDLL_OBJ     = $(CORE_OBJ)
892 PERLEXE_OBJ     = perlmain$(o)
893
894 PERLDLL_OBJ     += $(WIN32_OBJ) $(DLL_OBJ)
895
896 .IF "$(USE_SETARGV)" != ""
897 SETARGV_OBJ     = setargv$(o)
898 .ENDIF
899
900 DYNAMIC_EXT     = Socket IO Fcntl Opcode SDBM_File POSIX attrs Thread B re \
901                 Data/Dumper Devel/Peek ByteLoader Devel/DProf File/Glob \
902                 Sys/Hostname Storable Filter/Util/Call Encode \
903                 Digest/MD5 Digest/SHA PerlIO/scalar MIME/Base64 Time/HiRes \
904                 Unicode/Normalize Math/BigInt/FastCalc Compress/Zlib Win32 \
905                 Win32API/File
906 STATIC_EXT      = 
907 NONXS_EXT       = Errno
908
909 DYNALOADER      = $(EXTDIR)\DynaLoader\DynaLoader
910
911 # vars must be separated by "\t+~\t+", since we're using the tempfile
912 # version of config_sh.pl (we were overflowing someone's buffer by
913 # trying to fit them all on the command line)
914 #       -- BKS 10-17-1999
915 CFG_VARS        =                                       \
916                 INST_DRV=$(INST_DRV)            ~       \
917                 INST_TOP=$(INST_TOP:s,\,$B,)    ~       \
918                 INST_VER=$(INST_VER:s,\,$B,)    ~       \
919                 INST_ARCH=$(INST_ARCH)          ~       \
920                 archname=$(ARCHNAME)            ~       \
921                 cc=$(CC)                        ~       \
922                 ld=$(LINK32)                    ~       \
923                 ccflags=$(EXTRACFLAGS) $(OPTIMIZE) $(DEFINES) $(BUILDOPT)       ~       \
924                 cf_email=$(EMAIL)               ~       \
925                 d_crypt=$(D_CRYPT)              ~       \
926                 d_mymalloc=$(PERL_MALLOC)       ~       \
927                 libs=$(LIBFILES:f)              ~       \
928                 incpath=$(CCINCDIR:s,\,$B,)     ~       \
929                 libperl=$(PERLIMPLIB:f)         ~       \
930                 libpth=$(CCLIBDIR:s,\,$B,);$(EXTRALIBDIRS:s,\,$B,)      ~       \
931                 libc=$(LIBC)                    ~       \
932                 make=dmake                      ~       \
933                 _o=$(o)                         ~       \
934                 obj_ext=$(o)                    ~       \
935                 _a=$(a)                         ~       \
936                 lib_ext=$(a)                    ~       \
937                 static_ext=$(STATIC_EXT)        ~       \
938                 usethreads=$(USE_ITHREADS)      ~       \
939                 useithreads=$(USE_ITHREADS)     ~       \
940                 usemultiplicity=$(USE_MULTI)    ~       \
941                 useperlio=$(USE_PERLIO)         ~       \
942                 uselargefiles=$(USE_LARGE_FILES)        ~       \
943                 usesitecustomize=$(USE_SITECUST)        ~       \
944                 LINK_FLAGS=$(LINK_FLAGS:s,\,$B,)        ~       \
945                 optimize=$(OPTIMIZE)
946
947 #
948 # set up targets varying between Win95 and WinNT builds
949 #
950
951 .IF "$(IS_WIN95)" == "define"
952 MK2             = .\makefile.95
953 RIGHTMAKE       = __switch_makefiles
954 .ELSE
955 MK2             = __not_needed
956 RIGHTMAKE       =
957 .ENDIF
958
959 .IMPORT .IGNORE : SystemRoot windir
960
961 # Don't just .IMPORT OS from the environment because dmake sets OS itself.
962 ENV_OS=$(subst,OS=, $(shell @set OS))
963
964 .IF "$(ENV_OS)" == "Windows_NT"
965 ODBCCP32_DLL = $(SystemRoot)\system32\odbccp32.dll
966 .ELSE
967 ODBCCP32_DLL = $(windir)\system\odbccp32.dll
968 .ENDIF
969
970 #
971 # Top targets
972 #
973
974 all : .\config.h $(GLOBEXE) $(MINIPERL) $(MK2)          \
975         $(RIGHTMAKE) $(MINIMOD) $(CONFIGPM) $(UNIDATAFILES) $(PERLEXE)  \
976         $(X2P) MakePPPort Extensions
977
978 reonly : .\config.h $(GLOBEXE) $(MINIPERL) $(MK2)               \
979         $(RIGHTMAKE) $(MINIMOD) $(CONFIGPM) $(UNIDATAFILES) $(PERLEXE)  \
980         $(X2P) Extensions_reonly
981
982 $(DYNALOADER)$(o) : $(DYNALOADER).c $(CORE_H) $(EXTDIR)\DynaLoader\dlutils.c
983
984 #----------------------------------------------------------------
985
986 #-------------------- BEGIN Win95 SPECIFIC ----------------------
987
988 # this target is a jump-off point for Win95
989 #  1. it switches to the Win95-specific makefile if it exists
990 #     (__do_switch_makefiles)
991 #  2. it prints a message when the Win95-specific one finishes (__done)
992 #  3. it then kills this makefile by trying to make __no_such_target
993
994 __switch_makefiles: __do_switch_makefiles __done __no_such_target
995
996 __do_switch_makefiles:
997 .IF "$(NOTFIRST)" != "true"
998         if exist $(MK2) $(MAKE:s/-S//) -f $(MK2) $(MAKETARGETS) NOTFIRST=true
999 .ELSE
1000         $(NOOP)
1001 .ENDIF
1002
1003 .IF "$(NOTFIRST)" != "true"
1004 __done:
1005         @echo Build process complete. Ignore any errors after this message.
1006         @echo Run "dmake test" to test and "dmake install" to install
1007
1008 .ELSE
1009 # dummy targets for Win95-specific makefile
1010
1011 __done:
1012         $(NOOP)
1013
1014 __no_such_target:
1015         $(NOOP)
1016
1017 .ENDIF
1018
1019 # This target is used to generate the new makefile (.\makefile.95) for Win95
1020
1021 .\makefile.95: .\makefile.mk
1022         $(MINIPERL) genmk95.pl makefile.mk $(MK2)
1023
1024 #--------------------- END Win95 SPECIFIC ---------------------
1025
1026 # a blank target for when builds don't need to do certain things
1027 # this target added for Win95 port but used to keep the WinNT port able to
1028 # use this file
1029 __not_needed:
1030         $(NOOP)
1031
1032 $(GLOBEXE) : perlglob$(o)
1033 .IF "$(CCTYPE)" == "BORLAND"
1034         $(CC) -c -w -v -tWM -I"$(CCINCDIR)" perlglob.c
1035         $(LINK32) -Tpe -ap $(BLINK_FLAGS) c0x32$(o) perlglob$(o) \
1036             "$(CCLIBDIR)\32BIT\wildargs$(o)",$@,,import32.lib cw32mt.lib,
1037 .ELIF "$(CCTYPE)" == "GCC"
1038         $(LINK32) $(BLINK_FLAGS) -mconsole -o $@ perlglob$(o) $(LIBFILES)
1039 .ELSE
1040         $(LINK32) $(BLINK_FLAGS) $(LIBFILES) -out:$@ -subsystem:$(SUBSYS) \
1041             perlglob$(o) setargv$(o)
1042 .ENDIF
1043
1044 perlglob$(o)  : perlglob.c
1045
1046 config.w32 : $(CFGSH_TMPL)
1047         copy $(CFGSH_TMPL) config.w32
1048
1049 .\config.h : $(CFGH_TMPL) $(CORE_NOCFG_H)
1050         -del /f config.h
1051         copy $(CFGH_TMPL) config.h
1052
1053 ..\config.sh : config.w32 $(MINIPERL) config_sh.PL FindExt.pm
1054         $(MINIPERL) -I..\lib config_sh.PL --cfgsh-option-file \
1055             $(mktmp $(CFG_VARS)) config.w32 > ..\config.sh
1056
1057 # this target is for when changes to the main config.sh happen
1058 # edit config.{b,v,g}c and make this target once for each supported
1059 # compiler (e.g. `dmake CCTYPE=BORLAND regen_config_h`)
1060 regen_config_h:
1061         perl config_sh.PL --cfgsh-option-file $(mktmp $(CFG_VARS)) \
1062             $(CFGSH_TMPL) > ..\config.sh
1063         -cd .. && del /f perl.exe
1064         -cd .. && del /f perl*.dll
1065         cd .. && perl configpm
1066         -del /f $(CFGH_TMPL)
1067         -mkdir $(COREDIR)
1068         -perl config_h.PL "INST_VER=$(INST_VER)"
1069         rename config.h $(CFGH_TMPL)
1070
1071 $(CONFIGPM) : $(MINIPERL) ..\config.sh config_h.PL ..\minimod.pl
1072         cd .. && miniperl configpm
1073         if exist lib\* $(RCOPY) lib\*.* ..\lib\$(NULL)
1074         $(XCOPY) ..\*.h $(COREDIR)\*.*
1075         $(XCOPY) *.h $(COREDIR)\*.*
1076         $(XCOPY) ..\ext\re\re.pm $(LIBDIR)\*.*
1077         $(RCOPY) include $(COREDIR)\*.*
1078         $(MINIPERL) -I..\lib config_h.PL "INST_VER=$(INST_VER)" \
1079             || $(MAKE) $(MAKEMACROS) $(CONFIGPM) $(MAKEFILE)
1080
1081 $(MINIPERL) : $(MINIDIR) $(MINI_OBJ) $(CRTIPMLIBS)
1082 .IF "$(CCTYPE)" == "BORLAND"
1083         if not exist $(CCLIBDIR)\PSDK\odbccp32.lib \
1084             cd $(CCLIBDIR)\PSDK && implib odbccp32.lib $(ODBCCP32_DLL)
1085         $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
1086             @$(mktmp c0x32$(o) $(MINI_OBJ:s,\,$B,),$(@:s,\,$B,),,$(LIBFILES),)
1087 .ELIF "$(CCTYPE)" == "GCC"
1088         $(LINK32) -v -mconsole -o $@ $(BLINK_FLAGS) \
1089             $(mktmp $(LKPRE) $(MINI_OBJ:s,\,$B,) $(LIBFILES) $(LKPOST))
1090 .ELSE
1091         $(LINK32) -subsystem:console -out:$@ \
1092             @$(mktmp $(BLINK_FLAGS) $(LIBFILES) $(MINI_OBJ:s,\,$B,))
1093 .ENDIF
1094
1095 $(MINIDIR) :
1096         if not exist "$(MINIDIR)" mkdir "$(MINIDIR)"
1097
1098 $(MINICORE_OBJ) : $(CORE_NOCFG_H)
1099         $(CC) -c $(CFLAGS) -DPERL_EXTERNAL_GLOB $(OBJOUT_FLAG)$@ ..\$(*B).c
1100
1101 $(MINIWIN32_OBJ) : $(CORE_NOCFG_H)
1102         $(CC) -c $(CFLAGS) $(OBJOUT_FLAG)$@ $(*B).c
1103
1104 # -DPERL_IMPLICIT_SYS needs C++ for perllib.c
1105 # rules wrapped in .IFs break Win9X build (we end up with unbalanced []s unless
1106 # unless the .IF is true), so instead we use a .ELSE with the default.
1107 # This is the only file that depends on perlhost.h, vmem.h, and vdir.h
1108
1109 perllib$(o)     : perllib.c .\perlhost.h .\vdir.h .\vmem.h
1110 .IF "$(USE_IMP_SYS)" == "define"
1111         $(CC) -c -I. $(CFLAGS_O) $(CXX_FLAG) $(OBJOUT_FLAG)$@ perllib.c
1112 .ELSE
1113         $(CC) -c -I. $(CFLAGS_O) $(OBJOUT_FLAG)$@ perllib.c
1114 .ENDIF
1115
1116 # 1. we don't want to rebuild miniperl.exe when config.h changes
1117 # 2. we don't want to rebuild miniperl.exe with non-default config.h
1118 $(MINI_OBJ)     : $(CORE_NOCFG_H)
1119
1120 $(WIN32_OBJ)    : $(CORE_H)
1121
1122 $(CORE_OBJ)     : $(CORE_H)
1123
1124 $(DLL_OBJ)      : $(CORE_H)
1125
1126 $(X2P_OBJ)      : $(CORE_H)
1127
1128 perldll.def : $(MINIPERL) $(CONFIGPM) ..\global.sym ..\pp.sym ..\makedef.pl
1129         $(MINIPERL) -I..\lib buildext.pl --create-perllibst-h
1130         $(MINIPERL) -w ..\makedef.pl PLATFORM=win32 $(OPTIMIZE) $(DEFINES) \
1131         $(BUILDOPT) CCTYPE=$(CCTYPE) > perldll.def
1132
1133 $(PERLDLL): perldll.def $(PERLDLL_OBJ) $(PERLDLL_RES) Extensions_static
1134 .IF "$(CCTYPE)" == "BORLAND"
1135         $(LINK32) -Tpd -ap $(BLINK_FLAGS) \
1136             @$(mktmp c0d32$(o) $(PERLDLL_OBJ:s,\,$B,)$N \
1137                 $@,$N \
1138                 $(subst,\,$B $(shell @type Extensions_static)) $(LIBFILES)$N \
1139                 perldll.def$N)
1140         $(IMPLIB) $*.lib $@
1141 .ELIF "$(CCTYPE)" == "GCC"
1142         $(LINK32) -mdll -o $@ -Wl,--base-file -Wl,perl.base $(BLINK_FLAGS) \
1143             $(mktmp $(LKPRE) $(PERLDLL_OBJ:s,\,$B,) \
1144                 $(subst,\,$B $(shell @type Extensions_static)) \
1145                 $(LIBFILES) $(LKPOST))
1146         dlltool --output-lib $(PERLIMPLIB) \
1147                 --dllname $(PERLDLL:b).dll \
1148                 --def perldll.def \
1149                 --base-file perl.base \
1150                 --output-exp perl.exp
1151         $(LINK32) -mdll -o $@ $(BLINK_FLAGS) \
1152             $(mktmp $(LKPRE) $(PERLDLL_OBJ:s,\,$B,) \
1153                 $(subst,\,$B $(shell @type Extensions_static)) \
1154                 $(LIBFILES) perl.exp $(LKPOST))
1155 .ELSE
1156         $(LINK32) -dll -def:perldll.def -out:$@ \
1157             @Extensions_static \
1158             @$(mktmp -base:0x28000000 $(BLINK_FLAGS) $(DELAYLOAD) $(LIBFILES) \
1159                 $(PERLDLL_RES) $(PERLDLL_OBJ:s,\,$B,))
1160 .ENDIF
1161         $(XCOPY) $(PERLIMPLIB) $(COREDIR)
1162
1163
1164 $(PERLEXE_ICO): $(MINIPERL) makeico.pl
1165         $(MINIPERL) makeico.pl > $@
1166
1167 $(PERLEXE_RES): perlexe.rc $(PERLEXE_ICO)
1168
1169 $(MINIMOD) : $(MINIPERL) ..\minimod.pl
1170         cd .. && miniperl minimod.pl > lib\ExtUtils\Miniperl.pm
1171
1172 ..\x2p\a2p$(o) : ..\x2p\a2p.c
1173         $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\a2p.c
1174
1175 ..\x2p\hash$(o) : ..\x2p\hash.c
1176         $(CC) -I..\x2p  $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\hash.c
1177
1178 ..\x2p\str$(o) : ..\x2p\str.c
1179         $(CC) -I..\x2p  $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\str.c
1180
1181 ..\x2p\util$(o) : ..\x2p\util.c
1182         $(CC) -I..\x2p  $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\util.c
1183
1184 ..\x2p\walk$(o) : ..\x2p\walk.c
1185         $(CC) -I..\x2p  $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\walk.c
1186
1187 $(X2P) : $(MINIPERL) $(X2P_OBJ)
1188         $(MINIPERL) ..\x2p\find2perl.PL
1189         $(MINIPERL) ..\x2p\s2p.PL
1190 .IF "$(CCTYPE)" == "BORLAND"
1191         $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
1192             @$(mktmp c0x32$(o) $(X2P_OBJ:s,\,$B,),$(@:s,\,$B,),,$(LIBFILES),)
1193 .ELIF "$(CCTYPE)" == "GCC"
1194         $(LINK32) -v -o $@ $(BLINK_FLAGS) \
1195             $(mktmp $(LKPRE) $(X2P_OBJ:s,\,$B,) $(LIBFILES) $(LKPOST))
1196 .ELSE
1197         $(LINK32) -subsystem:console -out:$@ \
1198             @$(mktmp $(BLINK_FLAGS) $(LIBFILES) $(X2P_OBJ:s,\,$B,))
1199 .ENDIF
1200
1201 perlmain.c : runperl.c
1202         copy runperl.c perlmain.c
1203
1204 perlmain$(o) : perlmain.c
1205         $(CC) $(CFLAGS_O) -UPERLDLL $(OBJOUT_FLAG)$@ -c perlmain.c
1206
1207 $(PERLEXE): $(PERLDLL) $(CONFIGPM) $(PERLEXE_OBJ) $(PERLEXE_RES)
1208 .IF "$(CCTYPE)" == "BORLAND"
1209         $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
1210             @$(mktmp c0x32$(o) $(PERLEXE_OBJ:s,\,$B,)$N \
1211             $(@:s,\,$B,),$N \
1212             $(PERLIMPLIB) $(LIBFILES)$N)
1213 .ELIF "$(CCTYPE)" == "GCC"
1214         $(LINK32) -mconsole -o $@ $(BLINK_FLAGS)  \
1215             $(PERLEXE_OBJ) $(PERLIMPLIB) $(LIBFILES)
1216 .ELSE
1217         $(LINK32) -subsystem:console -out:$@ -stack:0x1000000 $(BLINK_FLAGS) \
1218             $(LIBFILES) $(PERLEXE_OBJ) $(SETARGV_OBJ) $(PERLIMPLIB) $(PERLEXE_RES)
1219 .ENDIF
1220         copy $(PERLEXE) $(WPERLEXE)
1221         $(MINIPERL) -I..\lib bin\exetype.pl $(WPERLEXE) WINDOWS
1222         copy splittree.pl ..
1223         $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR)
1224
1225 $(DYNALOADER).c: $(MINIPERL) $(EXTDIR)\DynaLoader\dl_win32.xs $(CONFIGPM)
1226         if not exist $(AUTODIR) mkdir $(AUTODIR)
1227         cd $(EXTDIR)\$(*B) && ..\$(MINIPERL) -I..\..\lib $(*B)_pm.PL
1228         cd $(EXTDIR)\$(*B) && ..\$(MINIPERL) -I..\..\lib XSLoader_pm.PL
1229         $(XCOPY) $(EXTDIR)\$(*B)\$(*B).pm $(LIBDIR)\$(NULL)
1230         $(XCOPY) $(EXTDIR)\$(*B)\XSLoader.pm $(LIBDIR)\$(NULL)
1231         cd $(EXTDIR)\$(*B) && $(XSUBPP) dl_win32.xs > $(*B).c
1232         $(XCOPY) $(EXTDIR)\$(*B)\dlutils.c .
1233
1234 $(EXTDIR)\DynaLoader\dl_win32.xs: dl_win32.xs
1235         copy dl_win32.xs $(EXTDIR)\DynaLoader\dl_win32.xs
1236
1237 MakePPPort: $(MINIPERL) $(CONFIGPM)
1238         $(MINIPERL) -I..\lib ..\mkppport
1239
1240 MakePPPort_clean:
1241         -if exist $(MINIPERL) $(MINIPERL) -I..\lib ..\mkppport --clean
1242
1243 #-------------------------------------------------------------------------------
1244 Extensions : buildext.pl $(PERLDEP) $(CONFIGPM)
1245         $(XCOPY) ..\*.h $(COREDIR)\*.*
1246         $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) --dynamic
1247         $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext --dynamic
1248
1249 Extensions_reonly : buildext.pl $(PERLDEP) $(CONFIGPM)
1250         $(XCOPY) ..\*.h $(COREDIR)\*.*
1251         $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) --dynamic +re
1252         $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext --dynamic +re
1253
1254 Extensions_static : buildext.pl
1255         $(XCOPY) ..\*.h $(COREDIR)\*.*
1256         $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) --static
1257         $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext --static
1258         $(MINIPERL) -I..\lib buildext.pl --list-static-libs > Extensions_static
1259
1260 Extensions_clean :
1261         -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) clean
1262         -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext clean
1263
1264 Extensions_realclean :
1265         -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) realclean
1266         -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext realclean
1267
1268 #-------------------------------------------------------------------------------
1269
1270
1271 doc: $(PERLEXE)
1272         $(PERLEXE) -I..\lib ..\installhtml --podroot=.. --htmldir=$(HTMLDIR) \
1273             --podpath=pod:lib:ext:utils --htmlroot="file://$(INST_HTML:s,:,|,)"\
1274             --libpod=perlfunc:perlguts:perlvar:perlrun:perlop --recurse
1275
1276 # Note that this next section is parsed (and regenerated) by pod/buildtoc
1277 # so please check that script before making structural changes here
1278 utils: $(PERLEXE) $(X2P)
1279         cd ..\utils && $(MAKE) PERL=$(MINIPERL)
1280         copy ..\vms\perlvms.pod ..\pod\perlvms.pod
1281         copy ..\README.aix      ..\pod\perlaix.pod
1282         copy ..\README.amiga    ..\pod\perlamiga.pod
1283         copy ..\README.apollo   ..\pod\perlapollo.pod
1284         copy ..\README.beos     ..\pod\perlbeos.pod
1285         copy ..\README.bs2000   ..\pod\perlbs2000.pod
1286         copy ..\README.ce       ..\pod\perlce.pod
1287         copy ..\README.cn       ..\pod\perlcn.pod
1288         copy ..\README.cygwin   ..\pod\perlcygwin.pod
1289         copy ..\README.dgux     ..\pod\perldgux.pod
1290         copy ..\README.dos      ..\pod\perldos.pod
1291         copy ..\README.epoc     ..\pod\perlepoc.pod
1292         copy ..\README.freebsd  ..\pod\perlfreebsd.pod
1293         copy ..\README.hpux     ..\pod\perlhpux.pod
1294         copy ..\README.hurd     ..\pod\perlhurd.pod
1295         copy ..\README.irix     ..\pod\perlirix.pod
1296         copy ..\README.jp       ..\pod\perljp.pod
1297         copy ..\README.ko       ..\pod\perlko.pod
1298         copy ..\README.linux    ..\pod\perllinux.pod
1299         copy ..\README.machten  ..\pod\perlmachten.pod
1300         copy ..\README.macos    ..\pod\perlmacos.pod
1301         copy ..\README.macosx   ..\pod\perlmacosx.pod
1302         copy ..\README.mint     ..\pod\perlmint.pod
1303         copy ..\README.mpeix    ..\pod\perlmpeix.pod
1304         copy ..\README.netware  ..\pod\perlnetware.pod
1305         copy ..\README.openbsd  ..\pod\perlopenbsd.pod
1306         copy ..\README.os2      ..\pod\perlos2.pod
1307         copy ..\README.os390    ..\pod\perlos390.pod
1308         copy ..\README.os400    ..\pod\perlos400.pod
1309         copy ..\README.plan9    ..\pod\perlplan9.pod
1310         copy ..\README.qnx      ..\pod\perlqnx.pod
1311         copy ..\README.riscos   ..\pod\perlriscos.pod
1312         copy ..\README.solaris  ..\pod\perlsolaris.pod
1313         copy ..\README.symbian  ..\pod\perlsymbian.pod
1314         copy ..\README.tru64    ..\pod\perltru64.pod
1315         copy ..\README.tw       ..\pod\perltw.pod
1316         copy ..\README.uts      ..\pod\perluts.pod
1317         copy ..\README.vmesa    ..\pod\perlvmesa.pod
1318         copy ..\README.vms      ..\pod\perlvms.pod
1319         copy ..\README.vos      ..\pod\perlvos.pod
1320         copy ..\README.win32    ..\pod\perlwin32.pod
1321         copy ..\pod\perl595delta.pod ..\pod\perldelta.pod
1322         cd ..\pod && $(MAKE) -f ..\win32\pod.mak converters
1323         cd ..\lib && $(PERLEXE) lib_pm.PL
1324         $(PERLEXE) $(PL2BAT) $(UTILS)
1325
1326 # Note that the pod cleanup in this next section is parsed (and regenerated
1327 # by pod/buildtoc so please check that script before making changes here
1328
1329 distclean: realclean
1330         -del /f $(MINIPERL) $(PERLEXE) $(PERLDLL) $(GLOBEXE) \
1331                 $(PERLIMPLIB) ..\miniperl$(a) $(MINIMOD)
1332         -del /f *.def *.map
1333         -del /f $(DYNALOADER).c
1334         -del /f $(EXTDIR)\DynaLoader\dl_win32.xs
1335         -del /f $(EXTDIR)\DynaLoader\DynaLoader.pm
1336         -del /f $(EXTDIR)\DynaLoader\XSLoader.pm
1337         -del /f $(LIBDIR)\Encode.pm $(LIBDIR)\encoding.pm $(LIBDIR)\Errno.pm
1338         -del /f $(LIBDIR)\Config.pod $(LIBDIR)\POSIX.pod $(LIBDIR)\threads.pm
1339         -del /f $(LIBDIR)\.exists $(LIBDIR)\attrs.pm $(LIBDIR)\DynaLoader.pm
1340         -del /f $(LIBDIR)\XSLoader.pm $(LIBDIR)\lib.pm
1341         -del /f $(LIBDIR)\Fcntl.pm $(LIBDIR)\IO.pm $(LIBDIR)\Opcode.pm
1342         -del /f $(LIBDIR)\ops.pm $(LIBDIR)\Safe.pm
1343         -del /f $(LIBDIR)\SDBM_File.pm $(LIBDIR)\Socket.pm $(LIBDIR)\POSIX.pm
1344         -del /f $(LIBDIR)\B.pm $(LIBDIR)\O.pm $(LIBDIR)\re.pm
1345         -del /f $(LIBDIR)\ByteLoader.pm
1346         -del /f $(LIBDIR)\Devel\Peek.pm $(LIBDIR)\Devel\DProf.pm
1347         -del /f $(LIBDIR)\Devel\PPPort.pm
1348         -del /f $(LIBDIR)\File\Glob.pm
1349         -del /f $(LIBDIR)\Storable.pm
1350         -del /f $(LIBDIR)\Digest\MD5.pm
1351         -del /f $(LIBDIR)\Digest\SHA.pm
1352         -del /f $(LIBDIR)\PerlIO\encoding.pm
1353         -del /f $(LIBDIR)\PerlIO\scalar.pm
1354         -del /f $(LIBDIR)\PerlIO\via.pm
1355         -del /f $(LIBDIR)\Sys\Hostname.pm
1356         -del /f $(LIBDIR)\Thread\Signal.pm $(LIBDIR)\Thread\Specific.pm
1357         -del /f $(LIBDIR)\threads\shared.pm
1358         -del /f $(LIBDIR)\Time\HiRes.pm
1359         -del /f $(LIBDIR)\Unicode\Normalize.pm
1360         -del /f $(LIBDIR)\Math\BigInt\FastCalc.pm
1361         -del /f $(LIBDIR)\Win32.pm
1362         -del /f $(LIBDIR)\Win32API\File.pm
1363         -del /f $(LIBDIR)\Win32API\File\cFile.pc
1364         -if exist $(LIBDIR)\B rmdir /s /q $(LIBDIR)\B
1365         -if exist $(LIBDIR)\Compress rmdir /s /q $(LIBDIR)\Compress
1366         -if exist $(LIBDIR)\Data rmdir /s /q $(LIBDIR)\Data
1367         -if exist $(LIBDIR)\Encode rmdir /s /q $(LIBDIR)\Encode
1368         -if exist $(LIBDIR)\Filter\Util rmdir /s /q $(LIBDIR)\Filter\Util
1369         -if exist $(LIBDIR)\Hash rmdir /s /q $(LIBDIR)\Hash
1370         -if exist $(LIBDIR)\IO\Compress rmdir /s /q $(LIBDIR)\IO\Compress
1371         -if exist $(LIBDIR)\IO\Socket rmdir /s /q $(LIBDIR)\IO\Socket
1372         -if exist $(LIBDIR)\IO\Uncompress rmdir /s /q $(LIBDIR)\IO\Uncompress
1373         -if exist $(LIBDIR)\List rmdir /s /q $(LIBDIR)\List
1374         -if exist $(LIBDIR)\MIME rmdir /s /q $(LIBDIR)\MIME
1375         -if exist $(LIBDIR)\Scalar rmdir /s /q $(LIBDIR)\Scalar
1376         -if exist $(LIBDIR)\Sys rmdir /s /q $(LIBDIR)\Sys
1377         -if exist $(LIBDIR)\threads rmdir /s /q $(LIBDIR)\threads
1378         -if exist $(LIBDIR)\XS rmdir /s /q $(LIBDIR)\XS
1379         -if exist $(LIBDIR)\Win32API rmdir /s /q $(LIBDIR)\Win32API
1380         -cd $(PODDIR) && del /f *.html *.bat checkpods \
1381             perlaix.pod perlamiga.pod perlapollo.pod perlbeos.pod \
1382             perlbs2000.pod perlce.pod perlcn.pod perlcygwin.pod \
1383             perldelta.pod perldgux.pod perldos.pod perlepoc.pod \
1384             perlfreebsd.pod perlhpux.pod perlhurd.pod perlirix.pod \
1385             perljp.pod perlko.pod perllinux.pod perlmachten.pod \
1386             perlmacos.pod perlmacosx.pod perlmint.pod perlmpeix.pod \
1387             perlnetware.pod perlopenbsd.pod perlos2.pod perlos390.pod \
1388             perlos400.pod perlplan9.pod perlqnx.pod perlriscos.pod \
1389             perlsolaris.pod perlsymbian.pod perltru64.pod perltw.pod \
1390             perluts.pod perlvmesa.pod perlvms.pod perlvms.pod perlvos.pod \
1391             perlwin32.pod \
1392             pod2html pod2latex pod2man pod2text pod2usage \
1393             podchecker podselect
1394         -cd ..\utils && del /f h2ph splain perlbug pl2pm c2ph pstruct h2xs \
1395             perldoc perlivp dprofpp libnetcfg enc2xs piconv cpan *.bat \
1396             xsubpp instmodsh prove ptar ptardiff shasum corelist config_data
1397         -cd ..\x2p && del /f find2perl s2p psed *.bat
1398         -del /f ..\config.sh ..\splittree.pl perlmain.c dlutils.c config.h.new
1399         -del /f $(CONFIGPM)
1400         -del /f bin\*.bat
1401         -del /f perllibst.h
1402         -del /f $(PERLEXE_ICO) perl.base
1403         -cd .. && del /s *$(a) *.map *.pdb *.ilk *.tds *.bs *$(o) .exists pm_to_blib
1404         -cd $(EXTDIR) && del /s *.def Makefile Makefile.old
1405         -if exist $(AUTODIR) rmdir /s /q $(AUTODIR)
1406         -if exist $(COREDIR) rmdir /s /q $(COREDIR)
1407         -if exist pod2htmd.tmp del pod2htmd.tmp
1408         -if exist pod2htmi.tmp del pod2htmi.tmp
1409         -if exist $(HTMLDIR) rmdir /s /q $(HTMLDIR)
1410
1411 install : all installbare installhtml
1412
1413 installbare : $(RIGHTMAKE) utils
1414         $(PERLEXE) ..\installperl
1415         if exist $(WPERLEXE) $(XCOPY) $(WPERLEXE) $(INST_BIN)\*.*
1416         $(XCOPY) $(GLOBEXE) $(INST_BIN)\*.*
1417         if exist ..\perl*.pdb $(XCOPY) ..\perl*.pdb $(INST_BIN)\*.*
1418         if exist ..\x2p\a2p.pdb $(XCOPY) ..\x2p\a2p.pdb $(INST_BIN)\*.*
1419         $(XCOPY) bin\*.bat $(INST_SCRIPT)\*.*
1420
1421 installhtml : doc
1422         $(RCOPY) $(HTMLDIR)\*.* $(INST_HTML)\*.*
1423
1424 inst_lib : $(CONFIGPM)
1425         copy splittree.pl ..
1426         $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR)
1427         $(RCOPY) ..\lib $(INST_LIB)\*.*
1428
1429 $(UNIDATAFILES) .UPDATEALL : $(MINIPERL) $(CONFIGPM) ..\lib\unicore\mktables
1430         cd ..\lib\unicore && \
1431         ..\$(MINIPERL) -I.. mktables
1432
1433 minitest : $(MINIPERL) $(GLOBEXE) $(CONFIGPM) $(UNIDATAFILES) utils
1434         $(XCOPY) $(MINIPERL) ..\t\$(NULL)
1435         if exist ..\t\perl.exe del /f ..\t\perl.exe
1436         rename ..\t\miniperl.exe perl.exe
1437 .IF "$(CCTYPE)" == "BORLAND"
1438         $(XCOPY) $(GLOBBAT) ..\t\$(NULL)
1439 .ELSE
1440         $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1441 .ENDIF
1442         attrib -r ..\t\*.*
1443         cd ..\t && \
1444         $(MINIPERL) -I..\lib harness base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t
1445
1446 test-prep : all utils
1447         $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1448         $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1449 .IF "$(CCTYPE)" == "BORLAND"
1450         $(XCOPY) $(GLOBBAT) ..\t\$(NULL)
1451 .ELSE
1452         $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1453 .ENDIF
1454
1455 test : $(RIGHTMAKE) test-prep
1456         cd ..\t && $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES)
1457
1458 test-reonly : reonly utils
1459         $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1460         $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1461         $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1462         cd ..\t && \
1463         $(PERLEXE) -I..\lib harness $(OPT) -re \bpat\b \breg \bre\b $(EXTRA) && \
1464         cd ..\win32
1465
1466 regen :
1467         cd .. && regen.pl && cd win32
1468
1469 regnodes :
1470         cd .. && regcomp.pl && cd win32
1471
1472 test-notty : test-prep
1473         set PERL_SKIP_TTY_TEST=1 && \
1474             cd ..\t && $(PERLEXE) -I.\lib harness $(TEST_SWITCHES) $(TEST_FILES)
1475
1476 _test : $(RIGHTMAKE)
1477         $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1478         $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1479 .IF "$(CCTYPE)" == "BORLAND"
1480         $(XCOPY) $(GLOBBAT) ..\t\$(NULL)
1481 .ELSE
1482         $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1483 .ENDIF
1484         cd ..\t && $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES)
1485
1486 _clean :
1487         -@erase miniperlmain$(o)
1488         -@erase $(MINIPERL)
1489         -@erase perlglob$(o)
1490         -@erase perlmain$(o)
1491         -@erase config.w32
1492         -@erase /f config.h
1493         -@erase $(GLOBEXE)
1494         -@erase $(PERLEXE)
1495         -@erase $(WPERLEXE)
1496         -@erase $(PERLDLL)
1497         -@erase $(CORE_OBJ)
1498         -if exist $(MINIDIR) rmdir /s /q $(MINIDIR)
1499         -if exist $(UNIDATADIR1) rmdir /s /q $(UNIDATADIR1)
1500         -if exist $(UNIDATADIR2) rmdir /s /q $(UNIDATADIR2)
1501         -@erase $(UNIDATAFILES)
1502         -@erase $(WIN32_OBJ)
1503         -@erase $(DLL_OBJ)
1504         -@erase $(X2P_OBJ)
1505         -@erase ..\*$(o) ..\*$(a) ..\*.exp *$(o) *$(a) *.exp *.res
1506         -@erase ..\t\*.exe ..\t\*.dll ..\t\*.bat
1507         -@erase ..\x2p\*.exe ..\x2p\*.bat
1508         -@erase *.ilk
1509         -@erase *.pdb
1510         -@erase *.tds
1511         -@erase Extensions_static
1512
1513 clean : Extensions_clean _clean
1514
1515 realclean : Extensions_realclean MakePPPort_clean _clean
1516
1517 # Handy way to run perlbug -ok without having to install and run the
1518 # installed perlbug. We don't re-run the tests here - we trust the user.
1519 # Please *don't* use this unless all tests pass.
1520 # If you want to report test failures, use "dmake nok" instead.
1521 ok: utils
1522         $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)"
1523
1524 okfile: utils
1525         $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)" -F perl.ok
1526
1527 nok: utils
1528         $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)"
1529
1530 nokfile: utils
1531         $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)" -F perl.nok