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