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