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