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