This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Deprecate /\C/
[perl5.git] / win32 / Makefile
1 #
2 # Makefile to build perl on Windows using Microsoft NMAKE.
3 # Supported compilers:
4 #       Microsoft Visual C++ 6.0 or later
5 #       Windows SDK 64-bit compiler and tools
6 #
7 # This is set up to build a perl.exe that runs off a shared library
8 # (perl521.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 # Uncomment if you want to build a 32-bit Perl using a 32-bit compiler
28 # on a 64-bit version of Windows.
29 #WIN64          = undef
30
31 #
32 # Comment this out if you DON'T want your perl installation to be versioned.
33 # This means that the new installation will overwrite any files from the
34 # old installation at the same INST_TOP location.  Leaving it enabled is
35 # the safest route, as perl adds the extra version directory to all the
36 # locations it installs files to.  If you disable it, an alternative
37 # versioned installation can be obtained by setting INST_TOP above to a
38 # path that includes an arbitrary version string.
39 #
40 #INST_VER       = \5.21.2
41
42 #
43 # Comment this out if you DON'T want your perl installation to have
44 # architecture specific components.  This means that architecture-
45 # specific files will be installed along with the architecture-neutral
46 # files.  Leaving it enabled is safer and more flexible, in case you
47 # want to build multiple flavors of perl and install them together in
48 # the same location.  Commenting it out gives you a simpler
49 # installation that is easier to understand for beginners.
50 #
51 #INST_ARCH      = \$(ARCHNAME)
52
53 #
54 # Uncomment this if you want perl to run
55 #       $Config{sitelibexp}\sitecustomize.pl
56 # before anything else.  This script can then be set up, for example,
57 # to add additional entries to @INC.
58 #
59 #USE_SITECUST   = define
60
61 #
62 # uncomment to enable multiple interpreters.  This is needed for fork()
63 # emulation and for thread support, and is auto-enabled by USE_IMP_SYS
64 # and USE_ITHREADS below.
65 #
66 USE_MULTI       = define
67
68 #
69 # Interpreter cloning/threads; now reasonably complete.
70 # This should be enabled to get the fork() emulation.  This needs (and
71 # will auto-enable) USE_MULTI above.
72 #
73 USE_ITHREADS    = define
74
75 #
76 # uncomment to enable the implicit "host" layer for all system calls
77 # made by perl.  This is also needed to get fork().  This needs (and
78 # will auto-enable) USE_MULTI above.
79 #
80 USE_IMP_SYS     = define
81
82 #
83 # Comment out next assign to disable perl's I/O subsystem and use compiler's 
84 # stdio for IO - depending on your compiler vendor and run time library you may 
85 # then get a number of fails from make test i.e. bugs - complain to them not us ;-). 
86 # You will also be unable to take full advantage of perl5.8's support for multiple 
87 # encodings and may see lower IO performance. You have been warned.
88 USE_PERLIO      = define
89
90 #
91 # Comment this out if you don't want to enable large file support for
92 # some reason.  Should normally only be changed to maintain compatibility
93 # with an older release of perl.
94 USE_LARGE_FILES = define
95
96 #
97 # Uncomment this if you're building a 32-bit perl and want 64-bit integers.
98 # (If you're building a 64-bit perl then you will have 64-bit integers whether
99 # or not this is uncommented.)
100 # Note: This option is not supported in 32-bit MSVC60 builds.
101 #USE_64_BIT_INT = define
102
103 #
104 # uncomment exactly one of the following
105 #
106 # Visual C++ 6.x (aka Visual C++ 98)
107 CCTYPE          = MSVC60
108 # Visual C++ .NET 2002/2003 (aka Visual C++ 7.x) (full version)
109 #CCTYPE         = MSVC70
110 # Visual C++ Toolkit 2003 (aka Visual C++ 7.x) (free command-line tools)
111 #CCTYPE         = MSVC70FREE
112 # Windows Server 2003 SP1 Platform SDK (April 2005)
113 #CCTYPE         = SDK2003SP1
114 # Visual C++ 2005 (aka Visual C++ 8.x) (full version)
115 #CCTYPE         = MSVC80
116 # Visual C++ 2005 Express Edition (aka Visual C++ 8.x) (free version)
117 #CCTYPE         = MSVC80FREE
118 # Visual C++ 2008 (aka Visual C++ 9.x) (full version)
119 #CCTYPE         = MSVC90
120 # Visual C++ 2008 Express Edition (aka Visual C++ 9.x) (free version)
121 #CCTYPE         = MSVC90FREE
122 # Visual C++ 2010 (aka Visual C++ 10.x) (full version)
123 #CCTYPE         = MSVC100
124 # Visual C++ 2010 Express Edition (aka Visual C++ 10.x) (free version)
125 #CCTYPE         = MSVC100FREE
126 # Visual C++ 2012 (aka Visual C++ 11.x) (full version)
127 #CCTYPE         = MSVC110
128 # Visual C++ 2012 Express Edition (aka Visual C++ 11.x) (free version)
129 #CCTYPE         = MSVC110FREE
130 # Visual C++ 2013 (aka Visual C++ 12.x) (full version)
131 #CCTYPE         = MSVC120
132 # Visual C++ 2013 Express Edition (aka Visual C++ 12.x) (free version)
133 #CCTYPE         = MSVC120FREE
134
135 #
136 # If you are using Intel C++ Compiler uncomment this
137 #
138 #__ICC          = define
139
140 #
141 # uncomment next line if you want debug version of perl (big,slow)
142 # If not enabled, we automatically try to use maximum optimization
143 # with all compilers that are known to have a working optimizer.
144 #
145 #CFG            = Debug
146
147 #
148 # uncomment to enable linking with setargv.obj under the Visual C
149 # compiler. Setting this options enables perl to expand wildcards in
150 # arguments, but it may be harder to use alternate methods like
151 # File::DosGlob that are more powerful.  This option is supported only with
152 # Visual C.
153 #
154 #USE_SETARGV    = define
155
156 #
157 # set this if you wish to use perl's malloc
158 # WARNING: Turning this on/off WILL break binary compatibility with extensions
159 # you may have compiled with/without it.  Be prepared to recompile all
160 # extensions if you change the default.  Currently, this cannot be enabled
161 # if you ask for USE_IMP_SYS above.
162 #
163 #PERL_MALLOC    = define
164
165 #
166 # set this to enable debugging mstats
167 # This must be enabled to use the Devel::Peek::mstat() function.  This cannot
168 # be enabled without PERL_MALLOC as well.
169 #
170 #DEBUG_MSTATS   = define
171
172 #
173 # set this to additionally provide a statically linked perl-static.exe.
174 # Note that dynamic loading will not work with this perl, so you must
175 # include required modules statically using the STATIC_EXT or ALL_STATIC
176 # variables below. A static library perl521s.lib will also be created.
177 # Ordinary perl.exe is not affected by this option.
178 #
179 #BUILD_STATIC   = define
180
181 #
182 # in addition to BUILD_STATIC the option ALL_STATIC makes *every*
183 # extension get statically built
184 # This will result in a very large perl executable, but the main purpose
185 # is to have proper linking set so as to be able to create miscellaneous
186 # executables with different built-in extensions
187 #
188 #ALL_STATIC     = define
189
190 #
191 #
192 # set the install locations of the compiler include/libraries
193 # Running VCVARS32.BAT is *required* when using Visual C.
194 # Some versions of Visual C don't define MSVCDIR in the environment,
195 # so you may have to set CCHOME explicitly (spaces in the path name should
196 # not be quoted)
197 #
198 CCHOME          = $(MSVCDIR)
199 CCINCDIR        = $(CCHOME)\include
200 CCLIBDIR        = $(CCHOME)\lib
201
202 #
203 # Additional compiler flags can be specified here.
204 #
205 BUILDOPT        = $(BUILDOPTEXTRA)
206
207 #
208 # This should normally be disabled.  Enabling it will disable the File::Glob
209 # implementation of CORE::glob.
210 #
211 #BUILDOPT       = $(BUILDOPT) -DPERL_EXTERNAL_GLOB
212
213 #
214 # Perl needs to read scripts in text mode so that the DATA filehandle
215 # works correctly with seek() and tell(), or around auto-flushes of
216 # all filehandles (e.g. by system(), backticks, fork(), etc).
217 #
218 # The current version on the ByteLoader module on CPAN however only
219 # works if scripts are read in binary mode.  But before you disable text
220 # mode script reading (and break some DATA filehandle functionality)
221 # please check first if an updated ByteLoader isn't available on CPAN.
222 #
223 BUILDOPT        = $(BUILDOPT) -DPERL_TEXTMODE_SCRIPTS
224
225 #
226 # specify semicolon-separated list of extra directories that modules will
227 # look for libraries (spaces in path names need not be quoted)
228 #
229 EXTRALIBDIRS    =
230
231 #
232 # set this to your email address (perl will guess a value from
233 # from your loginname and your hostname, which may not be right)
234 #
235 #EMAIL          =
236
237 ##
238 ## Build configuration ends.
239 ##
240
241 ##################### CHANGE THESE ONLY IF YOU MUST #####################
242
243 !IF "$(USE_IMP_SYS)" == "define"
244 PERL_MALLOC     = undef
245 DEBUG_MSTATS    = undef
246 !ENDIF
247
248 !IF "$(PERL_MALLOC)" == ""
249 PERL_MALLOC     = undef
250 DEBUG_MSTATS    = undef
251 !ENDIF
252
253 !IF "$(DEBUG_MSTATS)" == ""
254 DEBUG_MSTATS    = undef
255 !ENDIF
256
257 !IF "$(DEBUG_MSTATS)" == "define"
258 BUILDOPT        = $(BUILDOPT) -DPERL_DEBUGGING_MSTATS
259 !ENDIF
260
261 !IF "$(USE_SITECUST)" == ""
262 USE_SITECUST    = undef
263 !ENDIF
264
265 !IF "$(USE_MULTI)" == ""
266 USE_MULTI       = undef
267 !ENDIF
268
269 !IF "$(USE_ITHREADS)" == ""
270 USE_ITHREADS    = undef
271 !ENDIF
272
273 !IF "$(USE_IMP_SYS)" == ""
274 USE_IMP_SYS     = undef
275 !ENDIF
276
277 !IF "$(USE_PERLIO)" == ""
278 USE_PERLIO      = undef
279 !ENDIF
280
281 !IF "$(USE_LARGE_FILES)" == ""
282 USE_LARGE_FILES = undef
283 !ENDIF
284
285 !IF "$(USE_64_BIT_INT)" == ""
286 USE_64_BIT_INT  = undef
287 !ENDIF
288
289 !IF "$(USE_IMP_SYS)$(USE_MULTI)" == "defineundef"
290 USE_MULTI       = define
291 !ENDIF
292
293 !IF "$(USE_ITHREADS)$(USE_MULTI)" == "defineundef"
294 USE_MULTI       = define
295 !ENDIF
296
297 !IF "$(USE_SITECUST)" == "define"
298 BUILDOPT        = $(BUILDOPT) -DUSE_SITECUSTOMIZE
299 !ENDIF
300
301 !IF "$(USE_MULTI)" != "undef"
302 BUILDOPT        = $(BUILDOPT) -DPERL_IMPLICIT_CONTEXT
303 !ENDIF
304
305 !IF "$(USE_IMP_SYS)" != "undef"
306 BUILDOPT        = $(BUILDOPT) -DPERL_IMPLICIT_SYS
307 !ENDIF
308
309 !IF "$(PROCESSOR_ARCHITECTURE)" == ""
310 PROCESSOR_ARCHITECTURE  = x86
311 !ENDIF
312
313 !IF "$(WIN64)" == ""
314 # When we are running from a 32bit cmd.exe on AMD64 then
315 # PROCESSOR_ARCHITECTURE is set to x86 and PROCESSOR_ARCHITEW6432
316 # is set to AMD64
317 !IF "$(PROCESSOR_ARCHITEW6432)" != ""
318 PROCESSOR_ARCHITECTURE  = $(PROCESSOR_ARCHITEW6432)
319 WIN64                   = define
320 !ELSE
321 !IF "$(PROCESSOR_ARCHITECTURE)" == "AMD64" || "$(PROCESSOR_ARCHITECTURE)" == "IA64"
322 WIN64                   = define
323 !ELSE
324 WIN64                   = undef
325 !ENDIF
326 !ENDIF
327 !ENDIF
328
329 !IF "$(WIN64)" == "define"
330 USE_64_BIT_INT  = define
331 !ENDIF
332
333 # Treat 64-bit MSVC60 (doesn't really exist) as SDK2003SP1 because
334 # both link against MSVCRT.dll (which is part of Windows itself) and
335 # not against a compiler specific versioned runtime.
336 !IF "$(WIN64)" == "define" && "$(CCTYPE)" == "MSVC60"
337 CCTYPE          = SDK2003SP1
338 !ENDIF
339
340 # Disable the 64-bit-int option for (32-bit) MSVC60 builds since that compiler
341 # does not support it.
342 !IF "$(CCTYPE)" == "MSVC60"
343 !UNDEF USE_64_BIT_INT
344 USE_64_BIT_INT  = undef
345 !ENDIF
346
347 # Most relevant compiler-specific options fall into two groups:
348 # either pre-MSVC80 or MSVC80 onwards, so define a macro for this.
349 !IF "$(CCTYPE)" == "MSVC60" || \
350     "$(CCTYPE)" == "MSVC70" || "$(CCTYPE)" == "MSVC70FREE"
351 PREMSVC80       = define
352 !ELSE
353 PREMSVC80       = undef
354 !ENDIF
355
356 ARCHITECTURE = $(PROCESSOR_ARCHITECTURE)
357 !IF "$(ARCHITECTURE)" == "AMD64"
358 ARCHITECTURE    = x64
359 !ENDIF
360 !IF "$(ARCHITECTURE)" == "IA64"
361 ARCHITECTURE    = ia64
362 !ENDIF
363
364 !IF "$(USE_MULTI)" == "define"
365 ARCHNAME        = MSWin32-$(ARCHITECTURE)-multi
366 !ELSE
367 !IF "$(USE_PERLIO)" == "define"
368 ARCHNAME        = MSWin32-$(ARCHITECTURE)-perlio
369 !ELSE
370 ARCHNAME        = MSWin32-$(ARCHITECTURE)
371 !ENDIF
372 !ENDIF
373
374 !IF "$(USE_PERLIO)" == "define"
375 BUILDOPT        = $(BUILDOPT) -DUSE_PERLIO
376 !ENDIF
377
378 !IF "$(USE_ITHREADS)" == "define"
379 ARCHNAME        = $(ARCHNAME)-thread
380 !ENDIF
381
382 !IF "$(WIN64)" != "define"
383 !IF "$(USE_64_BIT_INT)" == "define"
384 ARCHNAME        = $(ARCHNAME)-64int
385 !ENDIF
386 !ENDIF
387
388 # All but the free version of VC++ 7.x can load DLLs on demand.  Makes the test
389 # suite run in about 10% less time.
390 !IF "$(CCTYPE)" != "MSVC70FREE"
391 DELAYLOAD       = -DELAYLOAD:ws2_32.dll delayimp.lib
392 !ENDIF
393
394 # Visual C++ 2005 and 2008 (VC++ 8.x and 9.x) create manifest files for EXEs and
395 # DLLs. These either need copying everywhere with the binaries, or else need
396 # embedding in them otherwise MSVCR80.dll or MSVCR90.dll won't be found. For
397 # simplicity, embed them if they exist (and delete them afterwards so that they
398 # don't get installed too).
399 EMBED_EXE_MANI  = if exist $@.manifest mt -nologo -manifest $@.manifest -outputresource:$@;1 && \
400                   if exist $@.manifest del $@.manifest
401 EMBED_DLL_MANI  = if exist $@.manifest mt -nologo -manifest $@.manifest -outputresource:$@;2 && \
402                   if exist $@.manifest del $@.manifest
403
404 ARCHDIR         = ..\lib\$(ARCHNAME)
405 COREDIR         = ..\lib\CORE
406 AUTODIR         = ..\lib\auto
407 LIBDIR          = ..\lib
408 EXTDIR          = ..\ext
409 DISTDIR         = ..\dist
410 CPANDIR         = ..\cpan
411 PODDIR          = ..\pod
412 HTMLDIR         = .\html
413
414 #
415 INST_SCRIPT     = $(INST_TOP)$(INST_VER)\bin
416 INST_BIN        = $(INST_SCRIPT)$(INST_ARCH)
417 INST_LIB        = $(INST_TOP)$(INST_VER)\lib
418 INST_ARCHLIB    = $(INST_LIB)$(INST_ARCH)
419 INST_COREDIR    = $(INST_ARCHLIB)\CORE
420 INST_HTML       = $(INST_TOP)$(INST_VER)\html
421
422 #
423 # Programs to compile, build .lib files and link
424 #
425
426 !IF "$(__ICC)" != "define"
427 CC              = cl
428 LINK32          = link
429 !ELSE
430 CC              = icl
431 LINK32          = xilink
432 !ENDIF
433 LIB32           = $(LINK32) -lib
434 RSC             = rc
435
436 #
437 # Options
438 #
439
440 INCLUDES        = -I$(COREDIR) -I.\include -I. -I..
441 #PCHFLAGS       = -Fpc:\temp\vcmoduls.pch -YX
442 DEFINES         = -DWIN32 -D_CONSOLE -DNO_STRICT
443 LOCDEFS         = -DPERLDLL -DPERL_CORE
444 SUBSYS          = console
445 CXX_FLAG        = -TP -EHsc
446
447 LIBC    = msvcrt.lib
448
449 !IF  "$(CFG)" == "Debug"
450 OPTIMIZE        = -Od -MD -Zi -DDEBUGGING
451 LINK_DBG        = -debug
452 !ELSE
453 # -O1 yields smaller code, which turns out to be faster than -O2 on x86 and x64
454 OPTIMIZE        = -O1 -MD -Zi -DNDEBUG
455 # we enable debug symbols in release builds also
456 LINK_DBG        = -debug -opt:ref,icf
457 # you may want to enable this if you want COFF symbols in the executables
458 # in addition to the PDB symbols.  The default Dr. Watson that ships with
459 # Windows can use the the former but not latter.  The free WinDbg can be
460 # installed to get better stack traces from just the PDB symbols, so we
461 # avoid the bloat of COFF symbols by default.
462 #LINK_DBG       = $(LINK_DBG) -debugtype:both
463 !  IF "$(CCTYPE)" != "MSVC60"
464 # enable Whole Program Optimizations (WPO) and Link Time Code Generation (LTCG)
465 OPTIMIZE        = $(OPTIMIZE) -GL
466 LINK_DBG        = $(LINK_DBG) -ltcg
467 LIB_FLAGS       = -ltcg
468 !  ENDIF
469 !ENDIF
470
471 !IF "$(WIN64)" == "define"
472 DEFINES         = $(DEFINES) -DWIN64 -DCONSERVATIVE
473 OPTIMIZE        = $(OPTIMIZE) -fp:precise
474 !ENDIF
475
476 # For now, silence warnings from VC++ 8.x onwards about "unsafe" CRT functions
477 # and POSIX CRT function names being deprecated.
478 !IF "$(PREMSVC80)" == "undef"
479 DEFINES         = $(DEFINES) -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE
480 !ENDIF
481
482 # In VS 2005 (VC++ 8.0) Microsoft changes time_t from 32-bit to
483 # 64-bit, even in 32-bit mode.  It also provides the _USE_32BIT_TIME_T
484 # preprocessor option to revert back to the old functionality for
485 # backward compatibility.  We define this symbol here for older 32-bit
486 # compilers only (which aren't using it at all) for the sole purpose
487 # of getting it into $Config{ccflags}.  That way if someone builds
488 # Perl itself with e.g. VC6 but later installs an XS module using VC8
489 # the time_t types will still be compatible.
490 !IF "$(WIN64)" == "undef"
491 !  IF "$(PREMSVC80)" == "define"
492 BUILDOPT        = $(BUILDOPT) -D_USE_32BIT_TIME_T
493 !  ENDIF
494 !ENDIF
495
496 LIBBASEFILES    = \
497                 oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.lib \
498                 comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \
499                 netapi32.lib uuid.lib ws2_32.lib mpr.lib winmm.lib \
500                 version.lib odbc32.lib odbccp32.lib comctl32.lib
501
502 # Avoid __intel_new_proc_init link error for libircmt.
503 # libmmd is /MD equivelent, other variants exist.
504 # libmmd is Intel C's math addon funcs to MS CRT, contains long doubles, C99,
505 # and optimized C89 funcs
506 !IF "$(__ICC)" == "define"
507 LIBBASEFILES    = $(LIBBASEFILES) libircmt.lib libmmd.lib
508 !ENDIF
509
510 # The 64 bit Windows Server 2003 SP1 SDK compilers link against MSVCRT.dll, which
511 # doesn't include the buffer overrun verification code used by the /GS switch.
512 # Since the code links against libraries that are compiled with /GS, this
513 # "security cookie verification" code must be included via bufferoverflow.lib.
514 !IF "$(WIN64)" == "define" && "$(CCTYPE)" == "SDK2003SP1"
515 LIBBASEFILES    = $(LIBBASEFILES) bufferoverflowU.lib
516 !ENDIF
517
518 LIBFILES        = $(LIBBASEFILES) $(LIBC)
519
520 #EXTRACFLAGS    = -nologo -GF -W4 -wd4127 -wd4706
521 EXTRACFLAGS     = -nologo -GF -W3
522 CFLAGS          = $(EXTRACFLAGS) $(INCLUDES) $(DEFINES) $(LOCDEFS) \
523                 $(PCHFLAGS) $(OPTIMIZE)
524 LINK_FLAGS      = -nologo -nodefaultlib $(LINK_DBG) \
525                 -libpath:"$(INST_COREDIR)" \
526                 -machine:$(PROCESSOR_ARCHITECTURE)
527 LIB_FLAGS       = $(LIB_FLAGS) -nologo
528 OBJOUT_FLAG     = -Fo
529 EXEOUT_FLAG     = -Fe
530
531 CFLAGS_O        = $(CFLAGS) $(BUILDOPT)
532
533 !IF "$(PREMSVC80)" == "undef"
534 LINK_FLAGS      = $(LINK_FLAGS) "/manifestdependency:type='Win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'"
535 !ELSE
536 RSC_FLAGS       = -DINCLUDE_MANIFEST
537 !ENDIF
538
539
540 #################### do not edit below this line #######################
541 ############# NO USER-SERVICEABLE PARTS BEYOND THIS POINT ##############
542
543 o = .obj
544
545 #
546 # Rules
547 #
548
549 .SUFFIXES : .c $(o) .dll .lib .exe .rc .res
550
551 .c$(o):
552         $(CC) -c -I$(<D) $(CFLAGS_O) $(OBJOUT_FLAG)$@ $<
553
554 .c.i:
555         $(CC) -c -I$(<D) $(CFLAGS_O) -P $(OBJOUT_FLAG)$@ $<
556
557 .y.c:
558         $(NOOP)
559
560 $(o).dll:
561         $(LINK32) -dll -subsystem:windows -implib:$(*B).lib -def:$(*B).def \
562             -out:$@ $(LINK_FLAGS) $(LIBFILES) $< $(LIBPERL)
563         $(EMBED_DLL_MANI)
564
565 .rc.res:
566         $(RSC) -i.. $(RSC_FLAGS) $<
567
568 #
569 # various targets
570
571 # makedef.pl must be updated if this changes, and this should normally
572 # only change when there is an incompatible revision of the public API.
573 PERLIMPLIB      = ..\perl521.lib
574 PERLSTATICLIB   = ..\perl521s.lib
575 PERLDLL         = ..\perl521.dll
576
577 MINIPERL        = ..\miniperl.exe
578 MINIDIR         = .\mini
579 PERLEXE         = ..\perl.exe
580 WPERLEXE        = ..\wperl.exe
581 PERLEXESTATIC   = ..\perl-static.exe
582 GLOBEXE         = ..\perlglob.exe
583 CONFIGPM        = ..\lib\Config.pm ..\lib\Config_heavy.pl
584 GENUUDMAP       = ..\generate_uudmap.exe
585 !IF "$(BUILD_STATIC)" == "define" || "$(ALL_STATIC)" == "define"
586 PERLSTATIC      = static
587 !ELSE
588 PERLSTATIC      = 
589 !ENDIF
590
591 # Unicode data files generated by mktables
592 FIRSTUNIFILE     = ..\lib\unicore\Decomposition.pl
593 UNIDATAFILES     = ..\lib\unicore\Decomposition.pl \
594                    ..\lib\unicore\CombiningClass.pl ..\lib\unicore\Name.pl \
595                    ..\lib\unicore\Heavy.pl ..\lib\unicore\mktables.lst     \
596                    ..\lib\unicore\UCD.pl ..\lib\unicore\Name.pm            \
597                    ..\lib\unicore\TestProp.pl
598
599 # Directories of Unicode data files generated by mktables
600 UNIDATADIR1     = ..\lib\unicore\To
601 UNIDATADIR2     = ..\lib\unicore\lib
602
603 PERLEXE_MANIFEST= .\perlexe.manifest
604 PERLEXE_ICO     = .\perlexe.ico
605 PERLEXE_RES     = .\perlexe.res
606 PERLDLL_RES     =
607
608 # Nominate a target which causes extensions to be re-built
609 # This used to be $(PERLEXE), but at worst it is the .dll that they depend
610 # on and really only the interface - i.e. the .def file used to export symbols
611 # from the .dll
612 PERLDEP         = perldll.def
613
614 PL2BAT          = bin\pl2bat.pl
615 GLOBBAT         = bin\perlglob.bat
616
617 UTILS           =                       \
618                 ..\utils\h2ph           \
619                 ..\utils\splain         \
620                 ..\utils\perlbug        \
621                 ..\utils\pl2pm          \
622                 ..\utils\c2ph           \
623                 ..\utils\pstruct        \
624                 ..\utils\h2xs           \
625                 ..\utils\perldoc        \
626                 ..\utils\perlivp        \
627                 ..\utils\libnetcfg      \
628                 ..\utils\enc2xs         \
629                 ..\utils\piconv         \
630                 ..\utils\corelist       \
631                 ..\utils\cpan           \
632                 ..\utils\xsubpp         \
633                 ..\utils\prove          \
634                 ..\utils\ptar           \
635                 ..\utils\ptardiff       \
636                 ..\utils\ptargrep       \
637                 ..\utils\zipdetails     \
638                 ..\utils\shasum         \
639                 ..\utils\instmodsh      \
640                 ..\utils\json_pp        \
641                 ..\utils\pod2html       \
642                 bin\exetype.pl          \
643                 bin\runperl.pl          \
644                 bin\pl2bat.pl           \
645                 bin\perlglob.pl         \
646                 bin\search.pl
647
648 MAKE            = nmake -nologo
649 MAKE_BARE       = nmake
650
651 CFGSH_TMPL      = config.vc
652 CFGH_TMPL       = config_H.vc
653
654 XCOPY           = xcopy /f /r /i /d /y
655 RCOPY           = xcopy /f /r /i /e /d /y
656 NOOP            = @rem
657 NULL            =
658
659 DEL             = del
660
661 MICROCORE_SRC   =               \
662                 ..\av.c         \
663                 ..\caretx.c     \
664                 ..\deb.c        \
665                 ..\doio.c       \
666                 ..\doop.c       \
667                 ..\dump.c       \
668                 ..\globals.c    \
669                 ..\gv.c         \
670                 ..\mro.c        \
671                 ..\hv.c         \
672                 ..\locale.c     \
673                 ..\keywords.c   \
674                 ..\mathoms.c    \
675                 ..\mg.c         \
676                 ..\numeric.c    \
677                 ..\op.c         \
678                 ..\pad.c        \
679                 ..\perl.c       \
680                 ..\perlapi.c    \
681                 ..\perly.c      \
682                 ..\pp.c         \
683                 ..\pp_ctl.c     \
684                 ..\pp_hot.c     \
685                 ..\pp_pack.c    \
686                 ..\pp_sort.c    \
687                 ..\pp_sys.c     \
688                 ..\reentr.c     \
689                 ..\regcomp.c    \
690                 ..\regexec.c    \
691                 ..\run.c        \
692                 ..\scope.c      \
693                 ..\sv.c         \
694                 ..\taint.c      \
695                 ..\toke.c       \
696                 ..\universal.c  \
697                 ..\utf8.c       \
698                 ..\util.c
699
700 EXTRACORE_SRC   = $(EXTRACORE_SRC) perllib.c
701
702 !IF "$(PERL_MALLOC)" == "define"
703 EXTRACORE_SRC   = $(EXTRACORE_SRC) ..\malloc.c
704 !ENDIF
705
706 EXTRACORE_SRC   = $(EXTRACORE_SRC) ..\perlio.c
707
708 WIN32_SRC       =               \
709                 .\win32.c       \
710                 .\win32sck.c    \
711                 .\win32thread.c \
712                 .\fcrypt.c
713
714 # We need this for miniperl build unless we override canned 
715 # config.h #define building mini\*
716 #!IF "$(USE_PERLIO)" == "define"
717 WIN32_SRC       = $(WIN32_SRC) .\win32io.c
718 #!ENDIF
719
720
721 CORE_NOCFG_H    =               \
722                 ..\av.h         \
723                 ..\cop.h        \
724                 ..\cv.h         \
725                 ..\dosish.h     \
726                 ..\embed.h      \
727                 ..\form.h       \
728                 ..\gv.h         \
729                 ..\handy.h      \
730                 ..\hv.h         \
731                 ..\hv_func.h    \
732                 ..\iperlsys.h   \
733                 ..\mg.h         \
734                 ..\nostdio.h    \
735                 ..\op.h         \
736                 ..\opcode.h     \
737                 ..\perl.h       \
738                 ..\perlapi.h    \
739                 ..\perlsdio.h   \
740                 ..\perly.h      \
741                 ..\pp.h         \
742                 ..\proto.h      \
743                 ..\regcomp.h    \
744                 ..\regexp.h     \
745                 ..\scope.h      \
746                 ..\sv.h         \
747                 ..\thread.h     \
748                 ..\unixish.h    \
749                 ..\utf8.h       \
750                 ..\util.h       \
751                 ..\warnings.h   \
752                 ..\XSUB.h       \
753                 ..\EXTERN.h     \
754                 ..\perlvars.h   \
755                 ..\intrpvar.h   \
756                 .\include\dirent.h      \
757                 .\include\netdb.h       \
758                 .\include\sys\errno2.h  \
759                 .\include\sys\socket.h  \
760                 .\win32.h
761
762 CORE_H          = $(CORE_NOCFG_H) .\config.h ..\git_version.h
763
764 UUDMAP_H        = ..\uudmap.h
765 BITCOUNT_H      = ..\bitcount.h
766 MG_DATA_H       = ..\mg_data.h
767 GENERATED_HEADERS = $(UUDMAP_H) $(BITCOUNT_H) $(MG_DATA_H)
768
769 MICROCORE_OBJ   = $(MICROCORE_SRC:.c=.obj)
770 CORE_OBJ        = $(MICROCORE_OBJ) $(EXTRACORE_SRC:.c=.obj)
771 WIN32_OBJ       = $(WIN32_SRC:.c=.obj)
772 MINICORE_OBJ    = $(MICROCORE_OBJ:..\=.\mini\)  \
773                   $(MINIDIR)\miniperlmain$(o)   \
774                   $(MINIDIR)\perlio$(o)
775 MINIWIN32_OBJ   = $(WIN32_OBJ:.\=.\mini\)
776 MINI_OBJ        = $(MINICORE_OBJ) $(MINIWIN32_OBJ)
777 DLL_OBJ         = $(DYNALOADER)
778 GENUUDMAP_OBJ   = $(GENUUDMAP:.exe=.obj)
779
780 PERLDLL_OBJ     = $(CORE_OBJ)
781 PERLEXE_OBJ     = perlmain$(o)
782 PERLEXEST_OBJ   = perlmainst$(o)
783
784 PERLDLL_OBJ     = $(PERLDLL_OBJ) $(WIN32_OBJ) $(DLL_OBJ)
785
786 !IF "$(USE_SETARGV)" != ""
787 SETARGV_OBJ     = setargv$(o)
788 !ENDIF
789
790 !IF "$(ALL_STATIC)" == "define"
791 # some exclusions, unfortunately, until fixed:
792 #  - MakeMaker isn't capable enough for SDBM_File (small bug)
793 STATIC_EXT      = * !SDBM_File
794 !ELSE
795 # specify static extensions here, for example:
796 # (be sure to include Win32CORE to load Win32 on demand)
797 #STATIC_EXT     = Win32CORE Cwd Compress/Raw/Zlib
798 STATIC_EXT      = Win32CORE
799 !ENDIF
800
801 DYNALOADER      = ..\DynaLoader$(o)
802
803 CFG_VARS        =                                       \
804                 "INST_TOP=$(INST_TOP)"                  \
805                 "INST_VER=$(INST_VER)"                  \
806                 "INST_ARCH=$(INST_ARCH)"                \
807                 "archname=$(ARCHNAME)"                  \
808                 "cc=$(CC)"                              \
809                 "ld=$(LINK32)"                          \
810                 "ccflags=$(EXTRACFLAGS) $(OPTIMIZE:"=\") $(DEFINES) $(BUILDOPT)"        \
811                 "cf_email=$(EMAIL)"                     \
812                 "d_mymalloc=$(PERL_MALLOC)"             \
813                 "libs=$(LIBFILES)"                      \
814                 "incpath=$(CCINCDIR:"=\")"              \
815                 "libperl=$(PERLIMPLIB:..\=)"            \
816                 "libpth=$(CCLIBDIR:"=\");$(EXTRALIBDIRS:"=\")"  \
817                 "libc=$(LIBC)"                          \
818                 "make=$(MAKE_BARE)"                             \
819                 "static_ext=$(STATIC_EXT)"              \
820                 "usethreads=$(USE_ITHREADS)"            \
821                 "useithreads=$(USE_ITHREADS)"           \
822                 "usemultiplicity=$(USE_MULTI)"          \
823                 "useperlio=$(USE_PERLIO)"               \
824                 "use64bitint=$(USE_64_BIT_INT)"         \
825                 "uselargefiles=$(USE_LARGE_FILES)"      \
826                 "usesitecustomize=$(USE_SITECUST)"      \
827                 "LINK_FLAGS=$(LINK_FLAGS:"=\")"         \
828                 "optimize=$(OPTIMIZE:"=\")"             \
829                 "WIN64=$(WIN64)"
830
831 #
832 # Top targets
833 #
834
835 all : .\config.h ..\git_version.h $(GLOBEXE) $(CONFIGPM) \
836         $(UNIDATAFILES) MakePPPort $(PERLEXE) Extensions_nonxs Extensions $(PERLSTATIC)
837         @echo   Everything is up to date. '$(MAKE_BARE) test' to run test suite.
838
839 regnodes : ..\regnodes.h
840
841 ..\regcomp$(o) : ..\regnodes.h ..\regcharclass.h
842
843 ..\regexec$(o) : ..\regnodes.h ..\regcharclass.h
844
845 reonly : regnodes .\config.h ..\git_version.h $(GLOBEXE) $(CONFIGPM) \
846         $(UNIDATAFILES) $(PERLEXE) Extensions_reonly
847         @echo   Perl and 're' are up to date.
848
849 static: $(PERLEXESTATIC)
850
851 #------------------------------------------------------------
852
853 $(GLOBEXE) : perlglob$(o)
854         $(LINK32) $(LINK_FLAGS) $(LIBFILES) -out:$@ -subsystem:$(SUBSYS) \
855             perlglob$(o) setargv$(o)
856         $(EMBED_EXE_MANI)
857
858 perlglob$(o)  : perlglob.c
859
860 config.w32 : $(CFGSH_TMPL)
861         copy $(CFGSH_TMPL) config.w32
862
863 #
864 # Copy the template config.h and set configurables at the end of it
865 # as per the options chosen and compiler used.
866 # Note: This config.h is only used to build miniperl.exe anyway, but
867 # it's as well to have its options correct to be sure that it builds
868 # and so that it's "-V" options are correct for use by makedef.pl. The
869 # real config.h used to build perl.exe is generated from the top-level
870 # config_h.SH by config_h.PL (run by miniperl.exe).
871 #
872 .\config.h : $(CFGH_TMPL)
873         -del /f config.h
874         copy $(CFGH_TMPL) config.h
875         @echo.>>$@
876         @echo #ifndef _config_h_footer_>>$@
877         @echo #define _config_h_footer_>>$@
878         @echo #undef Off_t>>$@
879         @echo #undef LSEEKSIZE>>$@
880         @echo #undef Off_t_size>>$@
881         @echo #undef PTRSIZE>>$@
882         @echo #undef SSize_t>>$@
883         @echo #undef HAS_ATOLL>>$@
884         @echo #undef HAS_STRTOLL>>$@
885         @echo #undef HAS_STRTOULL>>$@
886         @echo #undef IVTYPE>>$@
887         @echo #undef UVTYPE>>$@
888         @echo #undef IVSIZE>>$@
889         @echo #undef UVSIZE>>$@
890         @echo #undef NV_PRESERVES_UV>>$@
891         @echo #undef NV_PRESERVES_UV_BITS>>$@
892         @echo #undef IVdf>>$@
893         @echo #undef UVuf>>$@
894         @echo #undef UVof>>$@
895         @echo #undef UVxf>>$@
896         @echo #undef UVXf>>$@
897         @echo #undef USE_64_BIT_INT>>$@
898         @echo #undef Size_t_size>>$@
899 !IF "$(USE_LARGE_FILES)"=="define"
900         @echo #define Off_t __int64>>$@
901         @echo #define LSEEKSIZE ^8>>$@
902         @echo #define Off_t_size ^8>>$@
903 !ELSE
904         @echo #define Off_t long>>$@
905         @echo #define LSEEKSIZE ^4>>$@
906         @echo #define Off_t_size ^4>>$@
907 !ENDIF
908 !IF "$(WIN64)"=="define"
909         @echo #define PTRSIZE ^8>>$@
910         @echo #define SSize_t __int64>>$@
911         @echo #define HAS_ATOLL>>$@
912         @echo #define HAS_STRTOLL>>$@
913         @echo #define HAS_STRTOULL>>$@
914         @echo #define Size_t_size ^8>>$@
915 !ELSE
916         @echo #define PTRSIZE ^4>>$@
917         @echo #define SSize_t int>>$@
918         @echo #undef HAS_ATOLL>>$@
919         @echo #undef HAS_STRTOLL>>$@
920         @echo #undef HAS_STRTOULL>>$@
921         @echo #define Size_t_size ^4>>$@
922 !ENDIF
923 !IF "$(USE_64_BIT_INT)"=="define"
924         @echo #define IVTYPE __int64>>$@
925         @echo #define UVTYPE unsigned __int64>>$@
926         @echo #define IVSIZE ^8>>$@
927         @echo #define UVSIZE ^8>>$@
928         @echo #undef NV_PRESERVES_UV>>$@
929         @echo #define NV_PRESERVES_UV_BITS 53>>$@
930         @echo #define IVdf "I64d">>$@
931         @echo #define UVuf "I64u">>$@
932         @echo #define UVof "I64o">>$@
933         @echo #define UVxf "I64x">>$@
934         @echo #define UVXf "I64X">>$@
935         @echo #define USE_64_BIT_INT>>$@
936 !ELSE
937         @echo #define IVTYPE long>>$@
938         @echo #define UVTYPE unsigned long>>$@
939         @echo #define IVSIZE ^4>>$@
940         @echo #define UVSIZE ^4>>$@
941         @echo #define NV_PRESERVES_UV>>$@
942         @echo #define NV_PRESERVES_UV_BITS 32>>$@
943         @echo #define IVdf "ld">>$@
944         @echo #define UVuf "lu">>$@
945         @echo #define UVof "lo">>$@
946         @echo #define UVxf "lx">>$@
947         @echo #define UVXf "lX">>$@
948         @echo #undef USE_64_BIT_INT>>$@
949 !ENDIF
950         @echo #endif>>$@
951
952 ..\git_version.h : $(MINIPERL) ..\make_patchnum.pl
953         cd .. && miniperl -Ilib make_patchnum.pl && cd win32
954
955 # make sure that we recompile perl.c if the git version changes
956 ..\perl$(o) : ..\git_version.h
957
958 ..\config.sh : config.w32 $(MINIPERL) config_sh.PL FindExt.pm
959         $(MINIPERL) -I..\lib config_sh.PL $(CFG_VARS) config.w32 > ..\config.sh
960
961 # This target is for when changes to the main config.sh happen.
962 # Edit config.vc, then make perl in a minimal configuration (i.e. with MULTI,
963 # ITHREADS, IMP_SYS, LARGE_FILES and PERLIO off), then make this target
964 # to regenerate config_H.vc.
965 regen_config_h:
966         $(MINIPERL) -I..\lib config_sh.PL $(CFG_VARS) $(CFGSH_TMPL) > ..\config.sh
967         $(MINIPERL) -I..\lib ..\configpm --chdir=..
968         -del /f $(CFGH_TMPL)
969         -$(MINIPERL) -I..\lib config_h.PL
970         rename config.h $(CFGH_TMPL)
971
972 $(CONFIGPM) : $(MINIPERL) ..\config.sh config_h.PL
973         $(MINIPERL) -I..\lib ..\configpm --chdir=..
974         if exist lib\* $(RCOPY) lib\*.* ..\lib\$(NULL)
975         $(XCOPY) ..\*.h $(COREDIR)\*.*
976         $(XCOPY) *.h $(COREDIR)\*.*
977         $(RCOPY) include $(COREDIR)\*.*
978         -$(MINIPERL) -I..\lib config_h.PL
979         if errorlevel 1 $(MAKE) /$(MAKEFLAGS) $(CONFIGPM)
980
981 # See the comment in Makefile.SH explaining this seemingly cranky ordering
982 $(MINIPERL) : ..\lib\buildcustomize.pl 
983
984 ..\lib\buildcustomize.pl : $(MINIDIR) $(MINI_OBJ) ..\write_buildcustomize.pl
985         $(LINK32) -subsystem:console -out:$(MINIPERL) @<<
986         $(LINK_FLAGS) $(DELAYLOAD) $(LIBFILES) $(MINI_OBJ)
987 <<
988         $(EMBED_EXE_MANI:..\lib\buildcustomize.pl=..\miniperl.exe)
989         $(MINIPERL) -I..\lib -f ..\write_buildcustomize.pl ..
990
991 $(MINIDIR) :
992         if not exist "$(MINIDIR)" mkdir "$(MINIDIR)"
993
994 $(MINICORE_OBJ) : $(CORE_NOCFG_H)
995         $(CC) -c $(CFLAGS) -DPERL_EXTERNAL_GLOB -DPERL_IS_MINIPERL $(OBJOUT_FLAG)$@ ..\$(*F).c
996
997 $(MINIWIN32_OBJ) : $(CORE_NOCFG_H)
998         $(CC) -c $(CFLAGS) -DPERL_IS_MINIPERL $(OBJOUT_FLAG)$@ $(*F).c
999
1000 # -DPERL_IMPLICIT_SYS needs C++ for perllib.c
1001 # This is the only file that depends on perlhost.h, vmem.h, and vdir.h
1002 !IF "$(USE_IMP_SYS)" == "define"
1003 perllib$(o)     : perllib.c .\perlhost.h .\vdir.h .\vmem.h
1004         $(CC) -c -I. $(CFLAGS_O) $(CXX_FLAG) $(OBJOUT_FLAG)$@ perllib.c
1005 !ENDIF
1006
1007 # 1. we don't want to rebuild miniperl.exe when config.h changes
1008 # 2. we don't want to rebuild miniperl.exe with non-default config.h
1009 # 3. we can't have miniperl.exe depend on git_version.h, as miniperl creates it
1010 $(MINI_OBJ)     : $(CORE_NOCFG_H)
1011
1012 $(WIN32_OBJ)    : $(CORE_H)
1013 $(CORE_OBJ)     : $(CORE_H)
1014 $(DLL_OBJ)      : $(CORE_H)
1015
1016 perldll.def : $(MINIPERL) $(CONFIGPM) ..\embed.fnc ..\makedef.pl create_perllibst_h.pl
1017         $(MINIPERL) -I..\lib create_perllibst_h.pl
1018         $(MINIPERL) -I..\lib -w ..\makedef.pl PLATFORM=win32 $(OPTIMIZE) $(DEFINES) $(BUILDOPT) \
1019             CCTYPE=$(CCTYPE) TARG_DIR=..\ > perldll.def
1020
1021 $(PERLDLL): perldll.def $(PERLDLL_OBJ) $(PERLDLL_RES) Extensions_static
1022         $(LINK32) -dll -def:perldll.def -base:0x28000000 -out:$@ @Extensions_static @<<
1023                 $(LINK_FLAGS) $(DELAYLOAD) $(LIBFILES) $(PERLDLL_OBJ) $(PERLDLL_RES)
1024 <<
1025         $(EMBED_DLL_MANI)
1026         $(XCOPY) $(PERLIMPLIB) $(COREDIR)
1027
1028 $(PERLSTATICLIB): Extensions_static
1029         $(LIB32) $(LIB_FLAGS) -out:$@ @Extensions_static @<<
1030                 $(PERLDLL_OBJ)
1031 <<
1032         $(XCOPY) $(PERLSTATICLIB) $(COREDIR)
1033
1034 $(PERLEXE_RES): perlexe.rc $(PERLEXE_MANIFEST) $(PERLEXE_ICO)
1035
1036 $(MINIDIR)\globals$(o) : $(GENERATED_HEADERS)
1037
1038 $(UUDMAP_H) $(MG_DATA_H) : $(BITCOUNT_H)
1039
1040 $(BITCOUNT_H) : $(GENUUDMAP)
1041         $(GENUUDMAP) $(GENERATED_HEADERS)
1042
1043 $(GENUUDMAP_OBJ) : ..\mg_raw.h
1044
1045 $(GENUUDMAP) : $(GENUUDMAP_OBJ)
1046         $(LINK32) -subsystem:console -out:$@ @<<
1047                 $(LINK_FLAGS) $(LIBFILES) $(GENUUDMAP_OBJ)
1048 <<
1049         $(EMBED_EXE_MANI)
1050
1051 perlmain.c : runperl.c
1052         copy runperl.c perlmain.c
1053
1054 perlmain$(o) : perlmain.c
1055         $(CC) $(CFLAGS_O:-DPERLDLL=-UPERLDLL) $(OBJOUT_FLAG)$@ -c perlmain.c
1056
1057 perlmainst.c : runperl.c
1058         copy runperl.c perlmainst.c
1059
1060 perlmainst$(o) : perlmainst.c
1061         $(CC) $(CFLAGS_O) $(OBJOUT_FLAG)$@ -c perlmainst.c
1062
1063 $(PERLEXE): $(PERLDLL) $(CONFIGPM) $(PERLEXE_OBJ) $(PERLEXE_RES)
1064         $(LINK32) -subsystem:console -out:$@ $(LINK_FLAGS) \
1065             $(PERLEXE_OBJ) $(PERLEXE_RES) $(PERLIMPLIB) $(LIBFILES) $(SETARGV_OBJ)
1066         $(EMBED_EXE_MANI)
1067         copy $(PERLEXE) $(WPERLEXE)
1068         $(MINIPERL) -I..\lib bin\exetype.pl $(WPERLEXE) WINDOWS
1069
1070 $(PERLEXESTATIC): $(PERLSTATICLIB) $(CONFIGPM) $(PERLEXEST_OBJ) $(PERLEXE_RES)
1071         $(LINK32) -subsystem:console -out:$@ $(LINK_FLAGS) \
1072             $(PERLEXEST_OBJ) $(PERLEXE_RES) $(PERLSTATICLIB) $(LIBFILES) $(SETARGV_OBJ)
1073         $(EMBED_EXE_MANI)
1074
1075 MakePPPort: $(MINIPERL) $(CONFIGPM) Extensions_nonxs
1076         $(MINIPERL) -I..\lib ..\mkppport
1077
1078 #-------------------------------------------------------------------------------
1079 # There's no direct way to mark a dependency on
1080 # DynaLoader.pm, so this will have to do
1081 Extensions: ..\make_ext.pl ..\lib\buildcustomize.pl $(PERLDEP) $(CONFIGPM) $(DYNALOADER)
1082         $(XCOPY) ..\*.h $(COREDIR)\*.*
1083         $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --dynamic
1084
1085 Extensions_reonly: ..\make_ext.pl ..\lib\buildcustomize.pl $(PERLDEP) $(CONFIGPM) $(DYNALOADER)
1086         $(XCOPY) ..\*.h $(COREDIR)\*.*
1087         $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --dynamic +re
1088
1089 Extensions_static : ..\make_ext.pl ..\lib\buildcustomize.pl list_static_libs.pl $(PERLDEP) $(CONFIGPM) Extensions_nonxs
1090         $(XCOPY) ..\*.h $(COREDIR)\*.*
1091         $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --static
1092         $(MINIPERL) -I..\lib list_static_libs.pl > Extensions_static
1093
1094 Extensions_nonxs: ..\make_ext.pl ..\lib\buildcustomize.pl $(PERLDEP) $(CONFIGPM) ..\pod\perlfunc.pod
1095         $(XCOPY) ..\*.h $(COREDIR)\*.*
1096         $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --nonxs
1097
1098 $(DYNALOADER) : ..\make_ext.pl ..\lib\buildcustomize.pl $(PERLDEP) $(CONFIGPM) Extensions_nonxs
1099         $(XCOPY) ..\*.h $(COREDIR)\*.*
1100         $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(EXTDIR) --dynaloader
1101
1102 Extensions_clean: 
1103         -if exist $(MINIPERL) $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --all --target=clean
1104
1105 Extensions_realclean: 
1106         -if exist $(MINIPERL) $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --all --target=realclean
1107
1108 #-------------------------------------------------------------------------------
1109
1110 doc: $(PERLEXE) ..\pod\perltoc.pod
1111         $(PERLEXE) -I..\lib ..\installhtml --podroot=.. --htmldir=$(HTMLDIR) \
1112             --podpath=pod:lib:utils --htmlroot="file://$(INST_HTML::=|)" \
1113             --recurse
1114
1115 ..\utils\Makefile: $(CONFIGPM) ..\utils\Makefile.PL
1116         $(MINIPERL) -I..\lib ..\utils\Makefile.PL ..
1117
1118 # Note that this next section is parsed (and regenerated) by pod/buildtoc
1119 # so please check that script before making structural changes here
1120
1121 utils: $(PERLEXE) ..\utils\Makefile
1122         cd ..\utils
1123         $(MAKE) PERL=$(MINIPERL)
1124         cd ..\pod
1125         copy ..\README.aix      ..\pod\perlaix.pod
1126         copy ..\README.amiga    ..\pod\perlamiga.pod
1127         copy ..\README.android  ..\pod\perlandroid.pod
1128         copy ..\README.bs2000   ..\pod\perlbs2000.pod
1129         copy ..\README.ce       ..\pod\perlce.pod
1130         copy ..\README.cn       ..\pod\perlcn.pod
1131         copy ..\README.cygwin   ..\pod\perlcygwin.pod
1132         copy ..\README.dos      ..\pod\perldos.pod
1133         copy ..\README.freebsd  ..\pod\perlfreebsd.pod
1134         copy ..\README.haiku    ..\pod\perlhaiku.pod
1135         copy ..\README.hpux     ..\pod\perlhpux.pod
1136         copy ..\README.hurd     ..\pod\perlhurd.pod
1137         copy ..\README.irix     ..\pod\perlirix.pod
1138         copy ..\README.jp       ..\pod\perljp.pod
1139         copy ..\README.ko       ..\pod\perlko.pod
1140         copy ..\README.linux    ..\pod\perllinux.pod
1141         copy ..\README.macos    ..\pod\perlmacos.pod
1142         copy ..\README.macosx   ..\pod\perlmacosx.pod
1143         copy ..\README.netware  ..\pod\perlnetware.pod
1144         copy ..\README.openbsd  ..\pod\perlopenbsd.pod
1145         copy ..\README.os2      ..\pod\perlos2.pod
1146         copy ..\README.os390    ..\pod\perlos390.pod
1147         copy ..\README.os400    ..\pod\perlos400.pod
1148         copy ..\README.plan9    ..\pod\perlplan9.pod
1149         copy ..\README.qnx      ..\pod\perlqnx.pod
1150         copy ..\README.riscos   ..\pod\perlriscos.pod
1151         copy ..\README.solaris  ..\pod\perlsolaris.pod
1152         copy ..\README.symbian  ..\pod\perlsymbian.pod
1153         copy ..\README.synology ..\pod\perlsynology.pod
1154         copy ..\README.tru64    ..\pod\perltru64.pod
1155         copy ..\README.tw       ..\pod\perltw.pod
1156         copy ..\README.vos      ..\pod\perlvos.pod
1157         copy ..\README.win32    ..\pod\perlwin32.pod
1158         copy ..\pod\perldelta.pod ..\pod\perl5212delta.pod
1159         cd ..\win32
1160         $(PERLEXE) $(PL2BAT) $(UTILS)
1161         $(MINIPERL) -I..\lib ..\autodoc.pl ..
1162         $(MINIPERL) -I..\lib ..\pod\perlmodlib.PL -q ..
1163
1164 ..\pod\perltoc.pod: $(PERLEXE) Extensions Extensions_nonxs
1165         $(PERLEXE) -f ..\pod\buildtoc -q
1166
1167 # Note that the pod cleanup in this next section is parsed (and regenerated
1168 # by pod/buildtoc so please check that script before making changes here
1169
1170 distclean: realclean
1171         -del /f $(MINIPERL) $(PERLEXE) $(PERLDLL) $(GLOBEXE) \
1172                 $(PERLIMPLIB) ..\miniperl.lib $(PERLEXESTATIC) $(PERLSTATICLIB)
1173         -del /f $(LIBDIR)\Encode.pm $(LIBDIR)\encoding.pm $(LIBDIR)\Errno.pm
1174         -del /f $(LIBDIR)\Config.pod $(LIBDIR)\POSIX.pod $(LIBDIR)\threads.pm
1175         -del /f $(LIBDIR)\.exists $(LIBDIR)\attributes.pm $(LIBDIR)\DynaLoader.pm
1176         -del /f $(LIBDIR)\Fcntl.pm $(LIBDIR)\IO.pm $(LIBDIR)\Opcode.pm
1177         -del /f $(LIBDIR)\ops.pm $(LIBDIR)\Safe.pm
1178         -del /f $(LIBDIR)\SDBM_File.pm $(LIBDIR)\Socket.pm $(LIBDIR)\POSIX.pm
1179         -del /f $(LIBDIR)\B.pm $(LIBDIR)\O.pm $(LIBDIR)\re.pm
1180         -del /f $(LIBDIR)\File\Glob.pm
1181         -del /f $(LIBDIR)\Storable.pm
1182         -del /f $(LIBDIR)\Sys\Hostname.pm
1183         -del /f $(LIBDIR)\Time\HiRes.pm
1184         -del /f $(LIBDIR)\Unicode\Normalize.pm
1185         -del /f $(LIBDIR)\Math\BigInt\FastCalc.pm
1186         -del /f $(LIBDIR)\Win32.pm
1187         -del /f $(LIBDIR)\Win32CORE.pm
1188         -del /f $(LIBDIR)\Win32API\File.pm
1189         -del /f $(LIBDIR)\Win32API\File\cFile.pc
1190         -del /f $(LIBDIR)\buildcustomize.pl
1191         -del /f $(DISTDIR)\XSLoader\XSLoader.pm
1192         -del /f *.def *.map
1193         -if exist $(LIBDIR)\App rmdir /s /q $(LIBDIR)\App
1194         -if exist $(LIBDIR)\Archive rmdir /s /q $(LIBDIR)\Archive
1195         -if exist $(LIBDIR)\Attribute rmdir /s /q $(LIBDIR)\Attribute
1196         -if exist $(LIBDIR)\autodie rmdir /s /q $(LIBDIR)\autodie
1197         -if exist $(LIBDIR)\Carp rmdir /s /q $(LIBDIR)\Carp
1198         -if exist $(LIBDIR)\Compress rmdir /s /q $(LIBDIR)\Compress
1199         -if exist $(LIBDIR)\Config\Perl rmdir /s /q $(LIBDIR)\Config\Perl
1200         -if exist $(LIBDIR)\CPAN rmdir /s /q $(LIBDIR)\CPAN
1201         -if exist $(LIBDIR)\Data rmdir /s /q $(LIBDIR)\Data
1202         -if exist $(LIBDIR)\Devel rmdir /s /q $(LIBDIR)\Devel
1203         -if exist $(LIBDIR)\Digest rmdir /s /q $(LIBDIR)\Digest
1204         -if exist $(LIBDIR)\Encode rmdir /s /q $(LIBDIR)\Encode
1205         -if exist $(LIBDIR)\encoding rmdir /s /q $(LIBDIR)\encoding
1206         -if exist $(LIBDIR)\Exporter rmdir /s /q $(LIBDIR)\Exporter
1207         -if exist $(LIBDIR)\ExtUtils\CBuilder rmdir /s /q $(LIBDIR)\ExtUtils\CBuilder
1208         -if exist $(LIBDIR)\ExtUtils\Command rmdir /s /q $(LIBDIR)\ExtUtils\Command
1209         -if exist $(LIBDIR)\ExtUtils\Constant rmdir /s /q $(LIBDIR)\ExtUtils\Constant
1210         -if exist $(LIBDIR)\ExtUtils\Liblist rmdir /s /q $(LIBDIR)\ExtUtils\Liblist
1211         -if exist $(LIBDIR)\ExtUtils\MakeMaker rmdir /s /q $(LIBDIR)\ExtUtils\MakeMaker
1212         -if exist $(LIBDIR)\ExtUtils\ParseXS rmdir /s /q $(LIBDIR)\ExtUtils\ParseXS
1213         -if exist $(LIBDIR)\ExtUtils\Typemaps rmdir /s /q $(LIBDIR)\ExtUtils\Typemaps
1214         -if exist $(LIBDIR)\File\Spec rmdir /s /q $(LIBDIR)\File\Spec
1215         -if exist $(LIBDIR)\Filter rmdir /s /q $(LIBDIR)\Filter
1216         -if exist $(LIBDIR)\Hash rmdir /s /q $(LIBDIR)\Hash
1217         -if exist $(LIBDIR)\HTTP rmdir /s /q $(LIBDIR)\HTTP
1218         -if exist $(LIBDIR)\I18N rmdir /s /q $(LIBDIR)\I18N
1219         -if exist $(LIBDIR)\IO rmdir /s /q $(LIBDIR)\IO
1220         -if exist $(LIBDIR)\IPC rmdir /s /q $(LIBDIR)\IPC
1221         -if exist $(LIBDIR)\JSON rmdir /s /q $(LIBDIR)\JSON
1222         -if exist $(LIBDIR)\List rmdir /s /q $(LIBDIR)\List
1223         -if exist $(LIBDIR)\Locale rmdir /s /q $(LIBDIR)\Locale
1224         -if exist $(LIBDIR)\Math rmdir /s /q $(LIBDIR)\Math
1225         -if exist $(LIBDIR)\Memoize rmdir /s /q $(LIBDIR)\Memoize
1226         -if exist $(LIBDIR)\MIME rmdir /s /q $(LIBDIR)\MIME
1227         -if exist $(LIBDIR)\Module rmdir /s /q $(LIBDIR)\Module
1228         -if exist $(LIBDIR)\Net\FTP rmdir /s /q $(LIBDIR)\Net\FTP
1229         -if exist $(LIBDIR)\Params rmdir /s /q $(LIBDIR)\Params
1230         -if exist $(LIBDIR)\Parse rmdir /s /q $(LIBDIR)\Parse
1231         -if exist $(LIBDIR)\Perl rmdir /s /q $(LIBDIR)\Perl
1232         -if exist $(LIBDIR)\PerlIO rmdir /s /q $(LIBDIR)\PerlIO
1233         -if exist $(LIBDIR)\Pod\Perldoc rmdir /s /q $(LIBDIR)\Pod\Perldoc
1234         -if exist $(LIBDIR)\Pod\Simple rmdir /s /q $(LIBDIR)\Pod\Simple
1235         -if exist $(LIBDIR)\Pod\Text rmdir /s /q $(LIBDIR)\Pod\Text
1236         -if exist $(LIBDIR)\Scalar rmdir /s /q $(LIBDIR)\Scalar
1237         -if exist $(LIBDIR)\Search rmdir /s /q $(LIBDIR)\Search
1238         -if exist $(LIBDIR)\Sys rmdir /s /q $(LIBDIR)\Sys
1239         -if exist $(LIBDIR)\TAP rmdir /s /q $(LIBDIR)\TAP
1240         -if exist $(LIBDIR)\Term rmdir /s /q $(LIBDIR)\Term
1241         -if exist $(LIBDIR)\Test rmdir /s /q $(LIBDIR)\Test
1242         -if exist $(LIBDIR)\Text rmdir /s /q $(LIBDIR)\Text
1243         -if exist $(LIBDIR)\Thread rmdir /s /q $(LIBDIR)\Thread
1244         -if exist $(LIBDIR)\threads rmdir /s /q $(LIBDIR)\threads
1245         -if exist $(LIBDIR)\Tie\Hash rmdir /s /q $(LIBDIR)\Tie\Hash
1246         -if exist $(LIBDIR)\Unicode\Collate rmdir /s /q $(LIBDIR)\Unicode\Collate
1247         -if exist $(LIBDIR)\Unicode\Collate\Locale rmdir /s /q $(LIBDIR)\Unicode\Collate\Locale
1248         -if exist $(LIBDIR)\version rmdir /s /q $(LIBDIR)\version
1249         -if exist $(LIBDIR)\VMS rmdir /s /q $(LIBDIR)\VMS
1250         -if exist $(LIBDIR)\Win32API rmdir /s /q $(LIBDIR)\Win32API
1251         -if exist $(LIBDIR)\XS rmdir /s /q $(LIBDIR)\XS
1252         -cd $(PODDIR) && del /f *.html *.bat roffitall \
1253             perl5212delta.pod perlaix.pod perlamiga.pod perlandroid.pod \
1254             perlapi.pod perlbs2000.pod perlce.pod perlcn.pod perlcygwin.pod \
1255             perldos.pod perlfreebsd.pod perlhaiku.pod perlhpux.pod \
1256             perlhurd.pod perlintern.pod perlirix.pod perljp.pod perlko.pod \
1257             perllinux.pod perlmacos.pod perlmacosx.pod perlmodlib.pod \
1258             perlnetware.pod perlopenbsd.pod perlos2.pod perlos390.pod \
1259             perlos400.pod perlplan9.pod perlqnx.pod perlriscos.pod \
1260             perlsolaris.pod perlsymbian.pod perlsynology.pod perltoc.pod \
1261             perltru64.pod perltw.pod perluniprops.pod perlvos.pod \
1262             perlwin32.pod
1263         -cd ..\utils && del /f h2ph splain perlbug pl2pm c2ph pstruct h2xs \
1264             perldoc perlivp libnetcfg enc2xs piconv cpan *.bat \
1265             xsubpp pod2html instmodsh json_pp prove ptar ptardiff ptargrep shasum corelist zipdetails
1266         -del /f ..\config.sh perlmain.c dlutils.c config.h.new \
1267                 perlmainst.c
1268         -del /f $(CONFIGPM)
1269         -del /f ..\lib\Config_git.pl
1270         -del /f bin\*.bat
1271         -del /f perllibst.h
1272         -del /f $(PERLEXE_RES) perl.base
1273         -cd .. && del /s *.lib *.map *.pdb *.ilk *.bs *$(o) .exists pm_to_blib ppport.h
1274         -cd $(EXTDIR) && del /s *.def Makefile Makefile.old
1275         -cd $(DISTDIR) && del /s *.def Makefile Makefile.old
1276         -cd $(CPANDIR) && del /s *.def Makefile Makefile.old
1277         -del /s ..\utils\Makefile
1278         -if exist $(AUTODIR) rmdir /s /q $(AUTODIR)
1279         -if exist $(COREDIR) rmdir /s /q $(COREDIR)
1280         -if exist pod2htmd.tmp del pod2htmd.tmp
1281         -if exist $(HTMLDIR) rmdir /s /q $(HTMLDIR)
1282         -del /f ..\t\test_state
1283
1284 install : all installbare installhtml
1285
1286 installbare : utils ..\pod\perltoc.pod
1287         $(PERLEXE) ..\installperl
1288         if exist $(WPERLEXE) $(XCOPY) $(WPERLEXE) $(INST_BIN)\*.*
1289         if exist $(PERLEXESTATIC) $(XCOPY) $(PERLEXESTATIC) $(INST_BIN)\*.*
1290         $(XCOPY) $(GLOBEXE) $(INST_BIN)\*.*
1291         if exist ..\perl*.pdb $(XCOPY) ..\perl*.pdb $(INST_BIN)\*.*
1292         $(XCOPY) bin\*.bat $(INST_SCRIPT)\*.*
1293
1294 installhtml : doc
1295         $(RCOPY) $(HTMLDIR)\*.* $(INST_HTML)\*.*
1296
1297 inst_lib : $(CONFIGPM)
1298         $(RCOPY) ..\lib $(INST_LIB)\*.*
1299
1300 $(UNIDATAFILES) ..\pod\perluniprops.pod : $(MINIPERL) $(CONFIGPM) ..\lib\unicore\mktables Extensions_nonxs
1301         cd ..\lib\unicore && \
1302         ..\$(MINIPERL) -I.. -I..\..\dist\Cwd\lib -I..\..\dist\Cwd mktables -P ..\..\pod -maketest -makelist -p -check $@ $(FIRSTUNIFILE)
1303
1304 minitest : $(MINIPERL) $(GLOBEXE) $(CONFIGPM) utils $(UNIDATAFILES)
1305         $(XCOPY) $(MINIPERL) ..\t\$(NULL)
1306         if exist ..\t\perl.exe del /f ..\t\perl.exe
1307         rename ..\t\miniperl.exe perl.exe
1308         $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1309         attrib -r ..\t\*.*
1310         cd ..\t && \
1311         $(MINIPERL) -I..\lib harness base/*.t comp/*.t cmd/*.t io/*.t opbasic/*.t op/*.t pragma/*.t
1312
1313 test-prep : all utils ../pod/perltoc.pod
1314         $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1315         $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1316         $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1317         set PERL_STATIC_EXT=$(STATIC_EXT)
1318
1319 test : test-prep
1320         cd ..\t
1321         $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES)
1322         cd ..\win32
1323
1324 test_porting : test-prep
1325         cd ..\t
1326         $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) porting\*.t ..\lib\diagnostics.t
1327         cd ..\win32
1328
1329 test-reonly : reonly utils
1330         $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1331         $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1332         $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1333         cd ..\t
1334         $(PERLEXE) -I..\lib harness $(OPT) -re \bre\\/ $(EXTRA)
1335         cd ..\win32
1336
1337 regen :
1338         cd ..
1339         regen.pl
1340         cd win32
1341
1342 test-notty : test-prep
1343         set PERL_SKIP_TTY_TEST=1
1344         cd ..\t
1345         $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES)
1346         cd ..\win32
1347
1348 _test : 
1349        $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1350        $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1351        $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1352        cd ..\t
1353        $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES)
1354        cd ..\win32
1355
1356 _clean :
1357         -@$(DEL) miniperlmain$(o)
1358         -@$(DEL) $(MINIPERL)
1359         -@$(DEL) perlglob$(o)
1360         -@$(DEL) perlmain$(o)
1361         -@$(DEL) perlmainst$(o)
1362         -@$(DEL) config.w32
1363         -@$(DEL) config.h
1364         -@$(DEL) ..\git_version.h
1365         -@$(DEL) $(GLOBEXE)
1366         -@$(DEL) $(PERLEXE)
1367         -@$(DEL) $(WPERLEXE)
1368         -@$(DEL) $(PERLEXESTATIC)
1369         -@$(DEL) $(PERLSTATICLIB)
1370         -@$(DEL) $(PERLDLL)
1371         -@$(DEL) $(CORE_OBJ)
1372         -@$(DEL) $(GENUUDMAP) $(GENUUDMAP_OBJ) $(GENERATED_HEADERS)
1373         -if exist $(MINIDIR) rmdir /s /q $(MINIDIR)
1374         -if exist $(UNIDATADIR1) rmdir /s /q $(UNIDATADIR1)
1375         -if exist $(UNIDATADIR2) rmdir /s /q $(UNIDATADIR2)
1376         -@$(DEL) $(UNIDATAFILES)
1377         -@$(DEL) $(WIN32_OBJ)
1378         -@$(DEL) $(DLL_OBJ)
1379         -@$(DEL) ..\*$(o) ..\*.lib ..\*.exp *$(o) *.lib *.exp *.res
1380         -@$(DEL) ..\t\*.exe ..\t\*.dll ..\t\*.bat
1381         -@$(DEL) *.ilk
1382         -@$(DEL) *.pdb
1383         -@$(DEL) Extensions_static
1384
1385 clean : Extensions_clean _clean
1386
1387 realclean : Extensions_realclean _clean
1388
1389 # Handy way to run perlbug -ok without having to install and run the
1390 # installed perlbug. We don't re-run the tests here - we trust the user.
1391 # Please *don't* use this unless all tests pass.
1392 # If you want to report test failures, use "nmake nok" instead.
1393 ok: utils
1394         $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)"
1395
1396 okfile: utils
1397         $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)" -F perl.ok
1398
1399 nok: utils
1400         $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)"
1401
1402 nokfile: utils
1403         $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)" -F perl.nok