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