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