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