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