Make PL_uudmap a constant global. Remove the run time initialisation
[p5sagit/p5-mst-13.2.git] / win32 / Makefile
1 #
2 # Makefile to build perl on Windows NT using Microsoft NMAKE.
3 # Supported compilers:
4 #       Visual C++ 2.0 or later
5 #       MS Platform SDK 64-bit compiler and tools
6 #
7 # This is set up to build a perl.exe that runs off a shared library
8 # (perl59.dll).  Also makes individual DLLs for the XS extensions.
9 #
10
11 ##
12 ## Make sure you read README.win32 *before* you mess with anything here!
13 ##
14
15 ##
16 ## Build configuration.  Edit the values below to suit your needs.
17 ##
18
19 #
20 # Set these to wherever you want "nmake install" to put your
21 # newly built perl.
22 #
23 INST_DRV        = c:
24 INST_TOP        = $(INST_DRV)\perl
25
26 #
27 # Comment this out if you DON'T want your perl installation to be versioned.
28 # This means that the new installation will overwrite any files from the
29 # old installation at the same INST_TOP location.  Leaving it enabled is
30 # the safest route, as perl adds the extra version directory to all the
31 # locations it installs files to.  If you disable it, an alternative
32 # versioned installation can be obtained by setting INST_TOP above to a
33 # path that includes an arbitrary version string.
34 #
35 #INST_VER       = \5.9.5
36
37 #
38 # Comment this out if you DON'T want your perl installation to have
39 # architecture specific components.  This means that architecture-
40 # specific files will be installed along with the architecture-neutral
41 # files.  Leaving it enabled is safer and more flexible, in case you
42 # want to build multiple flavors of perl and install them together in
43 # the same location.  Commenting it out gives you a simpler
44 # installation that is easier to understand for beginners.
45 #
46 #INST_ARCH      = \$(ARCHNAME)
47
48 #
49 # Uncomment this if you want perl to run
50 #       $Config{sitelibexp}\sitecustomize.pl
51 # before anything else.  This script can then be set up, for example,
52 # to add additional entries to @INC.
53 #
54 #USE_SITECUST   = define
55
56 #
57 # uncomment to enable multiple interpreters.  This is need for fork()
58 # emulation and for thread support.
59 #
60 USE_MULTI       = define
61
62 #
63 # Beginnings of interpreter cloning/threads; now reasonably complete.
64 # This should be enabled to get the fork() emulation.  This needs
65 # USE_MULTI as well.
66 #
67 USE_ITHREADS    = define
68
69 #
70 # uncomment to enable the implicit "host" layer for all system calls
71 # made by perl.  This needs USE_MULTI above.  This is also needed to
72 # get fork().
73 #
74 USE_IMP_SYS     = define
75
76 #
77 # Comment out next assign to disable perl's I/O subsystem and use compiler's 
78 # stdio for IO - depending on your compiler vendor and run time library you may 
79 # then get a number of fails from make test i.e. bugs - complain to them not us ;-). 
80 # You will also be unable to take full advantage of perl5.8's support for multiple 
81 # encodings and may see lower IO performance. You have been warned.
82 USE_PERLIO      = define
83
84 #
85 # Comment this out if you don't want to enable large file support for
86 # some reason.  Should normally only be changed to maintain compatibility
87 # with an older release of perl.
88 USE_LARGE_FILES = define
89
90 #
91 # uncomment exactly one of the following
92 #
93 # Visual C++ 2.x
94 #CCTYPE         = MSVC20
95 # Visual C++ > 2.x and < 6.x
96 #CCTYPE         = MSVC
97 # Visual C++ 6.x (aka Visual C++ 98)
98 CCTYPE          = MSVC60
99 # Visual C++ Toolkit 2003 (aka Visual C++ 7.x) (free command-line tools)
100 #CCTYPE         = MSVC70FREE
101 # Visual C++ .NET 2003 (aka Visual C++ 7.x) (full version)
102 #CCTYPE         = MSVC70
103 # Visual C++ 2005 Express Edition (aka Visual C++ 8.x) (free version)
104 #CCTYPE         = MSVC80FREE
105 # Visual C++ 2005 (aka Visual C++ 8.x) (full version)
106 #CCTYPE         = MSVC80
107
108 #
109 # uncomment next line if you want debug version of perl (big,slow)
110 # If not enabled, we automatically try to use maximum optimization
111 # with all compilers that are known to have a working optimizer.
112 #
113 #CFG            = Debug
114
115 #
116 # uncomment to enable use of PerlCRT.DLL when using the Visual C compiler.
117 # It has patches that fix known bugs in older versions of MSVCRT.DLL.
118 # This currently requires VC 5.0 with Service Pack 3 or later.
119 # Get it from CPAN at http://www.cpan.org/authors/id/D/DO/DOUGL/
120 # and follow the directions in the package to install.
121 #
122 # Not recommended if you have VC 6.x and you're not running Windows 9x.
123 #
124 #USE_PERLCRT    = define
125
126 #
127 # uncomment to enable linking with setargv.obj under the Visual C
128 # compiler. Setting this options enables perl to expand wildcards in
129 # arguments, but it may be harder to use alternate methods like
130 # File::DosGlob that are more powerful.  This option is supported only with
131 # Visual C.
132 #
133 #USE_SETARGV    = define
134
135 #
136 # if you want to have the crypt() builtin function implemented, leave this or
137 # CRYPT_LIB uncommented.  The fcrypt.c file named here contains a suitable
138 # version of des_fcrypt().
139 #
140 CRYPT_SRC       = fcrypt.c
141
142 #
143 # if you didn't set CRYPT_SRC and if you have des_fcrypt() available in a
144 # library, uncomment this, and make sure the library exists (see README.win32)
145 # Specify the full pathname of the library.
146 #
147 #CRYPT_LIB      = fcrypt.lib
148
149 #
150 # set this if you wish to use perl's malloc
151 # WARNING: Turning this on/off WILL break binary compatibility with extensions
152 # you may have compiled with/without it.  Be prepared to recompile all
153 # extensions if you change the default.  Currently, this cannot be enabled
154 # if you ask for USE_IMP_SYS above.
155 #
156 #PERL_MALLOC    = define
157
158 #
159 # set this to enable debugging mstats
160 # This must be enabled to use the Devel::Peek::mstat() function.  This cannot
161 # be enabled without PERL_MALLOC as well.
162 #
163 #DEBUG_MSTATS   = define
164
165 #
166 # set this to additionally provide a statically linked perl-static.exe.
167 # Note that dynamic loading will not work with this perl, so you must
168 # include required modules statically using STATIC_EXT variable below.
169 # A static library perl59s.lib will also be created.
170 # Ordinary perl.exe is not affected by this option.
171 #
172 #BUILD_STATIC   = define
173
174 #
175 #
176 # set the install locations of the compiler include/libraries
177 # Running VCVARS32.BAT is *required* when using Visual C.
178 # Some versions of Visual C don't define MSVCDIR in the environment,
179 # so you may have to set CCHOME explicitly (spaces in the path name should
180 # not be quoted)
181 #
182 #CCHOME         = f:\msvc20
183 CCHOME          = $(MSVCDIR)
184 CCINCDIR        = $(CCHOME)\include
185 CCLIBDIR        = $(CCHOME)\lib
186
187 #
188 # Additional compiler flags can be specified here.
189 #
190 BUILDOPT        = $(BUILDOPTEXTRA)
191
192 #
193 # Adding -DPERL_HASH_SEED_EXPLICIT will disable randomization of Perl's
194 # internal hash function unless the PERL_HASH_SEED environment variable is set.
195 # Alternatively, adding -DNO_HASH_SEED will completely disable the
196 # randomization feature. 
197 # The latter is required to maintain binary compatibility with Perl 5.8.0.
198 #
199 #BUILDOPT       = $(BUILDOPT) -DPERL_HASH_SEED_EXPLICIT
200 #BUILDOPT       = $(BUILDOPT) -DNO_HASH_SEED
201
202 #
203 # This should normally be disabled.  Adding -DPERL_POLLUTE enables support
204 # for old symbols by default, at the expense of extreme pollution.  You most
205 # probably just want to build modules that won't compile with
206 #         perl Makefile.PL POLLUTE=1
207 # instead of enabling this.  Please report such modules to the respective
208 # authors.
209 #
210 #BUILDOPT       = $(BUILDOPT) -DPERL_POLLUTE
211
212 #
213 # This should normally be disabled.  Enabling it will disable the File::Glob
214 # implementation of CORE::glob.
215 #
216 #BUILDOPT       = $(BUILDOPT) -DPERL_EXTERNAL_GLOB
217
218 #
219 # This should normally be disabled.  Enabling it causes perl to read scripts
220 # in text mode (which is the 5.005 behavior) and will break ByteLoader.
221 #
222 #BUILDOPT       = $(BUILDOPT) -DPERL_TEXTMODE_SCRIPTS
223
224 #
225 # specify semicolon-separated list of extra directories that modules will
226 # look for libraries (spaces in path names need not be quoted)
227 #
228 EXTRALIBDIRS    =
229
230 #
231 # set this to your email address (perl will guess a value from
232 # from your loginname and your hostname, which may not be right)
233 #
234 #EMAIL          =
235
236 ##
237 ## Build configuration ends.
238 ##
239
240 ##################### CHANGE THESE ONLY IF YOU MUST #####################
241
242 !IF "$(CRYPT_SRC)$(CRYPT_LIB)" == ""
243 D_CRYPT         = undef
244 !ELSE
245 D_CRYPT         = define
246 CRYPT_FLAG      = -DHAVE_DES_FCRYPT
247 !ENDIF
248
249 !IF "$(USE_IMP_SYS)" == "define"
250 PERL_MALLOC     = undef
251 DEBUG_MSTATS    = undef
252 !ENDIF
253
254 !IF "$(PERL_MALLOC)" == ""
255 PERL_MALLOC     = undef
256 DEBUG_MSTATS    = undef
257 !ENDIF
258
259 !IF "$(DEBUG_MSTATS)" == ""
260 DEBUG_MSTATS    = undef
261 !ENDIF
262
263 !IF "$(DEBUG_MSTATS)" == "define"
264 BUILDOPT        = $(BUILDOPT) -DPERL_DEBUGGING_MSTATS
265 !ENDIF
266
267 !IF "$(USE_SITECUST)" == ""
268 USE_SITECUST    = undef
269 !ENDIF
270
271 !IF "$(USE_MULTI)" == ""
272 USE_MULTI       = undef
273 !ENDIF
274
275 !IF "$(USE_ITHREADS)" == ""
276 USE_ITHREADS    = undef
277 !ENDIF
278
279 !IF "$(USE_IMP_SYS)" == ""
280 USE_IMP_SYS     = undef
281 !ENDIF
282
283 !IF "$(USE_PERLIO)" == ""
284 USE_PERLIO      = undef
285 !ENDIF
286
287 !IF "$(USE_LARGE_FILES)" == ""
288 USE_LARGE_FILES = undef
289 !ENDIF
290
291 !IF "$(USE_PERLCRT)" == ""
292 USE_PERLCRT     = undef
293 !ENDIF
294
295 !IF "$(USE_IMP_SYS)$(USE_MULTI)" == "defineundef"
296 USE_MULTI       = define
297 !ENDIF
298
299 !IF "$(USE_ITHREADS)$(USE_MULTI)" == "defineundef"
300 USE_MULTI       = define
301 !ENDIF
302
303 !IF "$(USE_SITECUST)" == "define"
304 BUILDOPT        = $(BUILDOPT) -DUSE_SITECUSTOMIZE
305 !ENDIF
306
307 !IF "$(USE_MULTI)" != "undef"
308 BUILDOPT        = $(BUILDOPT) -DPERL_IMPLICIT_CONTEXT
309 !ENDIF
310
311 !IF "$(USE_IMP_SYS)" != "undef"
312 BUILDOPT        = $(BUILDOPT) -DPERL_IMPLICIT_SYS
313 !ENDIF
314
315 !IF "$(PROCESSOR_ARCHITECTURE)" == ""
316 PROCESSOR_ARCHITECTURE  = x86
317 !ENDIF
318
319 !IF "$(WIN64)" == ""
320 # When we are running from a 32bit cmd.exe on AMD64 then
321 # PROCESSOR_ARCHITECTURE is set to x86 and PROCESSOR_ARCHITEW6432
322 # is set to AMD64
323 !IF "$(PROCESSOR_ARCHITEW6432)" != ""
324 PROCESSOR_ARCHITECTURE  = $(PROCESSOR_ARCHITEW6432)
325 WIN64                   = define
326 !ELSE
327 !IF "$(PROCESSOR_ARCHITECTURE)" == "AMD64" || "$(PROCESSOR_ARCHITECTURE)" == "IA64"
328 WIN64                   = define
329 !ELSE
330 WIN64                   = undef
331 !ENDIF
332 !ENDIF
333 !ENDIF
334
335 ARCHITECTURE = $(PROCESSOR_ARCHITECTURE)
336 !IF "$(ARCHITECTURE)" == "AMD64"
337 ARCHITECTURE    = x64
338 !ENDIF
339 !IF "$(ARCHITECTURE)" == "IA64"
340 ARCHITECTURE    = ia64
341 !ENDIF
342
343 !IF "$(USE_MULTI)" == "define"
344 ARCHNAME        = MSWin32-$(ARCHITECTURE)-multi
345 !ELSE
346 !IF "$(USE_PERLIO)" == "define"
347 ARCHNAME        = MSWin32-$(ARCHITECTURE)-perlio
348 !ELSE
349 ARCHNAME        = MSWin32-$(ARCHITECTURE)
350 !ENDIF
351 !ENDIF
352
353 !IF "$(USE_PERLIO)" == "define"
354 BUILDOPT        = $(BUILDOPT) -DUSE_PERLIO
355 !ENDIF
356
357 !IF "$(USE_ITHREADS)" == "define"
358 ARCHNAME        = $(ARCHNAME)-thread
359 !ENDIF
360
361 # Visual C++ 98, .NET 2003 and 2005 specific.
362 # VC++ 6.x, 7.x and 8.x can load DLL's on demand.  Makes the test suite run in
363 # about 10% less time.  (The free version of 7.x can't do this, but the free
364 # version of 8.x can.)
365 !IF "$(CCTYPE)" == "MSVC60" || "$(CCTYPE)" == "MSVC70" || \
366     "$(CCTYPE)" == "MSVC80" || "$(CCTYPE)" == "MSVC80FREE"
367 DELAYLOAD       = -DELAYLOAD:ws2_32.dll -DELAYLOAD:shell32.dll delayimp.lib
368 !ENDIF
369
370 # Visual C++ 2005 (VC++ 8.x) creates manifest files for EXEs and DLLs. These
371 # either need copying everywhere with the binaries, or else need embedding in
372 # them otherwise MSVCR80.dll won't be found. Embed them for simplicity, and
373 # delete them afterwards so that they don't get installed too.
374 !IF "$(CCTYPE)" == "MSVC80" || "$(CCTYPE)" == "MSVC80FREE"
375 EMBED_EXE_MANI  = mt -nologo -manifest $@.manifest -outputresource:$@;1 && \
376                   del $@.manifest
377 EMBED_DLL_MANI  = mt -nologo -manifest $@.manifest -outputresource:$@;2 && \
378                   del $@.manifest
379 !ENDIF
380
381 ARCHDIR         = ..\lib\$(ARCHNAME)
382 COREDIR         = ..\lib\CORE
383 AUTODIR         = ..\lib\auto
384 LIBDIR          = ..\lib
385 EXTDIR          = ..\ext
386 PODDIR          = ..\pod
387 EXTUTILSDIR     = $(LIBDIR)\ExtUtils
388 HTMLDIR         = .\html
389
390 #
391 INST_SCRIPT     = $(INST_TOP)$(INST_VER)\bin
392 INST_BIN        = $(INST_SCRIPT)$(INST_ARCH)
393 INST_LIB        = $(INST_TOP)$(INST_VER)\lib
394 INST_ARCHLIB    = $(INST_LIB)$(INST_ARCH)
395 INST_COREDIR    = $(INST_ARCHLIB)\CORE
396 INST_HTML       = $(INST_TOP)$(INST_VER)\html
397
398 #
399 # Programs to compile, build .lib files and link
400 #
401
402 CC              = cl
403 LINK32          = link
404 LIB32           = $(LINK32) -lib
405 RSC             = rc
406
407 #
408 # Options
409 #
410
411 INCLUDES        = -I$(COREDIR) -I.\include -I. -I..
412 #PCHFLAGS       = -Fpc:\temp\vcmoduls.pch -YX
413 DEFINES         = -DWIN32 -D_CONSOLE -DNO_STRICT $(CRYPT_FLAG)
414 LOCDEFS         = -DPERLDLL -DPERL_CORE
415 SUBSYS          = console
416 CXX_FLAG        = -TP -EHsc
417
418 !IF "$(USE_PERLCRT)" != "define"
419 LIBC    = msvcrt.lib
420 !ELSE
421 LIBC    = PerlCRT.lib
422 !ENDIF
423
424 !IF  "$(CFG)" == "Debug"
425 !  IF "$(CCTYPE)" == "MSVC20"
426 OPTIMIZE        = -Od -MD -Z7 -DDEBUGGING
427 !  ELSE
428 OPTIMIZE        = -Od -MD -Zi -DDEBUGGING
429 !  ENDIF
430 LINK_DBG        = -debug
431 !ELSE
432 OPTIMIZE        = -MD -Zi -DNDEBUG
433 # we enable debug symbols in release builds also
434 LINK_DBG        = -debug -opt:ref,icf
435 # you may want to enable this if you want COFF symbols in the executables
436 # in addition to the PDB symbols.  The default Dr. Watson that ships with
437 # Windows can use the the former but not latter.  The free WinDbg can be
438 # installed to get better stack traces from just the PDB symbols, so we
439 # avoid the bloat of COFF symbols by default.
440 #LINK_DBG       = $(LINK_DBG) -debugtype:both
441 !  IF "$(WIN64)" == "define"
442 # enable Whole Program Optimizations (WPO) and Link Time Code Generation (LTCG)
443 OPTIMIZE        = $(OPTIMIZE) -Ox -GL
444 LINK_DBG        = $(LINK_DBG) -ltcg
445 !  ELSE
446 # -O1 yields smaller code, which turns out to be faster than -O2 on x86
447 OPTIMIZE        = $(OPTIMIZE) -O1
448 #OPTIMIZE       = $(OPTIMIZE) -O2
449 !  ENDIF
450 !ENDIF
451
452 !IF "$(WIN64)" == "define"
453 DEFINES         = $(DEFINES) -DWIN64 -DCONSERVATIVE
454 OPTIMIZE        = $(OPTIMIZE) -Wp64 -fp:precise
455 !ENDIF
456
457 # For now, silence VC++ 8.x's warnings about "unsafe" CRT functions and POSIX
458 # CRT function names being deprecated.
459 !IF "$(CCTYPE)" == "MSVC80" || "$(CCTYPE)" == "MSVC80FREE"
460 DEFINES         = $(DEFINES) -D_CRT_SECURE_NO_DEPRECATE -wd4996
461 !ENDIF
462
463 # Use the MSVCRT read() fix if the PerlCRT was not chosen, but only when using
464 # VC++ 6.x or earlier. Later versions use MSVCR70.dll, MSVCR71.dll, etc, which
465 # do not require the fix.
466 !IF "$(CCTYPE)" == "MSVC20" || "$(CCTYPE)" == "MSVC" || "$(CCTYPE)" == "MSVC60" 
467 !  IF "$(USE_PERLCRT)" != "define"
468 BUILDOPT        = $(BUILDOPT) -DPERL_MSVCRT_READFIX
469 !  ENDIF
470 !ENDIF
471
472 LIBBASEFILES    = $(CRYPT_LIB) \
473                 oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.lib \
474                 comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \
475                 netapi32.lib uuid.lib ws2_32.lib mpr.lib winmm.lib \
476                 version.lib odbc32.lib odbccp32.lib
477
478 # The 64 bit Platform SDK compilers contain a runtime library that doesn't
479 # include the buffer overrun verification code used by the /GS switch.
480 # Since the code links against libraries that are compiled with /GS, this
481 # "security cookie verification" must be included via bufferoverlow.lib.
482 !IF "$(WIN64)" == "define"
483 LIBBASEFILES    = $(LIBBASEFILES) bufferoverflowU.lib
484 !ENDIF
485
486 # we add LIBC here, since we may be using PerlCRT.dll
487 LIBFILES        = $(LIBBASEFILES) $(LIBC)
488
489 #EXTRACFLAGS    = -nologo -GF -W4 -wd4127 -wd4706
490 EXTRACFLAGS     = -nologo -GF -W3
491 CFLAGS          = $(EXTRACFLAGS) $(INCLUDES) $(DEFINES) $(LOCDEFS) \
492                 $(PCHFLAGS) $(OPTIMIZE)
493 LINK_FLAGS      = -nologo -nodefaultlib $(LINK_DBG) \
494                 -libpath:"$(INST_COREDIR)" \
495                 -machine:$(PROCESSOR_ARCHITECTURE)
496 LIB_FLAGS       = -nologo
497 OBJOUT_FLAG     = -Fo
498 EXEOUT_FLAG     = -Fe
499
500 CFLAGS_O        = $(CFLAGS) $(BUILDOPT)
501
502 #################### do not edit below this line #######################
503 ############# NO USER-SERVICEABLE PARTS BEYOND THIS POINT ##############
504
505 o = .obj
506
507 #
508 # Rules
509 #
510
511 .SUFFIXES : .c $(o) .dll .lib .exe .rc .res
512
513 .c$(o):
514         $(CC) -c -I$(<D) $(CFLAGS_O) $(OBJOUT_FLAG)$@ $<
515
516 .y.c:
517         $(NOOP)
518
519 $(o).dll:
520         $(LINK32) -dll -subsystem:windows -implib:$(*B).lib -def:$(*B).def \
521             -out:$@ $(LINK_FLAGS) $(LIBFILES) $< $(LIBPERL)
522         $(EMBED_DLL_MANI)
523
524 .rc.res:
525         $(RSC) -i.. $<
526
527 #
528 # various targets
529
530 # makedef.pl must be updated if this changes, and this should normally
531 # only change when there is an incompatible revision of the public API.
532 PERLIMPLIB      = ..\perl59.lib
533 PERLSTATICLIB   = ..\perl59s.lib
534 PERLDLL         = ..\perl59.dll
535
536 MINIPERL        = ..\miniperl.exe
537 MINIDIR         = .\mini
538 PERLEXE         = ..\perl.exe
539 WPERLEXE        = ..\wperl.exe
540 PERLEXESTATIC   = ..\perl-static.exe
541 GLOBEXE         = ..\perlglob.exe
542 CONFIGPM        = ..\lib\Config.pm ..\lib\Config_heavy.pl
543 MINIMOD         = ..\lib\ExtUtils\Miniperl.pm
544 X2P             = ..\x2p\a2p.exe
545 !IF "$(BUILD_STATIC)" == "define"
546 PERLSTATIC      = static
547 !ELSE
548 PERLSTATIC      = 
549 !ENDIF
550   
551 # Unicode data files generated by mktables
552 FIRSTUNIFILE     = ..\lib\unicore\Canonical.pl
553 UNIDATAFILES     = ..\lib\unicore\Canonical.pl ..\lib\unicore\Exact.pl \
554                    ..\lib\unicore\Properties ..\lib\unicore\Decomposition.pl \
555                    ..\lib\unicore\CombiningClass.pl ..\lib\unicore\Name.pl \
556                    ..\lib\unicore\PVA.pl
557
558 # Directories of Unicode data files generated by mktables
559 UNIDATADIR1     = ..\lib\unicore\To
560 UNIDATADIR2     = ..\lib\unicore\lib
561
562 PERLEXE_ICO     = .\perlexe.ico
563 PERLEXE_RES     = .\perlexe.res
564 PERLDLL_RES     =
565
566 # Nominate a target which causes extensions to be re-built
567 # This used to be $(PERLEXE), but at worst it is the .dll that they depend
568 # on and really only the interface - i.e. the .def file used to export symbols
569 # from the .dll
570 PERLDEP         = perldll.def
571
572 PL2BAT          = bin\pl2bat.pl
573 GLOBBAT         = bin\perlglob.bat
574
575 UTILS           =                       \
576                 ..\utils\h2ph           \
577                 ..\utils\splain         \
578                 ..\utils\dprofpp        \
579                 ..\utils\perlbug        \
580                 ..\utils\pl2pm          \
581                 ..\utils\c2ph           \
582                 ..\utils\pstruct        \
583                 ..\utils\h2xs           \
584                 ..\utils\perldoc        \
585                 ..\utils\perlivp        \
586                 ..\utils\libnetcfg      \
587                 ..\utils\enc2xs         \
588                 ..\utils\piconv         \
589                 ..\utils\config_data    \
590                 ..\utils\corelist       \
591                 ..\utils\cpan           \
592                 ..\utils\xsubpp         \
593                 ..\utils\prove          \
594                 ..\utils\ptar           \
595                 ..\utils\ptardiff       \
596                 ..\utils\cpanp-run-perl \
597                 ..\utils\cpanp  \
598                 ..\utils\cpan2dist      \
599                 ..\utils\shasum         \
600                 ..\utils\instmodsh      \
601                 ..\pod\checkpods        \
602                 ..\pod\pod2html         \
603                 ..\pod\pod2latex        \
604                 ..\pod\pod2man          \
605                 ..\pod\pod2text         \
606                 ..\pod\pod2usage        \
607                 ..\pod\podchecker       \
608                 ..\pod\podselect        \
609                 ..\x2p\find2perl        \
610                 ..\x2p\psed             \
611                 ..\x2p\s2p              \
612                 bin\exetype.pl          \
613                 bin\runperl.pl          \
614                 bin\pl2bat.pl           \
615                 bin\perlglob.pl         \
616                 bin\search.pl
617
618 MAKE            = nmake -nologo
619 MAKE_BARE       = nmake
620
621 !IF "$(WIN64)" == "define"
622 CFGSH_TMPL      = config.vc64
623 CFGH_TMPL       = config_H.vc64
624 !ELSE
625 CFGSH_TMPL      = config.vc
626 CFGH_TMPL       = config_H.vc
627 !ENDIF
628
629 XCOPY           = xcopy /f /r /i /d /y
630 RCOPY           = xcopy /f /r /i /e /d /y
631 NOOP            = @rem
632 NULL            =
633
634 DEL             = del
635
636 #
637 # filenames given to xsubpp must have forward slashes (since it puts
638 # full pathnames in #line strings)
639 XSUBPP          = ..\$(MINIPERL) -I..\..\lib ..\$(EXTUTILSDIR)\xsubpp \
640                 -C++ -prototypes
641
642 MICROCORE_SRC   =               \
643                 ..\av.c         \
644                 ..\deb.c        \
645                 ..\doio.c       \
646                 ..\doop.c       \
647                 ..\dump.c       \
648                 ..\globals.c    \
649                 ..\gv.c         \
650                 ..\mro.c        \
651                 ..\hv.c         \
652                 ..\locale.c     \
653                 ..\mathoms.c    \
654                 ..\mg.c         \
655                 ..\numeric.c    \
656                 ..\op.c         \
657                 ..\pad.c        \
658                 ..\perl.c       \
659                 ..\perlapi.c    \
660                 ..\perly.c      \
661                 ..\pp.c         \
662                 ..\pp_ctl.c     \
663                 ..\pp_hot.c     \
664                 ..\pp_pack.c    \
665                 ..\pp_sort.c    \
666                 ..\pp_sys.c     \
667                 ..\reentr.c     \
668                 ..\regcomp.c    \
669                 ..\regexec.c    \
670                 ..\run.c        \
671                 ..\scope.c      \
672                 ..\sv.c         \
673                 ..\taint.c      \
674                 ..\toke.c       \
675                 ..\universal.c  \
676                 ..\utf8.c       \
677                 ..\util.c       \
678                 ..\xsutils.c
679
680 EXTRACORE_SRC   = $(EXTRACORE_SRC) perllib.c
681
682 !IF "$(PERL_MALLOC)" == "define"
683 EXTRACORE_SRC   = $(EXTRACORE_SRC) ..\malloc.c
684 !ENDIF
685
686 EXTRACORE_SRC   = $(EXTRACORE_SRC) ..\perlio.c
687
688 WIN32_SRC       =               \
689                 .\win32.c       \
690                 .\win32sck.c    \
691                 .\win32thread.c
692
693 # We need this for miniperl build unless we override canned 
694 # config.h #define building mini\*
695 #!IF "$(USE_PERLIO)" == "define"
696 WIN32_SRC       = $(WIN32_SRC) .\win32io.c
697 #!ENDIF
698
699 !IF "$(CRYPT_SRC)" != ""
700 WIN32_SRC       = $(WIN32_SRC) .\$(CRYPT_SRC)
701 !ENDIF
702
703 DLL_SRC         = $(DYNALOADER).c
704
705 X2P_SRC         =               \
706                 ..\x2p\a2p.c    \
707                 ..\x2p\hash.c   \
708                 ..\x2p\str.c    \
709                 ..\x2p\util.c   \
710                 ..\x2p\walk.c
711
712 CORE_NOCFG_H    =               \
713                 ..\av.h         \
714                 ..\cop.h        \
715                 ..\cv.h         \
716                 ..\dosish.h     \
717                 ..\embed.h      \
718                 ..\form.h       \
719                 ..\gv.h         \
720                 ..\handy.h      \
721                 ..\hv.h         \
722                 ..\iperlsys.h   \
723                 ..\mg.h         \
724                 ..\nostdio.h    \
725                 ..\op.h         \
726                 ..\opcode.h     \
727                 ..\perl.h       \
728                 ..\perlapi.h    \
729                 ..\perlsdio.h   \
730                 ..\perlsfio.h   \
731                 ..\perly.h      \
732                 ..\pp.h         \
733                 ..\proto.h      \
734                 ..\regcomp.h    \
735                 ..\regexp.h     \
736                 ..\scope.h      \
737                 ..\sv.h         \
738                 ..\thread.h     \
739                 ..\unixish.h    \
740                 ..\utf8.h       \
741                 ..\util.h       \
742                 ..\warnings.h   \
743                 ..\XSUB.h       \
744                 ..\EXTERN.h     \
745                 ..\perlvars.h   \
746                 ..\intrpvar.h   \
747                 ..\thrdvar.h    \
748                 .\include\dirent.h      \
749                 .\include\netdb.h       \
750                 .\include\sys\socket.h  \
751                 .\win32.h
752
753 CORE_H          = $(CORE_NOCFG_H) .\config.h
754
755 MICROCORE_OBJ   = $(MICROCORE_SRC:.c=.obj)
756 CORE_OBJ        = $(MICROCORE_OBJ) $(EXTRACORE_SRC:.c=.obj)
757 WIN32_OBJ       = $(WIN32_SRC:.c=.obj)
758 MINICORE_OBJ    = $(MICROCORE_OBJ:..\=.\mini\)  \
759                   $(MINIDIR)\miniperlmain$(o)   \
760                   $(MINIDIR)\perlio$(o)
761 MINIWIN32_OBJ   = $(WIN32_OBJ:.\=.\mini\)
762 MINI_OBJ        = $(MINICORE_OBJ) $(MINIWIN32_OBJ)
763 DLL_OBJ         = $(DLL_SRC:.c=.obj)
764 X2P_OBJ         = $(X2P_SRC:.c=.obj)
765
766 PERLDLL_OBJ     = $(CORE_OBJ)
767 PERLEXE_OBJ     = perlmain$(o)
768 PERLEXEST_OBJ   = perlmainst$(o)
769
770 PERLDLL_OBJ     = $(PERLDLL_OBJ) $(WIN32_OBJ) $(DLL_OBJ)
771
772 !IF "$(USE_SETARGV)" != ""
773 SETARGV_OBJ     = setargv$(o)
774 !ENDIF
775
776 # specify static extensions here
777 #STATIC_EXT     = Cwd Compress/Raw/Zlib
778 STATIC_EXT      = Win32CORE
779
780 DYNALOADER      = $(EXTDIR)\DynaLoader\DynaLoader
781
782 CFG_VARS        =                                       \
783                 "INST_DRV=$(INST_DRV)"                  \
784                 "INST_TOP=$(INST_TOP)"                  \
785                 "INST_VER=$(INST_VER)"                  \
786                 "INST_ARCH=$(INST_ARCH)"                \
787                 "archname=$(ARCHNAME)"                  \
788                 "cc=$(CC)"                              \
789                 "ld=$(LINK32)"                          \
790                 "ccflags=$(EXTRACFLAGS) $(OPTIMIZE:"=\") $(DEFINES) $(BUILDOPT)"        \
791                 "cf_email=$(EMAIL)"                     \
792                 "d_crypt=$(D_CRYPT)"                    \
793                 "d_mymalloc=$(PERL_MALLOC)"             \
794                 "libs=$(LIBFILES)"                      \
795                 "incpath=$(CCINCDIR:"=\")"              \
796                 "libperl=$(PERLIMPLIB:..\=)"            \
797                 "libpth=$(CCLIBDIR:"=\");$(EXTRALIBDIRS:"=\")"  \
798                 "libc=$(LIBC)"                          \
799                 "make=$(MAKE_BARE)"                             \
800                 "static_ext=$(STATIC_EXT)"              \
801                 "usethreads=$(USE_ITHREADS)"            \
802                 "useithreads=$(USE_ITHREADS)"           \
803                 "usemultiplicity=$(USE_MULTI)"          \
804                 "useperlio=$(USE_PERLIO)"               \
805                 "uselargefiles=$(USE_LARGE_FILES)"      \
806                 "usesitecustomize=$(USE_SITECUST)"      \
807                 "LINK_FLAGS=$(LINK_FLAGS:"=\")"         \
808                 "optimize=$(OPTIMIZE:"=\")"
809
810 #
811 # Top targets
812 #
813
814 all : .\config.h $(GLOBEXE) $(MINIMOD) $(CONFIGPM) $(UNIDATAFILES) $(PERLEXE) \
815         $(X2P) MakePPPort Extensions $(PERLSTATIC)
816         @echo   Everything is up to date. '$(MAKE_BARE) test' to run test suite.
817
818 ..\regnodes.h : ..\regcomp.sym
819         cd ..
820         regcomp.pl
821         cd win32
822
823 regnodes : ..\regnodes.h
824
825 reonly : regnodes .\config.h $(GLOBEXE) $(MINIMOD) $(CONFIGPM) $(UNIDATAFILES) \
826         $(PERLEXE) $(X2P) Extensions_reonly
827         @echo   Perl and 're' are up to date.
828
829 $(DYNALOADER)$(o) : $(DYNALOADER).c $(CORE_H) $(EXTDIR)\DynaLoader\dlutils.c
830
831 static: $(PERLEXESTATIC)
832
833 #------------------------------------------------------------
834
835 $(GLOBEXE) : perlglob$(o)
836         $(LINK32) $(LINK_FLAGS) $(LIBFILES) -out:$@ -subsystem:$(SUBSYS) \
837             perlglob$(o) setargv$(o)
838         $(EMBED_EXE_MANI)
839
840 perlglob$(o)  : perlglob.c
841
842 config.w32 : $(CFGSH_TMPL)
843         copy $(CFGSH_TMPL) config.w32
844
845 .\config.h : $(CFGH_TMPL)
846         -del /f config.h
847         copy $(CFGH_TMPL) config.h
848
849 ..\config.sh : config.w32 $(MINIPERL) config_sh.PL
850         $(MINIPERL) -I..\lib config_sh.PL $(CFG_VARS) config.w32 > ..\config.sh
851
852 # this target is for when changes to the main config.sh happen
853 # edit config.{b,v,g}c and make this target once for each supported
854 # compiler (e.g. `nmake CCTYPE=BORLAND regen_config_h`)
855 regen_config_h:
856         perl config_sh.PL $(CFG_VARS) $(CFGSH_TMPL) > ..\config.sh
857         cd ..
858         -del /f perl.exe perl*.dll
859         perl configpm
860         cd win32
861         -del /f $(CFGH_TMPL)
862         -mkdir $(COREDIR)
863         -perl config_h.PL "INST_VER=$(INST_VER)"
864         rename config.h $(CFGH_TMPL)
865
866 $(CONFIGPM) : $(MINIPERL) ..\config.sh config_h.PL ..\minimod.pl
867         cd ..
868         miniperl configpm
869         cd win32
870         if exist lib\* $(RCOPY) lib\*.* ..\lib\$(NULL)
871         $(XCOPY) ..\*.h $(COREDIR)\*.*
872         $(XCOPY) *.h $(COREDIR)\*.*
873         $(XCOPY) ..\ext\re\re.pm $(LIBDIR)\*.*
874         $(RCOPY) include $(COREDIR)\*.*
875         -$(MINIPERL) -I..\lib config_h.PL "INST_VER=$(INST_VER)"
876         if errorlevel 1 $(MAKE) /$(MAKEFLAGS) $(CONFIGPM)
877
878 $(MINIPERL) : $(MINIDIR) $(MINI_OBJ)
879         $(LINK32) -subsystem:console -out:$@ @<<
880         $(LINK_FLAGS) $(LIBFILES) $(MINI_OBJ)
881 <<
882         $(EMBED_EXE_MANI)
883
884 $(MINIDIR) :
885         if not exist "$(MINIDIR)" mkdir "$(MINIDIR)"
886
887 $(MINICORE_OBJ) : $(CORE_NOCFG_H)
888         $(CC) -c $(CFLAGS) -DPERL_EXTERNAL_GLOB $(OBJOUT_FLAG)$@ ..\$(*F).c
889
890 $(MINIWIN32_OBJ) : $(CORE_NOCFG_H)
891         $(CC) -c $(CFLAGS) $(OBJOUT_FLAG)$@ $(*F).c
892
893 # -DPERL_IMPLICIT_SYS needs C++ for perllib.c
894 # This is the only file that depends on perlhost.h, vmem.h, and vdir.h
895 !IF "$(USE_IMP_SYS)" == "define"
896 perllib$(o)     : perllib.c .\perlhost.h .\vdir.h .\vmem.h
897         $(CC) -c -I. $(CFLAGS_O) $(CXX_FLAG) $(OBJOUT_FLAG)$@ perllib.c
898 !ENDIF
899
900 # 1. we don't want to rebuild miniperl.exe when config.h changes
901 # 2. we don't want to rebuild miniperl.exe with non-default config.h
902 $(MINI_OBJ)     : $(CORE_NOCFG_H)
903
904 $(WIN32_OBJ)    : $(CORE_H)
905 $(CORE_OBJ)     : $(CORE_H)
906 $(DLL_OBJ)      : $(CORE_H)
907 $(X2P_OBJ)      : $(CORE_H)
908
909 perldll.def : $(MINIPERL) $(CONFIGPM) ..\global.sym ..\pp.sym ..\makedef.pl
910         $(MINIPERL) -I..\lib buildext.pl --create-perllibst-h
911         $(MINIPERL) -w ..\makedef.pl PLATFORM=win32 $(OPTIMIZE) $(DEFINES) $(BUILDOPT) \
912             CCTYPE=$(CCTYPE) > perldll.def
913
914 $(PERLDLL): perldll.def $(PERLDLL_OBJ) $(PERLDLL_RES) Extensions_static
915         $(LINK32) -dll -def:perldll.def -base:0x28000000 -out:$@ @Extensions_static @<<
916                 $(LINK_FLAGS) $(DELAYLOAD) $(LIBFILES) $(PERLDLL_OBJ) $(PERLDLL_RES)
917 <<
918         $(EMBED_DLL_MANI)
919         $(XCOPY) $(PERLIMPLIB) $(COREDIR)
920
921 $(PERLSTATICLIB): Extensions_static
922         $(LIB32) $(LIB_FLAGS) -out:$@ @Extensions_static @<<
923                 $(PERLDLL_OBJ)
924 <<
925         $(XCOPY) $(PERLSTATICLIB) $(COREDIR)
926
927 $(PERLEXE_ICO): $(MINIPERL) ..\uupacktool.pl $(PERLEXE_ICO).packd
928         $(MINIPERL) -I..\lib ..\uupacktool.pl -u $(PERLEXE_ICO).packd $(PERLEXE_ICO)
929
930 $(PERLEXE_RES): perlexe.rc $(PERLEXE_ICO)
931
932 $(MINIMOD) : $(MINIPERL) ..\minimod.pl
933         cd ..
934         miniperl minimod.pl > lib\ExtUtils\Miniperl.pm
935         cd win32
936
937 ..\x2p\a2p$(o) : ..\x2p\a2p.c
938         $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\a2p.c
939
940 ..\x2p\hash$(o) : ..\x2p\hash.c
941         $(CC) -I..\x2p  $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\hash.c
942
943 ..\x2p\str$(o) : ..\x2p\str.c
944         $(CC) -I..\x2p  $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\str.c
945
946 ..\x2p\util$(o) : ..\x2p\util.c
947         $(CC) -I..\x2p  $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\util.c
948
949 ..\x2p\walk$(o) : ..\x2p\walk.c
950         $(CC) -I..\x2p  $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\walk.c
951
952 $(X2P) : $(MINIPERL) $(X2P_OBJ)
953         $(MINIPERL) ..\x2p\find2perl.PL
954         $(MINIPERL) ..\x2p\s2p.PL
955         $(LINK32) -subsystem:console -out:$@ @<<
956                 $(LINK_FLAGS) $(LIBFILES) $(X2P_OBJ)
957 <<
958         $(EMBED_EXE_MANI)
959
960 globals$(o) : uudmap.h
961
962 uudmap.h: generate_uudmap.exe
963         generate_uudmap >uudmap.h
964
965 generate_uudmap.exe : generate_uudmap$(o)
966         $(LINK32) -subsystem:console -out:$@ @<<
967                 $(LINK_FLAGS) $(LIBFILES) generate_uudmap$(o)
968
969 perlmain.c : runperl.c
970         copy runperl.c perlmain.c
971
972 perlmain$(o) : perlmain.c
973         $(CC) $(CFLAGS_O) -UPERLDLL $(OBJOUT_FLAG)$@ -c perlmain.c
974
975 perlmainst.c : runperl.c
976         copy runperl.c perlmainst.c
977
978 perlmainst$(o) : perlmainst.c
979         $(CC) $(CFLAGS_O) -DPERLDLL $(OBJOUT_FLAG)$@ -c perlmainst.c
980
981 $(PERLEXE): $(PERLDLL) $(CONFIGPM) $(PERLEXE_OBJ) $(PERLEXE_RES)
982         $(LINK32) -subsystem:console -out:$@ -stack:0x1000000 $(LINK_FLAGS) \
983             $(LIBFILES) $(PERLEXE_OBJ) $(SETARGV_OBJ) $(PERLIMPLIB) $(PERLEXE_RES)
984         $(EMBED_EXE_MANI)
985         copy $(PERLEXE) $(WPERLEXE)
986         $(MINIPERL) -I..\lib bin\exetype.pl $(WPERLEXE) WINDOWS
987         copy splittree.pl ..
988         $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR)
989
990 $(PERLEXESTATIC): $(PERLSTATICLIB) $(CONFIGPM) $(PERLEXEST_OBJ) $(PERLEXE_RES)
991         $(LINK32) -subsystem:console -out:$@ -stack:0x1000000 $(LINK_FLAGS) \
992             @Extensions_static $(PERLSTATICLIB) \
993             $(LIBFILES) $(PERLEXEST_OBJ) $(SETARGV_OBJ) $(PERLEXE_RES)
994         $(EMBED_EXE_MANI)
995
996 $(DYNALOADER).c: $(MINIPERL) $(EXTDIR)\DynaLoader\dl_win32.xs $(CONFIGPM)
997         if not exist $(AUTODIR) mkdir $(AUTODIR)
998         cd $(EXTDIR)\$(*B)
999         ..\$(MINIPERL) -I..\..\lib $(*B)_pm.PL
1000         ..\$(MINIPERL) -I..\..\lib XSLoader_pm.PL
1001         cd ..\..\win32
1002         $(XCOPY) $(EXTDIR)\$(*B)\$(*B).pm $(LIBDIR)\$(NULL)
1003         $(XCOPY) $(EXTDIR)\$(*B)\XSLoader.pm $(LIBDIR)\$(NULL)
1004         cd $(EXTDIR)\$(*B)
1005         $(XSUBPP) dl_win32.xs > $(*B).c
1006         cd ..\..\win32
1007
1008 $(EXTDIR)\DynaLoader\dl_win32.xs: dl_win32.xs
1009         copy dl_win32.xs $(EXTDIR)\DynaLoader\dl_win32.xs
1010
1011 MakePPPort: $(MINIPERL) $(CONFIGPM)
1012         $(MINIPERL) -I..\lib ..\mkppport
1013
1014 MakePPPort_clean:
1015         -if exist $(MINIPERL) $(MINIPERL) -I..\lib ..\mkppport --clean
1016
1017 #-------------------------------------------------------------------------------
1018 Extensions: buildext.pl $(PERLDEP) $(CONFIGPM)
1019         $(XCOPY) ..\*.h $(COREDIR)\*.*
1020         $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) --dynamic
1021         -if exist ext $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext --dynamic
1022
1023 Extensions_reonly: buildext.pl $(PERLDEP) $(CONFIGPM)
1024         $(XCOPY) ..\*.h $(COREDIR)\*.*
1025         $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) --dynamic +re
1026         -if exist ext $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext --dynamic +re
1027
1028 Extensions_static : buildext.pl $(PERLDEP) $(CONFIGPM)
1029         $(XCOPY) ..\*.h $(COREDIR)\*.*
1030         $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) --static
1031         -if exist ext $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext --static
1032         $(MINIPERL) -I..\lib buildext.pl --list-static-libs > Extensions_static
1033
1034 Extensions_clean: 
1035         -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) clean
1036         -if exist $(MINIPERL) if exist ext $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext clean
1037
1038 Extensions_realclean: 
1039         -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) realclean
1040         -if exist $(MINIPERL) if exist ext $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext realclean
1041
1042 #-------------------------------------------------------------------------------
1043
1044 doc: $(PERLEXE)
1045         $(PERLEXE) -I..\lib ..\installhtml --podroot=.. --htmldir=$(HTMLDIR) \
1046             --podpath=pod:lib:ext:utils --htmlroot="file://$(INST_HTML::=|)" \
1047             --libpod=perlfunc:perlguts:perlvar:perlrun:perlop --recurse
1048
1049 # Note that this next section is parsed (and regenerated) by pod/buildtoc
1050 # so please check that script before making structural changes here
1051
1052 utils: $(PERLEXE) $(X2P)
1053         cd ..\utils
1054         $(MAKE) PERL=$(MINIPERL)
1055         cd ..\pod
1056         copy ..\vms\perlvms.pod .\perlvms.pod
1057         copy ..\README.aix      ..\pod\perlaix.pod
1058         copy ..\README.amiga    ..\pod\perlamiga.pod
1059         copy ..\README.apollo   ..\pod\perlapollo.pod
1060         copy ..\README.beos     ..\pod\perlbeos.pod
1061         copy ..\README.bs2000   ..\pod\perlbs2000.pod
1062         copy ..\README.ce       ..\pod\perlce.pod
1063         copy ..\README.cn       ..\pod\perlcn.pod
1064         copy ..\README.cygwin   ..\pod\perlcygwin.pod
1065         copy ..\README.dgux     ..\pod\perldgux.pod
1066         copy ..\README.dos      ..\pod\perldos.pod
1067         copy ..\README.epoc     ..\pod\perlepoc.pod
1068         copy ..\README.freebsd  ..\pod\perlfreebsd.pod
1069         copy ..\README.hpux     ..\pod\perlhpux.pod
1070         copy ..\README.hurd     ..\pod\perlhurd.pod
1071         copy ..\README.irix     ..\pod\perlirix.pod
1072         copy ..\README.jp       ..\pod\perljp.pod
1073         copy ..\README.ko       ..\pod\perlko.pod
1074         copy ..\README.linux    ..\pod\perllinux.pod
1075         copy ..\README.machten  ..\pod\perlmachten.pod
1076         copy ..\README.macos    ..\pod\perlmacos.pod
1077         copy ..\README.macosx   ..\pod\perlmacosx.pod
1078         copy ..\README.mint     ..\pod\perlmint.pod
1079         copy ..\README.mpeix    ..\pod\perlmpeix.pod
1080         copy ..\README.netware  ..\pod\perlnetware.pod
1081         copy ..\README.openbsd  ..\pod\perlopenbsd.pod
1082         copy ..\README.os2      ..\pod\perlos2.pod
1083         copy ..\README.os390    ..\pod\perlos390.pod
1084         copy ..\README.os400    ..\pod\perlos400.pod
1085         copy ..\README.plan9    ..\pod\perlplan9.pod
1086         copy ..\README.qnx      ..\pod\perlqnx.pod
1087         copy ..\README.riscos   ..\pod\perlriscos.pod
1088         copy ..\README.solaris  ..\pod\perlsolaris.pod
1089         copy ..\README.symbian  ..\pod\perlsymbian.pod
1090         copy ..\README.tru64    ..\pod\perltru64.pod
1091         copy ..\README.tw       ..\pod\perltw.pod
1092         copy ..\README.uts      ..\pod\perluts.pod
1093         copy ..\README.vmesa    ..\pod\perlvmesa.pod
1094         copy ..\README.vms      ..\pod\perlvms.pod
1095         copy ..\README.vos      ..\pod\perlvos.pod
1096         copy ..\README.win32    ..\pod\perlwin32.pod
1097         copy ..\pod\perl595delta.pod ..\pod\perldelta.pod
1098         $(MAKE) -f ..\win32\pod.mak converters
1099         cd ..\lib
1100         $(PERLEXE) lib_pm.PL
1101         cd ..\win32
1102         $(PERLEXE) $(PL2BAT) $(UTILS)
1103
1104 # Note that the pod cleanup in this next section is parsed (and regenerated
1105 # by pod/buildtoc so please check that script before making changes here
1106
1107 distclean: realclean
1108         -del /f $(MINIPERL) $(PERLEXE) $(PERLDLL) $(GLOBEXE) \
1109                 $(PERLIMPLIB) ..\miniperl.lib $(MINIMOD) \
1110                 $(PERLEXESTATIC) $(PERLSTATICLIB)
1111         -del /f *.def *.map
1112         -del /f $(DYNALOADER).c
1113         -del /f $(EXTDIR)\DynaLoader\dl_win32.xs
1114         -del /f $(EXTDIR)\DynaLoader\DynaLoader.pm
1115         -del /f $(EXTDIR)\DynaLoader\XSLoader.pm
1116         -del /f $(LIBDIR)\Encode.pm $(LIBDIR)\encoding.pm $(LIBDIR)\Errno.pm
1117         -del /f $(LIBDIR)\Config.pod $(LIBDIR)\POSIX.pod $(LIBDIR)\threads.pm
1118         -del /f $(LIBDIR)\.exists $(LIBDIR)\attrs.pm $(LIBDIR)\DynaLoader.pm
1119         -del /f $(LIBDIR)\XSLoader.pm $(LIBDIR)\lib.pm
1120         -del /f $(LIBDIR)\Fcntl.pm $(LIBDIR)\IO.pm $(LIBDIR)\Opcode.pm
1121         -del /f $(LIBDIR)\ops.pm $(LIBDIR)\Safe.pm
1122         -del /f $(LIBDIR)\SDBM_File.pm $(LIBDIR)\Socket.pm $(LIBDIR)\POSIX.pm
1123         -del /f $(LIBDIR)\B.pm $(LIBDIR)\O.pm $(LIBDIR)\re.pm
1124         -del /f $(LIBDIR)\Devel\Peek.pm $(LIBDIR)\Devel\DProf.pm
1125         -del /f $(LIBDIR)\Devel\PPPort.pm
1126         -del /f $(LIBDIR)\File\Glob.pm
1127         -del /f $(LIBDIR)\Storable.pm
1128         -del /f $(LIBDIR)\Digest\MD5.pm
1129         -del /f $(LIBDIR)\Digest\SHA.pm
1130         -del /f $(LIBDIR)\PerlIO\encoding.pm
1131         -del /f $(LIBDIR)\PerlIO\scalar.pm
1132         -del /f $(LIBDIR)\PerlIO\via.pm
1133         -del /f $(LIBDIR)\Sys\Hostname.pm
1134         -del /f $(LIBDIR)\Thread\Signal.pm $(LIBDIR)\Thread\Specific.pm
1135         -del /f $(LIBDIR)\threads\shared.pm
1136         -del /f $(LIBDIR)\Time\HiRes.pm
1137         -del /f $(LIBDIR)\Unicode\Normalize.pm
1138         -del /f $(LIBDIR)\Math\BigInt\FastCalc.pm
1139         -del /f $(LIBDIR)\Win32.pm
1140         -del /f $(LIBDIR)\Win32CORE.pm
1141         -del /f $(LIBDIR)\Win32API\File.pm
1142         -del /f $(LIBDIR)\Win32API\File\cFile.pc
1143         -if exist $(LIBDIR)\B rmdir /s /q $(LIBDIR)\B
1144         -if exist $(LIBDIR)\Compress rmdir /s /q $(LIBDIR)\Compress
1145         -if exist $(LIBDIR)\Data rmdir /s /q $(LIBDIR)\Data
1146         -if exist $(LIBDIR)\Encode rmdir /s /q $(LIBDIR)\Encode
1147         -if exist $(LIBDIR)\Filter\Util rmdir /s /q $(LIBDIR)\Filter\Util
1148         -if exist $(LIBDIR)\Hash rmdir /s /q $(LIBDIR)\Hash
1149         -if exist $(LIBDIR)\IO\Compress rmdir /s /q $(LIBDIR)\IO\Compress
1150         -if exist $(LIBDIR)\IO\Socket rmdir /s /q $(LIBDIR)\IO\Socket
1151         -if exist $(LIBDIR)\IO\Uncompress rmdir /s /q $(LIBDIR)\IO\Uncompress
1152         -if exist $(LIBDIR)\List rmdir /s /q $(LIBDIR)\List
1153         -if exist $(LIBDIR)\MIME rmdir /s /q $(LIBDIR)\MIME
1154         -if exist $(LIBDIR)\re rmdir /s /q $(LIBDIR)\re
1155         -if exist $(LIBDIR)\Scalar rmdir /s /q $(LIBDIR)\Scalar
1156         -if exist $(LIBDIR)\Sys rmdir /s /q $(LIBDIR)\Sys
1157         -if exist $(LIBDIR)\threads rmdir /s /q $(LIBDIR)\threads
1158         -if exist $(LIBDIR)\XS rmdir /s /q $(LIBDIR)\XS
1159         -if exist $(LIBDIR)\Win32API rmdir /s /q $(LIBDIR)\Win32API
1160         -cd $(PODDIR) && del /f *.html *.bat checkpods \
1161             perlaix.pod perlamiga.pod perlapollo.pod perlbeos.pod \
1162             perlbs2000.pod perlce.pod perlcn.pod perlcygwin.pod \
1163             perldelta.pod perldgux.pod perldos.pod perlepoc.pod \
1164             perlfreebsd.pod perlhpux.pod perlhurd.pod perlirix.pod \
1165             perljp.pod perlko.pod perllinux.pod perlmachten.pod \
1166             perlmacos.pod perlmacosx.pod perlmint.pod perlmpeix.pod \
1167             perlnetware.pod perlopenbsd.pod perlos2.pod perlos390.pod \
1168             perlos400.pod perlplan9.pod perlqnx.pod perlriscos.pod \
1169             perlsolaris.pod perlsymbian.pod perltru64.pod perltw.pod \
1170             perluts.pod perlvmesa.pod perlvms.pod perlvms.pod perlvos.pod \
1171             perlwin32.pod \
1172             pod2html pod2latex pod2man pod2text pod2usage \
1173             podchecker podselect
1174         -cd ..\utils && del /f h2ph splain perlbug pl2pm c2ph pstruct h2xs \
1175             perldoc perlivp dprofpp libnetcfg enc2xs piconv cpan *.bat \
1176             xsubpp instmodsh prove ptar ptardiff cpanp-run-perl cpanp cpan2dist shasum corelist config_data
1177         -cd ..\x2p && del /f find2perl s2p psed *.bat
1178         -del /f ..\config.sh ..\splittree.pl perlmain.c dlutils.c config.h.new \
1179                 perlmainst.c
1180         -del /f $(CONFIGPM)
1181         -del /f bin\*.bat
1182         -del /f perllibst.h
1183         -del /f $(PERLEXE_ICO) perl.base
1184         ren ..\lib\Net\Changes.libnet Changes.tenbil
1185         ren ..\lib\Net\README.libnet  README.tenbil     
1186         -cd .. && del /s *.lib *.map *.pdb *.ilk *.bs *$(o) .exists pm_to_blib
1187         ren ..\lib\Net\Changes.tenbil Changes.libnet
1188         ren ..\lib\Net\README.tenbil  README.libnet     
1189         -cd $(EXTDIR) && del /s *.def Makefile Makefile.old
1190         -if exist $(AUTODIR) rmdir /s /q $(AUTODIR)
1191         -if exist $(COREDIR) rmdir /s /q $(COREDIR)
1192         -if exist pod2htmd.tmp del pod2htmd.tmp
1193         -if exist pod2htmi.tmp del pod2htmi.tmp
1194         -if exist $(HTMLDIR) rmdir /s /q $(HTMLDIR)
1195
1196 install : all installbare installhtml
1197
1198 installbare : utils
1199         $(PERLEXE) ..\installperl
1200         if exist $(WPERLEXE) $(XCOPY) $(WPERLEXE) $(INST_BIN)\*.*
1201         if exist $(PERLEXESTATIC) $(XCOPY) $(PERLEXESTATIC) $(INST_BIN)\*.*
1202         $(XCOPY) $(GLOBEXE) $(INST_BIN)\*.*
1203         if exist ..\perl*.pdb $(XCOPY) ..\perl*.pdb $(INST_BIN)\*.*
1204         if exist ..\x2p\a2p.pdb $(XCOPY) ..\x2p\a2p.pdb $(INST_BIN)\*.*
1205         $(XCOPY) bin\*.bat $(INST_SCRIPT)\*.*
1206
1207 installhtml : doc
1208         $(RCOPY) $(HTMLDIR)\*.* $(INST_HTML)\*.*
1209
1210 inst_lib : $(CONFIGPM)
1211         copy splittree.pl ..
1212         $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR)
1213         $(RCOPY) ..\lib $(INST_LIB)\*.*
1214
1215 $(UNIDATAFILES) : $(MINIPERL) $(CONFIGPM) ..\lib\unicore\mktables
1216         cd ..\lib\unicore && \
1217         ..\$(MINIPERL) -I.. mktables -check $@ $(FIRSTUNIFILE)
1218
1219 minitest : $(MINIPERL) $(GLOBEXE) $(CONFIGPM) utils $(UNIDATAFILES)
1220         $(XCOPY) $(MINIPERL) ..\t\$(NULL)
1221         if exist ..\t\perl.exe del /f ..\t\perl.exe
1222         rename ..\t\miniperl.exe perl.exe
1223         $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1224         attrib -r ..\t\*.*
1225         cd ..\t && \
1226         $(MINIPERL) -I..\lib harness base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t
1227
1228 test-prep : all utils unpack_files
1229         $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1230         $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1231         $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1232
1233 test : test-prep
1234         cd ..\t
1235         $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES)
1236         cd ..\win32
1237
1238 unpack_files:
1239         $(MINIPERL) -I..\lib ..\uupacktool.pl -u -d .. -m
1240
1241 cleanup_unpacked_files:
1242         -if exist $(MINIPERL) $(MINIPERL) -I..\lib ..\uupacktool.pl -c -d .. -m
1243
1244 test-reonly : reonly utils
1245         $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1246         $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1247         $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1248         cd ..\t
1249         $(PERLEXE) -I..\lib harness $(OPT) -re \bpat\b \breg \bre\b \bsubst \brxcode $(EXTRA)
1250         cd ..\win32
1251
1252 regen :
1253         cd ..
1254         regen.pl
1255         cd win32
1256
1257 test-notty : test-prep
1258         set PERL_SKIP_TTY_TEST=1
1259         cd ..\t
1260         $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES)
1261         cd ..\win32
1262
1263 _test : 
1264        $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1265        $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1266        $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1267        cd ..\t
1268        $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES)
1269        cd ..\win32
1270
1271 _clean :
1272         -@$(DEL) miniperlmain$(o)
1273         -@$(DEL) $(MINIPERL)
1274         -@$(DEL) perlglob$(o)
1275         -@$(DEL) perlmain$(o)
1276         -@$(DEL) perlmainst$(o)
1277         -@$(DEL) config.w32
1278         -@$(DEL) config.h
1279         -@$(DEL) $(GLOBEXE)
1280         -@$(DEL) $(PERLEXE)
1281         -@$(DEL) $(WPERLEXE)
1282         -@$(DEL) $(PERLEXESTATIC)
1283         -@$(DEL) $(PERLSTATICLIB)
1284         -@$(DEL) $(PERLDLL)
1285         -@$(DEL) $(CORE_OBJ)
1286         -@$(DEL) generate_uudmap.exe generate_uudmap$(o) uudmap.h
1287         -if exist $(MINIDIR) rmdir /s /q $(MINIDIR)
1288         -if exist $(UNIDATADIR1) rmdir /s /q $(UNIDATADIR1)
1289         -if exist $(UNIDATADIR2) rmdir /s /q $(UNIDATADIR2)
1290         -@$(DEL) $(UNIDATAFILES)
1291         -@$(DEL) $(WIN32_OBJ)
1292         -@$(DEL) $(DLL_OBJ)
1293         -@$(DEL) $(X2P_OBJ)
1294         ren ..\lib\Net\Changes.libnet Changes.tenbil
1295         ren ..\lib\Net\README.libnet  README.tenbil     
1296         -@$(DEL) ..\*$(o) ..\*.lib ..\*.exp *$(o) *.lib *.exp *.res
1297         ren ..\lib\Net\Changes.tenbil Changes.libnet
1298         ren ..\lib\Net\README.tenbil  README.libnet     
1299         -@$(DEL) ..\t\*.exe ..\t\*.dll ..\t\*.bat
1300         -@$(DEL) ..\x2p\*.exe ..\x2p\*.bat
1301         -@$(DEL) *.ilk
1302         -@$(DEL) *.pdb
1303         -@$(DEL) Extensions_static
1304
1305 _preclean : cleanup_unpacked_files
1306
1307 clean : _preclean Extensions_clean _clean
1308
1309 realclean : _preclean Extensions_realclean MakePPPort_clean _clean
1310
1311 # Handy way to run perlbug -ok without having to install and run the
1312 # installed perlbug. We don't re-run the tests here - we trust the user.
1313 # Please *don't* use this unless all tests pass.
1314 # If you want to report test failures, use "nmake nok" instead.
1315 ok: utils
1316         $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)"
1317
1318 okfile: utils
1319         $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)" -F perl.ok
1320
1321 nok: utils
1322         $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)"
1323
1324 nokfile: utils
1325         $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)" -F perl.nok