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