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