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