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