cflags.SH: rework the gcc warnings selection
[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 through 7.0 (and possibly newer versions)
5 #       Borland C++ 5.02 or better
6 #       Mingw32 with gcc-2.95.2 or better
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 # (perl59.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.9.4
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 Studio 98)
100 #CCTYPE         *= MSVC60
101 # Visual C++ Toolkit 2003 (free version of Visual C++ 7.x command-line tools)
102 #CCTYPE         *= MSVC70FREE
103 # Visual C++ 7.x (aka Visual Studio .NET 2003) (full version)
104 #CCTYPE         *= MSVC70
105 # Borland 5.02 or later
106 #CCTYPE         *= BORLAND
107 # MinGW with gcc-2.95.2 or later
108 CCTYPE          *= GCC
109
110 #
111 # uncomment this if your Borland compiler is older than v5.4.
112 #BCCOLD         *= define
113 #
114 # uncomment this if you want to use Borland's VCL as your CRT
115 #BCCVCL         *= define
116
117 #
118 # uncomment this if you are compiling under Windows 95/98 and command.com
119 # (not needed if you're running under 4DOS/NT 6.01 or later)
120 #IS_WIN95       *= define
121
122 #
123 # uncomment next line if you want debug version of perl (big,slow)
124 # If not enabled, we automatically try to use maximum optimization
125 # with all compilers that are known to have a working optimizer.
126 #
127 #CFG            *= Debug
128
129 #
130 # uncomment to enable use of PerlCRT.DLL when using the Visual C compiler.
131 # It has patches that fix known bugs in older versions of MSVCRT.DLL.
132 # This currently requires VC 5.0 with Service Pack 3 or later.
133 # Get it from CPAN at http://www.cpan.org/authors/id/D/DO/DOUGL/
134 # and follow the directions in the package to install.
135 #
136 # Not recommended if you have VC 6.x and you're not running Windows 9x.
137 #
138 #USE_PERLCRT    *= define
139
140 #
141 # uncomment to enable linking with setargv.obj under the Visual C
142 # compiler. Setting this options enables perl to expand wildcards in
143 # arguments, but it may be harder to use alternate methods like
144 # File::DosGlob that are more powerful.  This option is supported only with
145 # Visual C.
146 #
147 #USE_SETARGV    *= define
148
149 #
150 # if you want to have the crypt() builtin function implemented, leave this or
151 # CRYPT_LIB uncommented.  The fcrypt.c file named here contains a suitable
152 # version of des_fcrypt().
153 #
154 CRYPT_SRC       *= fcrypt.c
155
156 #
157 # if you didn't set CRYPT_SRC and if you have des_fcrypt() available in a
158 # library, uncomment this, and make sure the library exists (see README.win32)
159 # Specify the full pathname of the library.
160 #
161 #CRYPT_LIB      *= fcrypt.lib
162
163 #
164 # set this if you wish to use perl's malloc
165 # WARNING: Turning this on/off WILL break binary compatibility with extensions
166 # you may have compiled with/without it.  Be prepared to recompile all
167 # extensions if you change the default.  Currently, this cannot be enabled
168 # if you ask for USE_IMP_SYS above.
169 #
170 #PERL_MALLOC    *= define
171
172 #
173 # set this to enable debugging mstats
174 # This must be enabled to use the Devel::Peek::mstat() function.  This cannot
175 # be enabled without PERL_MALLOC as well.
176 #
177 #DEBUG_MSTATS   *= define
178
179 #
180 # set the install locations of the compiler include/libraries
181 # Running VCVARS32.BAT is *required* when using Visual C.
182 # Some versions of Visual C don't define MSVCDIR in the environment,
183 # so you may have to set CCHOME explicitly (spaces in the path name should
184 # not be quoted)
185 #
186 .IF "$(CCTYPE)" == "BORLAND"
187 CCHOME          *= C:\Borland\BCC55
188 .ELIF "$(CCTYPE)" == "GCC"
189 CCHOME          *= C:\MinGW
190 .ELSE
191 CCHOME          *= $(MSVCDIR)
192 .ENDIF
193 CCINCDIR        *= $(CCHOME)\include
194 CCLIBDIR        *= $(CCHOME)\lib
195
196 #
197 # Additional compiler flags can be specified here.
198 #
199 BUILDOPT        *= $(BUILDOPTEXTRA)
200
201 #
202 # Adding -DPERL_HASH_SEED_EXPLICIT will disable randomization of Perl's
203 # internal hash function unless the PERL_HASH_SEED environment variable is set.
204 # Alternatively, adding -DNO_HASH_SEED will completely disable the
205 # randomization feature. 
206 # The latter is required to maintain binary compatibility with Perl 5.8.0.
207 #
208 #BUILDOPT       += -DPERL_HASH_SEED_EXPLICIT
209 #BUILDOPT       += -DNO_HASH_SEED
210
211 #
212 # This should normally be disabled.  Adding -DPERL_POLLUTE enables support
213 # for old symbols by default, at the expense of extreme pollution.  You most
214 # probably just want to build modules that won't compile with
215 #         perl Makefile.PL POLLUTE=1
216 # instead of enabling this.  Please report such modules to the respective
217 # authors.
218 #
219 #BUILDOPT       += -DPERL_POLLUTE
220
221 #
222 # This should normally be disabled.  Enabling it will disable the File::Glob
223 # implementation of CORE::glob.
224 #
225 #BUILDOPT       += -DPERL_EXTERNAL_GLOB
226
227 #
228 # This should normally be disabled.  Enabling it causes perl to read scripts
229 # in text mode (which is the 5.005 behavior) and will break ByteLoader.
230 #
231 #BUILDOPT       += -DPERL_TEXTMODE_SCRIPTS
232
233 #
234 # specify semicolon-separated list of extra directories that modules will
235 # look for libraries (spaces in path names need not be quoted)
236 #
237 EXTRALIBDIRS    *=
238
239 #
240 # set this to point to cmd.exe (only needed if you use some
241 # alternate shell that doesn't grok cmd.exe style commands)
242 #
243 #SHELL          *= g:\winnt\system32\cmd.exe
244
245 #
246 # set this to your email address (perl will guess a value from
247 # from your loginname and your hostname, which may not be right)
248 #
249 #EMAIL          *=
250
251 ##
252 ## Build configuration ends.
253 ##
254
255 ##################### CHANGE THESE ONLY IF YOU MUST #####################
256
257 .IF "$(CRYPT_SRC)$(CRYPT_LIB)" == ""
258 D_CRYPT         = undef
259 .ELSE
260 D_CRYPT         = define
261 CRYPT_FLAG      = -DHAVE_DES_FCRYPT
262 .ENDIF
263
264 PERL_MALLOC     *= undef
265 DEBUG_MSTATS    *= undef
266
267 USE_SITECUST    *= undef
268 USE_MULTI       *= undef
269 USE_ITHREADS    *= undef
270 USE_IMP_SYS     *= undef
271 USE_PERLIO      *= undef
272 USE_LARGE_FILES *= undef
273 USE_PERLCRT     *= undef
274
275 .IF "$(USE_IMP_SYS)" == "define"
276 PERL_MALLOC     = undef
277 .ENDIF
278
279 .IF "$(PERL_MALLOC)" == "undef"
280 DEBUG_MSTATS    = undef
281 .ENDIF
282
283 .IF "$(DEBUG_MSTATS)" == "define"
284 BUILDOPT        += -DPERL_DEBUGGING_MSTATS
285 .ENDIF
286
287 .IF "$(USE_IMP_SYS) $(USE_MULTI)" == "define undef"
288 USE_MULTI       != define
289 .ENDIF
290
291 .IF "$(USE_ITHREADS) $(USE_MULTI)" == "define undef"
292 USE_MULTI       != define
293 .ENDIF
294
295 .IF "$(USE_SITECUST)" == "define"
296 BUILDOPT        += -DUSE_SITECUSTOMIZE
297 .ENDIF
298
299 .IF "$(USE_MULTI)" != "undef"
300 BUILDOPT        += -DPERL_IMPLICIT_CONTEXT
301 .ENDIF
302
303 .IF "$(USE_IMP_SYS)" != "undef"
304 BUILDOPT        += -DPERL_IMPLICIT_SYS
305 .ENDIF
306
307 .IMPORT .IGNORE : PROCESSOR_ARCHITECTURE PROCESSOR_ARCHITEW6432
308
309 PROCESSOR_ARCHITECTURE *= x86
310
311 .IF "$(WIN64)" == ""
312 # When we are running from a 32bit cmd.exe on AMD64 then
313 # PROCESSOR_ARCHITECTURE is set to x86 and PROCESSOR_ARCHITEW6432
314 # is set to AMD64
315 .IF "$(PROCESSOR_ARCHITEW6432)" != ""
316 PROCESSOR_ARCHITECTURE  != $(PROCESSOR_ARCHITEW6432)
317 WIN64                   = define
318 .ELIF "$(PROCESSOR_ARCHITECTURE)" == "AMD64" || "$(PROCESSOR_ARCHITECTURE)" == "IA64"
319 WIN64                   = define
320 .ELSE
321 WIN64                   = undef
322 .ENDIF
323 .ENDIF
324
325 ARCHITECTURE = $(PROCESSOR_ARCHITECTURE)
326 .IF "$(ARCHITECTURE)" == "AMD64"
327 ARCHITECTURE    = x64
328 .ENDIF
329 .IF "$(ARCHITECTURE)" == "IA64"
330 ARCHITECTURE    = ia64
331 .ENDIF
332
333 .IF "$(USE_MULTI)" == "define"
334 ARCHNAME        = MSWin32-$(ARCHITECTURE)-multi
335 .ELSE
336 .IF "$(USE_PERLIO)" == "define"
337 ARCHNAME        = MSWin32-$(ARCHITECTURE)-perlio
338 .ELSE
339 ARCHNAME        = MSWin32-$(ARCHITECTURE)
340 .ENDIF
341 .ENDIF
342
343 .IF "$(USE_ITHREADS)" == "define"
344 ARCHNAME        !:= $(ARCHNAME)-thread
345 .ENDIF
346
347 # Visual Studio 98 and .NET 2003 specific
348 # VC++ 6.x and 7.x can load DLL's on demand.  Makes the test suite run in
349 # about 10% less time.  (The free version of 7.x can't do this, however.)
350 .IF "$(CCTYPE)" == "MSVC60" || "$(CCTYPE)" == "MSVC70"
351 DELAYLOAD       *= -DELAYLOAD:ws2_32.dll -DELAYLOAD:shell32.dll delayimp.lib
352 .ENDIF
353
354 ARCHDIR         = ..\lib\$(ARCHNAME)
355 COREDIR         = ..\lib\CORE
356 AUTODIR         = ..\lib\auto
357 LIBDIR          = ..\lib
358 EXTDIR          = ..\ext
359 PODDIR          = ..\pod
360 EXTUTILSDIR     = $(LIBDIR)\ExtUtils
361 HTMLDIR         = .\html
362
363 #
364 INST_SCRIPT     = $(INST_TOP)$(INST_VER)\bin
365 INST_BIN        = $(INST_SCRIPT)$(INST_ARCH)
366 INST_LIB        = $(INST_TOP)$(INST_VER)\lib
367 INST_ARCHLIB    = $(INST_LIB)$(INST_ARCH)
368 INST_COREDIR    = $(INST_ARCHLIB)\CORE
369 INST_HTML       = $(INST_TOP)$(INST_VER)\html
370
371 #
372 # Programs to compile, build .lib files and link
373 #
374
375 .USESHELL :
376
377 .IF "$(CCTYPE)" == "BORLAND"
378
379 CC              = bcc32
380 .IF "$(BCCOLD)" != "define"
381 LINK32          = ilink32
382 .ELSE
383 LINK32          = tlink32
384 .ENDIF
385 LIB32           = tlib /P128
386 IMPLIB          = implib -c
387 RSC             = brcc32
388
389 #
390 # Options
391 #
392 INCLUDES        = -I$(COREDIR) -I.\include -I. -I.. -I"$(CCINCDIR)"
393 #PCHFLAGS       = -H -Hc -H=c:\temp\bcmoduls.pch
394 DEFINES         = -DWIN32 $(CRYPT_FLAG)
395 LOCDEFS         = -DPERLDLL -DPERL_CORE
396 SUBSYS          = console
397 CXX_FLAG        = -P
398
399 LIBC            = cw32mti.lib
400
401 # same libs as MSVC, except Borland doesn't have oldnames.lib
402 LIBFILES        = $(CRYPT_LIB) \
403                 kernel32.lib user32.lib gdi32.lib winspool.lib \
404                 comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \
405                 netapi32.lib uuid.lib ws2_32.lib mpr.lib winmm.lib \
406                 version.lib odbc32.lib odbccp32.lib \
407                 import32.lib $(LIBC)
408
409 .IF  "$(CFG)" == "Debug"
410 OPTIMIZE        = -v -D_RTLDLL -DDEBUGGING
411 LINK_DBG        = -v
412 .ELSE
413 OPTIMIZE        = -O2 -D_RTLDLL
414 LINK_DBG        =
415 .ENDIF
416
417 EXTRACFLAGS     =
418 CFLAGS          = -w -g0 -tWM -tWD $(INCLUDES) $(DEFINES) $(LOCDEFS) \
419                 $(PCHFLAGS) $(OPTIMIZE)
420 LINK_FLAGS      = $(LINK_DBG) -L"$(INST_COREDIR)" -L"$(CCLIBDIR)" \
421                 -L"$(CCLIBDIR)\PSDK"
422 OBJOUT_FLAG     = -o
423 EXEOUT_FLAG     = -e
424 LIBOUT_FLAG     =
425 .IF "$(BCCOLD)" != "define"
426 LINK_FLAGS      += -Gn
427 DEFINES  += -D_MT -D__USELOCALES__ -D_WIN32_WINNT=0x0410
428 .END
429 .IF "$(BCCVCL)" == "define"
430 LIBC            = cp32mti.lib vcl.lib vcl50.lib vclx50.lib vcle50.lib
431 LINK_FLAGS      += -L"$(CCLIBDIR)\Release"
432 .END
433
434
435 .ELIF "$(CCTYPE)" == "GCC"
436
437 CC              = gcc
438 LINK32          = g++
439 LIB32           = ar rc
440 IMPLIB          = dlltool
441 RSC             = windres
442
443 i = .i
444 o = .o
445 a = .a
446
447 #
448 # Options
449 #
450
451 INCLUDES        = -I.\include -I. -I.. -I$(COREDIR)
452 DEFINES         = -DWIN32 $(CRYPT_FLAG)
453 LOCDEFS         = -DPERLDLL -DPERL_CORE
454 SUBSYS          = console
455 CXX_FLAG        = -xc++
456
457 LIBC            = -lmsvcrt
458
459 # same libs as MSVC
460 LIBFILES        = $(CRYPT_LIB) $(LIBC) \
461                   -lmoldname -lkernel32 -luser32 -lgdi32 \
462                   -lwinspool -lcomdlg32 -ladvapi32 -lshell32 -lole32 \
463                   -loleaut32 -lnetapi32 -luuid -lws2_32 -lmpr \
464                   -lwinmm -lversion -lodbc32 -lodbccp32
465
466 .IF  "$(CFG)" == "Debug"
467 OPTIMIZE        = -g -O2 -DDEBUGGING
468 LINK_DBG        = -g
469 .ELSE
470 OPTIMIZE        = -s -O2
471 LINK_DBG        = -s
472 .ENDIF
473
474 EXTRACFLAGS     =
475 CFLAGS          = $(INCLUDES) $(DEFINES) $(LOCDEFS) $(OPTIMIZE)
476 LINK_FLAGS      = $(LINK_DBG) -L"$(INST_COREDIR)" -L"$(CCLIBDIR)"
477 OBJOUT_FLAG     = -o
478 EXEOUT_FLAG     = -o
479 LIBOUT_FLAG     =
480
481 # NOTE: we assume that GCC uses MSVCRT.DLL
482 BUILDOPT        += -fno-strict-aliasing -DPERL_MSVCRT_READFIX
483
484 .ELSE
485
486 CC              = cl
487 LINK32          = link
488 LIB32           = $(LINK32) -lib
489 RSC             = rc
490
491 #
492 # Options
493 #
494
495 INCLUDES        = -I$(COREDIR) -I.\include -I. -I..
496 #PCHFLAGS       = -Fpc:\temp\vcmoduls.pch -YX
497 DEFINES         = -DWIN32 -D_CONSOLE -DNO_STRICT $(CRYPT_FLAG)
498 LOCDEFS         = -DPERLDLL -DPERL_CORE
499 SUBSYS          = console
500 CXX_FLAG        = -TP -GX
501
502 .IF "$(USE_PERLCRT)" != "define"
503 LIBC    = msvcrt.lib
504 .ELSE
505 LIBC    = PerlCRT.lib
506 .ENDIF
507
508 .IF  "$(CFG)" == "Debug"
509 .IF "$(CCTYPE)" == "MSVC20"
510 OPTIMIZE        = -Od -MD -Z7 -DDEBUGGING
511 .ELSE
512 OPTIMIZE        = -O1 -MD -Zi -DDEBUGGING
513 .ENDIF
514 LINK_DBG        = -debug
515 .ELSE
516 OPTIMIZE        = -MD -Zi -DNDEBUG
517 # we enable debug symbols in release builds also
518 LINK_DBG        = -debug -opt:ref,icf
519 # you may want to enable this if you want COFF symbols in the executables
520 # in addition to the PDB symbols.  The default Dr. Watson that ships with
521 # Windows can use the the former but not latter.  The free WinDbg can be
522 # installed to get better stack traces from just the PDB symbols, so we
523 # avoid the bloat of COFF symbols by default.
524 #LINK_DBG       = $(LINK_DBG) -debugtype:both
525 .IF "$(WIN64)" == "define"
526 # enable Whole Program Optimizations (WPO) and Link Time Code Generation (LTCG)
527 OPTIMIZE        += -Ox -GL
528 LINK_DBG        += -ltcg
529 .ELSE
530 # -O1 yields smaller code, which turns out to be faster than -O2 on x86
531 OPTIMIZE        += -O1
532 #OPTIMIZE       += -O2
533 .ENDIF
534 .ENDIF
535
536 .IF "$(WIN64)" == "define"
537 DEFINES         += -DWIN64 -DCONSERVATIVE
538 OPTIMIZE        += -Wp64 -fp:precise
539 .ENDIF
540
541 .IF "$(USE_PERLCRT)" != "define"
542 BUILDOPT        += -DPERL_MSVCRT_READFIX
543 .ENDIF
544
545 LIBBASEFILES    = $(CRYPT_LIB) \
546                 oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.lib \
547                 comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \
548                 netapi32.lib uuid.lib ws2_32.lib mpr.lib winmm.lib \
549                 version.lib odbc32.lib odbccp32.lib
550
551 # The 64 bit Platform SDK compilers contain a runtime library that doesn't
552 # include the buffer overrun verification code used by the /GS switch.
553 # Since the code links against libraries that are compiled with /GS, this
554 # "security cookie verification" must be included via bufferoverlow.lib.
555 .IF "$(WIN64)" == "define"
556 LIBBASEFILES    = $(LIBBASEFILES) bufferoverflowU.lib
557 .ENDIF
558
559 # we add LIBC here, since we may be using PerlCRT.dll
560 LIBFILES        = $(LIBBASEFILES) $(LIBC)
561
562 EXTRACFLAGS     = -nologo -GF -W3
563 CFLAGS          = $(EXTRACFLAGS) $(INCLUDES) $(DEFINES) $(LOCDEFS) \
564                 $(PCHFLAGS) $(OPTIMIZE)
565 LINK_FLAGS      = -nologo -nodefaultlib $(LINK_DBG) \
566                 -libpath:"$(INST_COREDIR)" \
567                 -machine:$(PROCESSOR_ARCHITECTURE)
568 OBJOUT_FLAG     = -Fo
569 EXEOUT_FLAG     = -Fe
570 LIBOUT_FLAG     = /out:
571
572 .ENDIF
573
574 CFLAGS_O        = $(CFLAGS) $(BUILDOPT)
575
576 # used to allow local linking flags that are not propogated into Config.pm,
577 # currently unused
578 #   -- BKS, 12-12-1999
579 PRIV_LINK_FLAGS *=
580 BLINK_FLAGS     = $(PRIV_LINK_FLAGS) $(LINK_FLAGS)
581
582 #################### do not edit below this line #######################
583 ############# NO USER-SERVICEABLE PARTS BEYOND THIS POINT ##############
584
585 # Some dmake's built with Borland C++, including Sarathy's one at:
586 # http://search.cpan.org/CPAN/authors/id/G/GS/GSAR/dmake-4.1pl1-win32.zip
587 # require backslashes to be doubled-up when written to $(mktmp) files.
588 # Other dmake's do not require this and would actually output a double
589 # backslash if they were doubled-up.
590 .IF "$(shell @type $(mktmp \\))"=="\\"
591 B=\\
592 .ELSE
593 B=\\\
594 .ENDIF
595
596 # There is a related issue with other escape sequences: Sarathy's old
597 # dmake automatically maps escape sequences like \n to their ASCII values
598 # when used in macros, while other dmake's only do so if this behaviour
599 # is explicitly requested with the :m modifier.
600 DONTUSETHIS=\n
601 .IF "$(shell @type $(mktmp \n))"=="\n"
602 N=$(DONTUSETHIS:m)
603 .ELSE
604 N=$(DONTUSETHIS)
605 .ENDIF
606
607 o *= .obj
608 a *= .lib
609
610 LKPRE           = INPUT (
611 LKPOST          = )
612
613 #
614 # Rules
615 #
616
617 .SUFFIXES : .c .i $(o) .dll $(a) .exe .rc .res
618
619 .c$(o):
620         $(CC) -c $(null,$(<:d) $(NULL) -I$(<:d)) $(CFLAGS_O) $(OBJOUT_FLAG)$@ $<
621
622 .c.i:
623         $(CC) -c $(null,$(<:d) $(NULL) -I$(<:d)) $(CFLAGS_O) -E $< >$@
624
625 .y.c:
626         $(NOOP)
627
628 $(o).dll:
629 .IF "$(CCTYPE)" == "BORLAND"
630         $(LINK32) -Tpd -ap $(BLINK_FLAGS) c0d32$(o) $<,$@,,$(LIBFILES),$(*B).def
631         $(IMPLIB) $(*B).lib $@
632 .ELIF "$(CCTYPE)" == "GCC"
633         $(LINK32) -o $@ $(BLINK_FLAGS) $< $(LIBFILES)
634         $(IMPLIB) --input-def $(*B).def --output-lib $(*B).a $@
635 .ELSE
636         $(LINK32) -dll -subsystem:windows -implib:$(*B).lib -def:$(*B).def \
637             -out:$@ $(BLINK_FLAGS) $(LIBFILES) $< $(LIBPERL)
638 .ENDIF
639
640 .rc.res:
641 .IF "$(CCTYPE)" == "GCC"
642         $(RSC) --use-temp-file -i $< -o $@
643 .ELSE
644         $(RSC) -i.. $<
645 .ENDIF
646
647 #
648 # various targets
649 MINIPERL        = ..\miniperl.exe
650 MINIDIR         = .\mini
651 PERLEXE         = ..\perl.exe
652 WPERLEXE        = ..\wperl.exe
653 GLOBEXE         = ..\perlglob.exe
654 CONFIGPM        = ..\lib\Config.pm ..\lib\Config_heavy.pl
655 MINIMOD         = ..\lib\ExtUtils\Miniperl.pm
656 X2P             = ..\x2p\a2p.exe
657
658 # Unicode data files generated by mktables
659 UNIDATAFILES     = ..\lib\unicore\Canonical.pl ..\lib\unicore\Exact.pl \
660                    ..\lib\unicore\Properties ..\lib\unicore\Decomposition.pl \
661                    ..\lib\unicore\CombiningClass.pl ..\lib\unicore\Name.pl \
662                    ..\lib\unicore\PVA.pl
663
664 # Directories of Unicode data files generated by mktables
665 UNIDATADIR1     = ..\lib\unicore\To
666 UNIDATADIR2     = ..\lib\unicore\lib
667
668 PERLEXE_ICO     = .\perlexe.ico
669 PERLEXE_RES     = .\perlexe.res
670 PERLDLL_RES     =
671
672 # Nominate a target which causes extensions to be re-built
673 # This used to be $(PERLEXE), but at worst it is the .dll that they depend
674 # on and really only the interface - i.e. the .def file used to export symbols
675 # from the .dll
676 PERLDEP = perldll.def
677
678
679 PL2BAT          = bin\pl2bat.pl
680 GLOBBAT         = bin\perlglob.bat
681
682 UTILS           =                       \
683                 ..\utils\h2ph           \
684                 ..\utils\splain         \
685                 ..\utils\dprofpp        \
686                 ..\utils\perlbug        \
687                 ..\utils\pl2pm          \
688                 ..\utils\c2ph           \
689                 ..\utils\pstruct        \
690                 ..\utils\h2xs           \
691                 ..\utils\perldoc        \
692                 ..\utils\perlcc         \
693                 ..\utils\perlivp        \
694                 ..\utils\libnetcfg      \
695                 ..\utils\enc2xs         \
696                 ..\utils\piconv         \
697                 ..\utils\config_data    \
698                 ..\utils\corelist       \
699                 ..\utils\cpan           \
700                 ..\utils\xsubpp         \
701                 ..\utils\prove          \
702                 ..\utils\ptar           \
703                 ..\utils\ptardiff       \
704                 ..\utils\shasum         \
705                 ..\utils\instmodsh      \
706                 ..\pod\checkpods        \
707                 ..\pod\pod2html         \
708                 ..\pod\pod2latex        \
709                 ..\pod\pod2man          \
710                 ..\pod\pod2text         \
711                 ..\pod\pod2usage        \
712                 ..\pod\podchecker       \
713                 ..\pod\podselect        \
714                 ..\x2p\find2perl        \
715                 ..\x2p\psed             \
716                 ..\x2p\s2p              \
717                 bin\exetype.pl          \
718                 bin\runperl.pl          \
719                 bin\pl2bat.pl           \
720                 bin\perlglob.pl         \
721                 bin\search.pl
722
723 .IF "$(CCTYPE)" == "BORLAND"
724
725 CFGSH_TMPL      = config.bc
726 CFGH_TMPL       = config_H.bc
727
728 .ELIF "$(CCTYPE)" == "GCC"
729
730 CFGSH_TMPL      = config.gc
731 CFGH_TMPL       = config_H.gc
732 PERLIMPLIB      = ..\libperl59$(a)
733
734 .ELSE
735
736 .IF "$(WIN64)" == "define"
737 CFGSH_TMPL      = config.vc64
738 CFGH_TMPL       = config_H.vc64
739 .ELSE
740 CFGSH_TMPL      = config.vc
741 CFGH_TMPL       = config_H.vc
742 .ENDIF
743
744 .ENDIF
745
746 # makedef.pl must be updated if this changes, and this should normally
747 # only change when there is an incompatible revision of the public API.
748 PERLIMPLIB      *= ..\perl59$(a)
749 PERLDLL         = ..\perl59.dll
750
751 XCOPY           = xcopy /f /r /i /d /y
752 RCOPY           = xcopy /f /r /i /e /d /y
753 NOOP            = @rem
754
755 #
756 # filenames given to xsubpp must have forward slashes (since it puts
757 # full pathnames in #line strings)
758 XSUBPP          = ..\$(MINIPERL) -I..\..\lib ..\$(EXTUTILSDIR)\xsubpp \
759                 -C++ -prototypes
760
761 MICROCORE_SRC   =               \
762                 ..\av.c         \
763                 ..\deb.c        \
764                 ..\doio.c       \
765                 ..\doop.c       \
766                 ..\dump.c       \
767                 ..\globals.c    \
768                 ..\gv.c         \
769                 ..\hv.c         \
770                 ..\locale.c     \
771                 ..\mathoms.c    \
772                 ..\mg.c         \
773                 ..\numeric.c    \
774                 ..\op.c         \
775                 ..\pad.c        \
776                 ..\perl.c       \
777                 ..\perlapi.c    \
778                 ..\perly.c      \
779                 ..\pp.c         \
780                 ..\pp_ctl.c     \
781                 ..\pp_hot.c     \
782                 ..\pp_pack.c    \
783                 ..\pp_sort.c    \
784                 ..\pp_sys.c     \
785                 ..\reentr.c     \
786                 ..\regcomp.c    \
787                 ..\regexec.c    \
788                 ..\run.c        \
789                 ..\scope.c      \
790                 ..\sv.c         \
791                 ..\taint.c      \
792                 ..\toke.c       \
793                 ..\universal.c  \
794                 ..\utf8.c       \
795                 ..\util.c       \
796                 ..\xsutils.c
797
798 EXTRACORE_SRC   += perllib.c
799
800 .IF "$(PERL_MALLOC)" == "define"
801 EXTRACORE_SRC   += ..\malloc.c
802 .ENDIF
803
804 EXTRACORE_SRC   += ..\perlio.c
805
806 WIN32_SRC       =               \
807                 .\win32.c       \
808                 .\win32sck.c    \
809                 .\win32thread.c
810
811 # We need this for miniperl build unless we override canned 
812 # config.h #define building mini\*
813 #.IF "$(USE_PERLIO)" == "define"
814 WIN32_SRC       += .\win32io.c
815 #.ENDIF
816
817 .IF "$(CRYPT_SRC)" != ""
818 WIN32_SRC       += .\$(CRYPT_SRC)
819 .ENDIF
820
821 DLL_SRC         = $(DYNALOADER).c
822
823 X2P_SRC         =               \
824                 ..\x2p\a2p.c    \
825                 ..\x2p\hash.c   \
826                 ..\x2p\str.c    \
827                 ..\x2p\util.c   \
828                 ..\x2p\walk.c
829
830 CORE_NOCFG_H    =               \
831                 ..\av.h         \
832                 ..\cop.h        \
833                 ..\cv.h         \
834                 ..\dosish.h     \
835                 ..\embed.h      \
836                 ..\form.h       \
837                 ..\gv.h         \
838                 ..\handy.h      \
839                 ..\hv.h         \
840                 ..\iperlsys.h   \
841                 ..\mg.h         \
842                 ..\nostdio.h    \
843                 ..\op.h         \
844                 ..\opcode.h     \
845                 ..\perl.h       \
846                 ..\perlapi.h    \
847                 ..\perlsdio.h   \
848                 ..\perlsfio.h   \
849                 ..\perly.h      \
850                 ..\pp.h         \
851                 ..\proto.h      \
852                 ..\regcomp.h    \
853                 ..\regexp.h     \
854                 ..\scope.h      \
855                 ..\sv.h         \
856                 ..\thread.h     \
857                 ..\unixish.h    \
858                 ..\utf8.h       \
859                 ..\util.h       \
860                 ..\warnings.h   \
861                 ..\XSUB.h       \
862                 ..\EXTERN.h     \
863                 ..\perlvars.h   \
864                 ..\intrpvar.h   \
865                 ..\thrdvar.h    \
866                 .\include\dirent.h      \
867                 .\include\netdb.h       \
868                 .\include\sys\socket.h  \
869                 .\win32.h
870
871 CORE_H          = $(CORE_NOCFG_H) .\config.h
872
873 MICROCORE_OBJ   = $(MICROCORE_SRC:db:+$(o))
874 CORE_OBJ        = $(MICROCORE_OBJ) $(EXTRACORE_SRC:db:+$(o))
875 WIN32_OBJ       = $(WIN32_SRC:db:+$(o))
876 MINICORE_OBJ    = $(MINIDIR)\{$(MICROCORE_OBJ:f) miniperlmain$(o) perlio$(o)}
877 MINIWIN32_OBJ   = $(MINIDIR)\{$(WIN32_OBJ:f)}
878 MINI_OBJ        = $(MINICORE_OBJ) $(MINIWIN32_OBJ)
879 DLL_OBJ         = $(DLL_SRC:db:+$(o))
880 X2P_OBJ         = $(X2P_SRC:db:+$(o))
881
882 PERLDLL_OBJ     = $(CORE_OBJ)
883 PERLEXE_OBJ     = perlmain$(o)
884
885 PERLDLL_OBJ     += $(WIN32_OBJ) $(DLL_OBJ)
886
887 .IF "$(USE_SETARGV)" != ""
888 SETARGV_OBJ     = setargv$(o)
889 .ENDIF
890
891 DYNAMIC_EXT     = Socket IO Fcntl Opcode SDBM_File POSIX attrs Thread B re \
892                 Data/Dumper Devel/Peek ByteLoader Devel/DProf File/Glob \
893                 Sys/Hostname Storable Filter/Util/Call Encode \
894                 Digest/MD5 Digest/SHA PerlIO/scalar MIME/Base64 Time/HiRes \
895                 Unicode/Normalize Math/BigInt/FastCalc Compress/Zlib Win32
896 STATIC_EXT      = 
897 NONXS_EXT       = Errno
898
899 DYNALOADER      = $(EXTDIR)\DynaLoader\DynaLoader
900
901 # vars must be separated by "\t+~\t+", since we're using the tempfile
902 # version of config_sh.pl (we were overflowing someone's buffer by
903 # trying to fit them all on the command line)
904 #       -- BKS 10-17-1999
905 CFG_VARS        =                                       \
906                 INST_DRV=$(INST_DRV)            ~       \
907                 INST_TOP=$(INST_TOP:s,\,$B,)    ~       \
908                 INST_VER=$(INST_VER:s,\,$B,)    ~       \
909                 INST_ARCH=$(INST_ARCH)          ~       \
910                 archname=$(ARCHNAME)            ~       \
911                 cc=$(CC)                        ~       \
912                 ld=$(LINK32)                    ~       \
913                 ccflags=$(EXTRACFLAGS) $(OPTIMIZE) $(DEFINES) $(BUILDOPT)       ~       \
914                 cf_email=$(EMAIL)               ~       \
915                 d_crypt=$(D_CRYPT)              ~       \
916                 d_mymalloc=$(PERL_MALLOC)       ~       \
917                 libs=$(LIBFILES:f)              ~       \
918                 incpath=$(CCINCDIR:s,\,$B,)     ~       \
919                 libperl=$(PERLIMPLIB:f)         ~       \
920                 libpth=$(CCLIBDIR:s,\,$B,);$(EXTRALIBDIRS:s,\,$B,)      ~       \
921                 libc=$(LIBC)                    ~       \
922                 make=dmake                      ~       \
923                 _o=$(o)                         ~       \
924                 obj_ext=$(o)                    ~       \
925                 _a=$(a)                         ~       \
926                 lib_ext=$(a)                    ~       \
927                 static_ext=$(STATIC_EXT)        ~       \
928                 usethreads=$(USE_ITHREADS)      ~       \
929                 useithreads=$(USE_ITHREADS)     ~       \
930                 usemultiplicity=$(USE_MULTI)    ~       \
931                 useperlio=$(USE_PERLIO)         ~       \
932                 uselargefiles=$(USE_LARGE_FILES)        ~       \
933                 usesitecustomize=$(USE_SITECUST)        ~       \
934                 LINK_FLAGS=$(LINK_FLAGS:s,\,$B,)        ~       \
935                 optimize=$(OPTIMIZE)
936
937 #
938 # set up targets varying between Win95 and WinNT builds
939 #
940
941 .IF "$(IS_WIN95)" == "define"
942 MK2             = .\makefile.95
943 RIGHTMAKE       = __switch_makefiles
944 .ELSE
945 MK2             = __not_needed
946 RIGHTMAKE       =
947 .ENDIF
948
949 .IMPORT .IGNORE : SystemRoot windir
950
951 # Don't just .IMPORT OS from the environment because dmake sets OS itself.
952 ENV_OS=$(subst,OS=, $(shell @set OS))
953
954 .IF "$(ENV_OS)" == "Windows_NT"
955 ODBCCP32_DLL = $(SystemRoot)\system32\odbccp32.dll
956 .ELSE
957 ODBCCP32_DLL = $(windir)\system\odbccp32.dll
958 .ENDIF
959
960 #
961 # Top targets
962 #
963
964 all : .\config.h $(GLOBEXE) $(MINIPERL) $(MK2)          \
965         $(RIGHTMAKE) $(MINIMOD) $(CONFIGPM) $(UNIDATAFILES) $(PERLEXE)  \
966         $(X2P) Extensions
967
968 $(DYNALOADER)$(o) : $(DYNALOADER).c $(CORE_H) $(EXTDIR)\DynaLoader\dlutils.c
969
970 #----------------------------------------------------------------
971
972 #-------------------- BEGIN Win95 SPECIFIC ----------------------
973
974 # this target is a jump-off point for Win95
975 #  1. it switches to the Win95-specific makefile if it exists
976 #     (__do_switch_makefiles)
977 #  2. it prints a message when the Win95-specific one finishes (__done)
978 #  3. it then kills this makefile by trying to make __no_such_target
979
980 __switch_makefiles: __do_switch_makefiles __done __no_such_target
981
982 __do_switch_makefiles:
983 .IF "$(NOTFIRST)" != "true"
984         if exist $(MK2) $(MAKE:s/-S//) -f $(MK2) $(MAKETARGETS) NOTFIRST=true
985 .ELSE
986         $(NOOP)
987 .ENDIF
988
989 .IF "$(NOTFIRST)" != "true"
990 __done:
991         @echo Build process complete. Ignore any errors after this message.
992         @echo Run "dmake test" to test and "dmake install" to install
993
994 .ELSE
995 # dummy targets for Win95-specific makefile
996
997 __done:
998         $(NOOP)
999
1000 __no_such_target:
1001         $(NOOP)
1002
1003 .ENDIF
1004
1005 # This target is used to generate the new makefile (.\makefile.95) for Win95
1006
1007 .\makefile.95: .\makefile.mk
1008         $(MINIPERL) genmk95.pl makefile.mk $(MK2)
1009
1010 #--------------------- END Win95 SPECIFIC ---------------------
1011
1012 # a blank target for when builds don't need to do certain things
1013 # this target added for Win95 port but used to keep the WinNT port able to
1014 # use this file
1015 __not_needed:
1016         $(NOOP)
1017
1018 $(GLOBEXE) : perlglob$(o)
1019 .IF "$(CCTYPE)" == "BORLAND"
1020         $(CC) -c -w -v -tWM -I"$(CCINCDIR)" perlglob.c
1021         $(LINK32) -Tpe -ap $(BLINK_FLAGS) c0x32$(o) perlglob$(o) \
1022             "$(CCLIBDIR)\32BIT\wildargs$(o)",$@,,import32.lib cw32mt.lib,
1023 .ELIF "$(CCTYPE)" == "GCC"
1024         $(LINK32) $(BLINK_FLAGS) -mconsole -o $@ perlglob$(o) $(LIBFILES)
1025 .ELSE
1026         $(LINK32) $(BLINK_FLAGS) $(LIBFILES) -out:$@ -subsystem:$(SUBSYS) \
1027             perlglob$(o) setargv$(o)
1028 .ENDIF
1029
1030 perlglob$(o)  : perlglob.c
1031
1032 config.w32 : $(CFGSH_TMPL)
1033         copy $(CFGSH_TMPL) config.w32
1034
1035 .\config.h : $(CFGH_TMPL) $(CORE_NOCFG_H)
1036         -del /f config.h
1037         copy $(CFGH_TMPL) config.h
1038
1039 ..\config.sh : config.w32 $(MINIPERL) config_sh.PL FindExt.pm
1040         $(MINIPERL) -I..\lib config_sh.PL --cfgsh-option-file \
1041             $(mktmp $(CFG_VARS)) config.w32 > ..\config.sh
1042
1043 # this target is for when changes to the main config.sh happen
1044 # edit config.{b,v,g}c and make this target once for each supported
1045 # compiler (e.g. `dmake CCTYPE=BORLAND regen_config_h`)
1046 regen_config_h:
1047         perl config_sh.PL --cfgsh-option-file $(mktmp $(CFG_VARS)) \
1048             $(CFGSH_TMPL) > ..\config.sh
1049         -cd .. && del /f perl.exe
1050         -cd .. && del /f perl*.dll
1051         cd .. && perl configpm
1052         -del /f $(CFGH_TMPL)
1053         -mkdir $(COREDIR)
1054         -perl config_h.PL "INST_VER=$(INST_VER)"
1055         rename config.h $(CFGH_TMPL)
1056
1057 $(CONFIGPM) : $(MINIPERL) ..\config.sh config_h.PL ..\minimod.pl
1058         cd .. && miniperl configpm
1059         if exist lib\* $(RCOPY) lib\*.* ..\lib\$(NULL)
1060         $(XCOPY) ..\*.h $(COREDIR)\*.*
1061         $(XCOPY) *.h $(COREDIR)\*.*
1062         $(XCOPY) ..\ext\re\re.pm $(LIBDIR)\*.*
1063         $(RCOPY) include $(COREDIR)\*.*
1064         $(MINIPERL) -I..\lib config_h.PL "INST_VER=$(INST_VER)" \
1065             || $(MAKE) $(MAKEMACROS) $(CONFIGPM) $(MAKEFILE)
1066
1067 $(MINIPERL) : $(MINIDIR) $(MINI_OBJ) $(CRTIPMLIBS)
1068 .IF "$(CCTYPE)" == "BORLAND"
1069         if not exist $(CCLIBDIR)\PSDK\odbccp32.lib \
1070             cd $(CCLIBDIR)\PSDK && implib odbccp32.lib $(ODBCCP32_DLL)
1071         $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
1072             @$(mktmp c0x32$(o) $(MINI_OBJ:s,\,$B,),$(@:s,\,$B,),,$(LIBFILES),)
1073 .ELIF "$(CCTYPE)" == "GCC"
1074         $(LINK32) -v -mconsole -o $@ $(BLINK_FLAGS) \
1075             $(mktmp $(LKPRE) $(MINI_OBJ:s,\,$B,) $(LIBFILES) $(LKPOST))
1076 .ELSE
1077         $(LINK32) -subsystem:console -out:$@ \
1078             @$(mktmp $(BLINK_FLAGS) $(LIBFILES) $(MINI_OBJ:s,\,$B,))
1079 .ENDIF
1080
1081 $(MINIDIR) :
1082         if not exist "$(MINIDIR)" mkdir "$(MINIDIR)"
1083
1084 $(MINICORE_OBJ) : $(CORE_NOCFG_H)
1085         $(CC) -c $(CFLAGS) -DPERL_EXTERNAL_GLOB $(OBJOUT_FLAG)$@ ..\$(*B).c
1086
1087 $(MINIWIN32_OBJ) : $(CORE_NOCFG_H)
1088         $(CC) -c $(CFLAGS) $(OBJOUT_FLAG)$@ $(*B).c
1089
1090 # -DPERL_IMPLICIT_SYS needs C++ for perllib.c
1091 # rules wrapped in .IFs break Win9X build (we end up with unbalanced []s unless
1092 # unless the .IF is true), so instead we use a .ELSE with the default.
1093 # This is the only file that depends on perlhost.h, vmem.h, and vdir.h
1094
1095 perllib$(o)     : perllib.c .\perlhost.h .\vdir.h .\vmem.h
1096 .IF "$(USE_IMP_SYS)" == "define"
1097         $(CC) -c -I. $(CFLAGS_O) $(CXX_FLAG) $(OBJOUT_FLAG)$@ perllib.c
1098 .ELSE
1099         $(CC) -c -I. $(CFLAGS_O) $(OBJOUT_FLAG)$@ perllib.c
1100 .ENDIF
1101
1102 # 1. we don't want to rebuild miniperl.exe when config.h changes
1103 # 2. we don't want to rebuild miniperl.exe with non-default config.h
1104 $(MINI_OBJ)     : $(CORE_NOCFG_H)
1105
1106 $(WIN32_OBJ)    : $(CORE_H)
1107
1108 $(CORE_OBJ)     : $(CORE_H)
1109
1110 $(DLL_OBJ)      : $(CORE_H)
1111
1112 $(X2P_OBJ)      : $(CORE_H)
1113
1114 perldll.def : $(MINIPERL) $(CONFIGPM) ..\global.sym ..\pp.sym ..\makedef.pl
1115         $(MINIPERL) -I..\lib buildext.pl --create-perllibst-h
1116         $(MINIPERL) -w ..\makedef.pl PLATFORM=win32 $(OPTIMIZE) $(DEFINES) \
1117         $(BUILDOPT) CCTYPE=$(CCTYPE) > perldll.def
1118
1119 $(PERLDLL): perldll.def $(PERLDLL_OBJ) $(PERLDLL_RES) Extensions_static
1120 .IF "$(CCTYPE)" == "BORLAND"
1121         $(LINK32) -Tpd -ap $(BLINK_FLAGS) \
1122             @$(mktmp c0d32$(o) $(PERLDLL_OBJ:s,\,$B,)$N \
1123                 $@,$N \
1124                 $(subst,\,$B $(shell @type Extensions_static)) $(LIBFILES)$N \
1125                 perldll.def$N)
1126         $(IMPLIB) $*.lib $@
1127 .ELIF "$(CCTYPE)" == "GCC"
1128         $(LINK32) -mdll -o $@ -Wl,--base-file -Wl,perl.base $(BLINK_FLAGS) \
1129             $(mktmp $(LKPRE) $(PERLDLL_OBJ:s,\,$B,) \
1130                 $(subst,\,$B $(shell @type Extensions_static)) \
1131                 $(LIBFILES) $(LKPOST))
1132         dlltool --output-lib $(PERLIMPLIB) \
1133                 --dllname $(PERLDLL:b).dll \
1134                 --def perldll.def \
1135                 --base-file perl.base \
1136                 --output-exp perl.exp
1137         $(LINK32) -mdll -o $@ $(BLINK_FLAGS) \
1138             $(mktmp $(LKPRE) $(PERLDLL_OBJ:s,\,$B,) \
1139                 $(subst,\,$B $(shell @type Extensions_static)) \
1140                 $(LIBFILES) perl.exp $(LKPOST))
1141 .ELSE
1142         $(LINK32) -dll -def:perldll.def -out:$@ \
1143             @Extensions_static \
1144             @$(mktmp -base:0x28000000 $(BLINK_FLAGS) $(DELAYLOAD) $(LIBFILES) \
1145                 $(PERLDLL_RES) $(PERLDLL_OBJ:s,\,$B,))
1146 .ENDIF
1147         $(XCOPY) $(PERLIMPLIB) $(COREDIR)
1148
1149
1150 $(PERLEXE_ICO): $(MINIPERL) makeico.pl
1151         $(MINIPERL) makeico.pl > $@
1152
1153 $(PERLEXE_RES): perlexe.rc $(PERLEXE_ICO)
1154
1155 $(MINIMOD) : $(MINIPERL) ..\minimod.pl
1156         cd .. && miniperl minimod.pl > lib\ExtUtils\Miniperl.pm
1157
1158 ..\x2p\a2p$(o) : ..\x2p\a2p.c
1159         $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\a2p.c
1160
1161 ..\x2p\hash$(o) : ..\x2p\hash.c
1162         $(CC) -I..\x2p  $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\hash.c
1163
1164 ..\x2p\str$(o) : ..\x2p\str.c
1165         $(CC) -I..\x2p  $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\str.c
1166
1167 ..\x2p\util$(o) : ..\x2p\util.c
1168         $(CC) -I..\x2p  $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\util.c
1169
1170 ..\x2p\walk$(o) : ..\x2p\walk.c
1171         $(CC) -I..\x2p  $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\walk.c
1172
1173 $(X2P) : $(MINIPERL) $(X2P_OBJ)
1174         $(MINIPERL) ..\x2p\find2perl.PL
1175         $(MINIPERL) ..\x2p\s2p.PL
1176 .IF "$(CCTYPE)" == "BORLAND"
1177         $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
1178             @$(mktmp c0x32$(o) $(X2P_OBJ:s,\,$B,),$(@:s,\,$B,),,$(LIBFILES),)
1179 .ELIF "$(CCTYPE)" == "GCC"
1180         $(LINK32) -v -o $@ $(BLINK_FLAGS) \
1181             $(mktmp $(LKPRE) $(X2P_OBJ:s,\,$B,) $(LIBFILES) $(LKPOST))
1182 .ELSE
1183         $(LINK32) -subsystem:console -out:$@ \
1184             @$(mktmp $(BLINK_FLAGS) $(LIBFILES) $(X2P_OBJ:s,\,$B,))
1185 .ENDIF
1186
1187 perlmain.c : runperl.c
1188         copy runperl.c perlmain.c
1189
1190 perlmain$(o) : perlmain.c
1191         $(CC) $(CFLAGS_O) -UPERLDLL $(OBJOUT_FLAG)$@ -c perlmain.c
1192
1193 $(PERLEXE): $(PERLDLL) $(CONFIGPM) $(PERLEXE_OBJ) $(PERLEXE_RES)
1194 .IF "$(CCTYPE)" == "BORLAND"
1195         $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
1196             @$(mktmp c0x32$(o) $(PERLEXE_OBJ:s,\,$B,)$N \
1197             $(@:s,\,$B,),$N \
1198             $(PERLIMPLIB) $(LIBFILES)$N)
1199 .ELIF "$(CCTYPE)" == "GCC"
1200         $(LINK32) -mconsole -o $@ $(BLINK_FLAGS)  \
1201             $(PERLEXE_OBJ) $(PERLIMPLIB) $(LIBFILES)
1202 .ELSE
1203         $(LINK32) -subsystem:console -out:$@ -stack:0x1000000 $(BLINK_FLAGS) \
1204             $(LIBFILES) $(PERLEXE_OBJ) $(SETARGV_OBJ) $(PERLIMPLIB) $(PERLEXE_RES)
1205 .ENDIF
1206         copy $(PERLEXE) $(WPERLEXE)
1207         $(MINIPERL) -I..\lib bin\exetype.pl $(WPERLEXE) WINDOWS
1208         copy splittree.pl ..
1209         $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR)
1210
1211 $(DYNALOADER).c: $(MINIPERL) $(EXTDIR)\DynaLoader\dl_win32.xs $(CONFIGPM)
1212         if not exist $(AUTODIR) mkdir $(AUTODIR)
1213         cd $(EXTDIR)\$(*B) && ..\$(MINIPERL) -I..\..\lib $(*B)_pm.PL
1214         cd $(EXTDIR)\$(*B) && ..\$(MINIPERL) -I..\..\lib XSLoader_pm.PL
1215         $(XCOPY) $(EXTDIR)\$(*B)\$(*B).pm $(LIBDIR)\$(NULL)
1216         $(XCOPY) $(EXTDIR)\$(*B)\XSLoader.pm $(LIBDIR)\$(NULL)
1217         cd $(EXTDIR)\$(*B) && $(XSUBPP) dl_win32.xs > $(*B).c
1218         $(XCOPY) $(EXTDIR)\$(*B)\dlutils.c .
1219
1220 $(EXTDIR)\DynaLoader\dl_win32.xs: dl_win32.xs
1221         copy dl_win32.xs $(EXTDIR)\DynaLoader\dl_win32.xs
1222
1223 #-------------------------------------------------------------------------------
1224 Extensions : buildext.pl $(PERLDEP) $(CONFIGPM)
1225         $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) --dynamic
1226         $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext --dynamic
1227
1228 Extensions_static : buildext.pl
1229         $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) --static
1230         $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext --static
1231         $(MINIPERL) -I..\lib buildext.pl --list-static-libs > Extensions_static
1232
1233 Extensions_clean :
1234         -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) clean
1235         -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext clean
1236
1237 Extensions_realclean :
1238         -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) realclean
1239         -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext realclean
1240
1241 #-------------------------------------------------------------------------------
1242
1243
1244 doc: $(PERLEXE)
1245         $(PERLEXE) -I..\lib ..\installhtml --podroot=.. --htmldir=$(HTMLDIR) \
1246             --podpath=pod:lib:ext:utils --htmlroot="file://$(INST_HTML:s,:,|,)"\
1247             --libpod=perlfunc:perlguts:perlvar:perlrun:perlop --recurse
1248
1249 # Note that this next section is parsed (and regenerated) by pod/buildtoc
1250 # so please check that script before making structural changes here
1251 utils: $(PERLEXE) $(X2P)
1252         cd ..\utils && $(MAKE) PERL=$(MINIPERL)
1253         copy ..\vms\perlvms.pod ..\pod\perlvms.pod
1254         copy ..\README.aix      ..\pod\perlaix.pod
1255         copy ..\README.amiga    ..\pod\perlamiga.pod
1256         copy ..\README.apollo   ..\pod\perlapollo.pod
1257         copy ..\README.beos     ..\pod\perlbeos.pod
1258         copy ..\README.bs2000   ..\pod\perlbs2000.pod
1259         copy ..\README.ce       ..\pod\perlce.pod
1260         copy ..\README.cn       ..\pod\perlcn.pod
1261         copy ..\README.cygwin   ..\pod\perlcygwin.pod
1262         copy ..\README.dgux     ..\pod\perldgux.pod
1263         copy ..\README.dos      ..\pod\perldos.pod
1264         copy ..\README.epoc     ..\pod\perlepoc.pod
1265         copy ..\README.freebsd  ..\pod\perlfreebsd.pod
1266         copy ..\README.hpux     ..\pod\perlhpux.pod
1267         copy ..\README.hurd     ..\pod\perlhurd.pod
1268         copy ..\README.irix     ..\pod\perlirix.pod
1269         copy ..\README.jp       ..\pod\perljp.pod
1270         copy ..\README.ko       ..\pod\perlko.pod
1271         copy ..\README.linux    ..\pod\perllinux.pod
1272         copy ..\README.machten  ..\pod\perlmachten.pod
1273         copy ..\README.macos    ..\pod\perlmacos.pod
1274         copy ..\README.macosx   ..\pod\perlmacosx.pod
1275         copy ..\README.mint     ..\pod\perlmint.pod
1276         copy ..\README.mpeix    ..\pod\perlmpeix.pod
1277         copy ..\README.netware  ..\pod\perlnetware.pod
1278         copy ..\README.openbsd  ..\pod\perlopenbsd.pod
1279         copy ..\README.os2      ..\pod\perlos2.pod
1280         copy ..\README.os390    ..\pod\perlos390.pod
1281         copy ..\README.os400    ..\pod\perlos400.pod
1282         copy ..\README.plan9    ..\pod\perlplan9.pod
1283         copy ..\README.qnx      ..\pod\perlqnx.pod
1284         copy ..\README.riscos   ..\pod\perlriscos.pod
1285         copy ..\README.solaris  ..\pod\perlsolaris.pod
1286         copy ..\README.symbian  ..\pod\perlsymbian.pod
1287         copy ..\README.tru64    ..\pod\perltru64.pod
1288         copy ..\README.tw       ..\pod\perltw.pod
1289         copy ..\README.uts      ..\pod\perluts.pod
1290         copy ..\README.vmesa    ..\pod\perlvmesa.pod
1291         copy ..\README.vms      ..\pod\perlvms.pod
1292         copy ..\README.vos      ..\pod\perlvos.pod
1293         copy ..\README.win32    ..\pod\perlwin32.pod
1294         copy ..\pod\perl594delta.pod ..\pod\perldelta.pod
1295         cd ..\pod && $(MAKE) -f ..\win32\pod.mak converters
1296         cd ..\lib && $(PERLEXE) lib_pm.PL
1297         $(PERLEXE) $(PL2BAT) $(UTILS)
1298
1299 # Note that the pod cleanup in this next section is parsed (and regenerated
1300 # by pod/buildtoc so please check that script before making changes here
1301
1302 distclean: realclean
1303         -del /f $(MINIPERL) $(PERLEXE) $(PERLDLL) $(GLOBEXE) \
1304                 $(PERLIMPLIB) ..\miniperl$(a) $(MINIMOD)
1305         -del /f *.def *.map
1306         -del /f $(DYNALOADER).c
1307         -del /f $(EXTDIR)\DynaLoader\dl_win32.xs
1308         -del /f $(EXTDIR)\DynaLoader\DynaLoader.pm
1309         -del /f $(EXTDIR)\DynaLoader\XSLoader.pm
1310         -del /f $(LIBDIR)\Encode.pm $(LIBDIR)\encoding.pm $(LIBDIR)\Errno.pm
1311         -del /f $(LIBDIR)\Config.pod $(LIBDIR)\POSIX.pod $(LIBDIR)\threads.pm
1312         -del /f $(LIBDIR)\.exists $(LIBDIR)\attrs.pm $(LIBDIR)\DynaLoader.pm
1313         -del /f $(LIBDIR)\XSLoader.pm $(LIBDIR)\lib.pm
1314         -del /f $(LIBDIR)\Fcntl.pm $(LIBDIR)\IO.pm $(LIBDIR)\Opcode.pm
1315         -del /f $(LIBDIR)\ops.pm $(LIBDIR)\Safe.pm
1316         -del /f $(LIBDIR)\SDBM_File.pm $(LIBDIR)\Socket.pm $(LIBDIR)\POSIX.pm
1317         -del /f $(LIBDIR)\B.pm $(LIBDIR)\O.pm $(LIBDIR)\re.pm
1318         -del /f $(LIBDIR)\ByteLoader.pm
1319         -del /f $(LIBDIR)\Devel\Peek.pm $(LIBDIR)\Devel\DProf.pm
1320         -del /f $(LIBDIR)\Devel\PPPort.pm
1321         -del /f $(LIBDIR)\File\Glob.pm
1322         -del /f $(LIBDIR)\Storable.pm
1323         -del /f $(LIBDIR)\Digest\MD5.pm
1324         -del /f $(LIBDIR)\Digest\SHA.pm
1325         -del /f $(LIBDIR)\PerlIO\encoding.pm
1326         -del /f $(LIBDIR)\PerlIO\scalar.pm
1327         -del /f $(LIBDIR)\PerlIO\via.pm
1328         -del /f $(LIBDIR)\Sys\Hostname.pm
1329         -del /f $(LIBDIR)\Thread\Signal.pm $(LIBDIR)\Thread\Specific.pm
1330         -del /f $(LIBDIR)\threads\shared.pm
1331         -del /f $(LIBDIR)\Time\HiRes.pm
1332         -del /f $(LIBDIR)\Unicode\Normalize.pm
1333         -del /f $(LIBDIR)\Math\BigInt\FastCalc.pm
1334         -del /f $(LIBDIR)\Win32.pm
1335         -if exist $(LIBDIR)\B rmdir /s /q $(LIBDIR)\B
1336         -if exist $(LIBDIR)\Compress rmdir /s /q $(LIBDIR)\Compress
1337         -if exist $(LIBDIR)\Data rmdir /s /q $(LIBDIR)\Data
1338         -if exist $(LIBDIR)\Encode rmdir /s /q $(LIBDIR)\Encode
1339         -if exist $(LIBDIR)\Filter\Util rmdir /s /q $(LIBDIR)\Filter\Util
1340         -if exist $(LIBDIR)\Hash rmdir /s /q $(LIBDIR)\Hash
1341         -if exist $(LIBDIR)\IO\Compress rmdir /s /q $(LIBDIR)\IO\Compress
1342         -if exist $(LIBDIR)\IO\Socket rmdir /s /q $(LIBDIR)\IO\Socket
1343         -if exist $(LIBDIR)\IO\Uncompress rmdir /s /q $(LIBDIR)\IO\Uncompress
1344         -if exist $(LIBDIR)\List rmdir /s /q $(LIBDIR)\List
1345         -if exist $(LIBDIR)\MIME rmdir /s /q $(LIBDIR)\MIME
1346         -if exist $(LIBDIR)\Scalar rmdir /s /q $(LIBDIR)\Scalar
1347         -if exist $(LIBDIR)\Sys rmdir /s /q $(LIBDIR)\Sys
1348         -if exist $(LIBDIR)\threads rmdir /s /q $(LIBDIR)\threads
1349         -if exist $(LIBDIR)\XS rmdir /s /q $(LIBDIR)\XS
1350         -cd $(PODDIR) && del /f *.html *.bat checkpods \
1351             perlaix.pod perlamiga.pod perlapollo.pod perlbeos.pod \
1352             perlbs2000.pod perlce.pod perlcn.pod perlcygwin.pod \
1353             perldelta.pod perldgux.pod perldos.pod perlepoc.pod \
1354             perlfreebsd.pod perlhpux.pod perlhurd.pod perlirix.pod \
1355             perljp.pod perlko.pod perllinux.pod perlmachten.pod \
1356             perlmacos.pod perlmacosx.pod perlmint.pod perlmpeix.pod \
1357             perlnetware.pod perlopenbsd.pod perlos2.pod perlos390.pod \
1358             perlos400.pod perlplan9.pod perlqnx.pod perlriscos.pod \
1359             perlsolaris.pod perlsymbian.pod perltru64.pod perltw.pod \
1360             perluts.pod perlvmesa.pod perlvms.pod perlvms.pod perlvos.pod \
1361             perlwin32.pod \
1362             pod2html pod2latex pod2man pod2text pod2usage \
1363             podchecker podselect
1364         -cd ..\utils && del /f h2ph splain perlbug pl2pm c2ph pstruct h2xs \
1365             perldoc perlivp dprofpp perlcc libnetcfg enc2xs piconv cpan *.bat \
1366             xsubpp instmodsh prove ptar ptardiff shasum corelist config_data
1367         -cd ..\x2p && del /f find2perl s2p psed *.bat
1368         -del /f ..\config.sh ..\splittree.pl perlmain.c dlutils.c config.h.new
1369         -del /f $(CONFIGPM)
1370         -del /f bin\*.bat
1371         -del /f perllibst.h
1372         -del /f $(PERLEXE_ICO) perl.base
1373         -cd .. && del /s *$(a) *.map *.pdb *.ilk *.tds *.bs *$(o) .exists pm_to_blib
1374         -cd $(EXTDIR) && del /s *.def Makefile Makefile.old
1375         -if exist $(AUTODIR) rmdir /s /q $(AUTODIR)
1376         -if exist $(COREDIR) rmdir /s /q $(COREDIR)
1377         -if exist pod2htmd.tmp del pod2htmd.tmp
1378         -if exist pod2htmi.tmp del pod2htmi.tmp
1379         -if exist $(HTMLDIR) rmdir /s /q $(HTMLDIR)
1380
1381 install : all installbare installhtml
1382
1383 installbare : $(RIGHTMAKE) utils
1384         $(PERLEXE) ..\installperl
1385         if exist $(WPERLEXE) $(XCOPY) $(WPERLEXE) $(INST_BIN)\*.*
1386         $(XCOPY) $(GLOBEXE) $(INST_BIN)\*.*
1387         if exist ..\perl*.pdb $(XCOPY) ..\perl*.pdb $(INST_BIN)\*.*
1388         if exist ..\x2p\a2p.pdb $(XCOPY) ..\x2p\a2p.pdb $(INST_BIN)\*.*
1389         $(XCOPY) bin\*.bat $(INST_SCRIPT)\*.*
1390
1391 installhtml : doc
1392         $(RCOPY) $(HTMLDIR)\*.* $(INST_HTML)\*.*
1393
1394 inst_lib : $(CONFIGPM)
1395         copy splittree.pl ..
1396         $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR)
1397         $(RCOPY) ..\lib $(INST_LIB)\*.*
1398
1399 $(UNIDATAFILES) .UPDATEALL : $(MINIPERL) $(CONFIGPM) ..\lib\unicore\mktables
1400         cd ..\lib\unicore && \
1401         ..\$(MINIPERL) -I.. mktables
1402
1403 minitest : $(MINIPERL) $(GLOBEXE) $(CONFIGPM) $(UNIDATAFILES) utils
1404         $(XCOPY) $(MINIPERL) ..\t\$(NULL)
1405         if exist ..\t\perl.exe del /f ..\t\perl.exe
1406         rename ..\t\miniperl.exe perl.exe
1407 .IF "$(CCTYPE)" == "BORLAND"
1408         $(XCOPY) $(GLOBBAT) ..\t\$(NULL)
1409 .ELSE
1410         $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1411 .ENDIF
1412         attrib -r ..\t\*.*
1413         cd ..\t && \
1414         $(MINIPERL) -I..\lib harness base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t
1415
1416 test-prep : all utils
1417         $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1418         $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1419 .IF "$(CCTYPE)" == "BORLAND"
1420         $(XCOPY) $(GLOBBAT) ..\t\$(NULL)
1421 .ELSE
1422         $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1423 .ENDIF
1424
1425 test : $(RIGHTMAKE) test-prep
1426         cd ..\t && $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES)
1427
1428 test-notty : test-prep
1429         set PERL_SKIP_TTY_TEST=1 && \
1430             cd ..\t && $(PERLEXE) -I.\lib harness $(TEST_SWITCHES) $(TEST_FILES)
1431
1432 _test : $(RIGHTMAKE)
1433         $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1434         $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1435 .IF "$(CCTYPE)" == "BORLAND"
1436         $(XCOPY) $(GLOBBAT) ..\t\$(NULL)
1437 .ELSE
1438         $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1439 .ENDIF
1440         cd ..\t && $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES)
1441
1442 _clean :
1443         -@erase miniperlmain$(o)
1444         -@erase $(MINIPERL)
1445         -@erase perlglob$(o)
1446         -@erase perlmain$(o)
1447         -@erase config.w32
1448         -@erase /f config.h
1449         -@erase $(GLOBEXE)
1450         -@erase $(PERLEXE)
1451         -@erase $(WPERLEXE)
1452         -@erase $(PERLDLL)
1453         -@erase $(CORE_OBJ)
1454         -if exist $(MINIDIR) rmdir /s /q $(MINIDIR)
1455         -if exist $(UNIDATADIR1) rmdir /s /q $(UNIDATADIR1)
1456         -if exist $(UNIDATADIR2) rmdir /s /q $(UNIDATADIR2)
1457         -@erase $(UNIDATAFILES)
1458         -@erase $(WIN32_OBJ)
1459         -@erase $(DLL_OBJ)
1460         -@erase $(X2P_OBJ)
1461         -@erase ..\*$(o) ..\*$(a) ..\*.exp *$(o) *$(a) *.exp *.res
1462         -@erase ..\t\*.exe ..\t\*.dll ..\t\*.bat
1463         -@erase ..\x2p\*.exe ..\x2p\*.bat
1464         -@erase *.ilk
1465         -@erase *.pdb
1466         -@erase *.tds
1467         -@erase Extensions_static
1468
1469 clean : Extensions_clean _clean
1470
1471 realclean : Extensions_realclean _clean
1472
1473 # Handy way to run perlbug -ok without having to install and run the
1474 # installed perlbug. We don't re-run the tests here - we trust the user.
1475 # Please *don't* use this unless all tests pass.
1476 # If you want to report test failures, use "dmake nok" instead.
1477 ok: utils
1478         $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)"
1479
1480 okfile: utils
1481         $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)" -F perl.ok
1482
1483 nok: utils
1484         $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)"
1485
1486 nokfile: utils
1487         $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)" -F perl.nok