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