enable maximal optimizations on win64
[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\h2xs           \
593                 ..\utils\perldoc        \
594                 ..\utils\perlcc         \
595                 ..\utils\perlivp        \
596                 ..\utils\libnetcfg      \
597                 ..\pod\checkpods        \
598                 ..\pod\pod2html         \
599                 ..\pod\pod2latex        \
600                 ..\pod\pod2man          \
601                 ..\pod\pod2text         \
602                 ..\pod\pod2usage        \
603                 ..\pod\podchecker       \
604                 ..\pod\podselect        \
605                 ..\x2p\find2perl        \
606                 ..\x2p\s2p              \
607                 ..\lib\ExtUtils\xsubpp  \
608                 bin\exetype.pl          \
609                 bin\runperl.pl          \
610                 bin\pl2bat.pl           \
611                 bin\perlglob.pl         \
612                 bin\search.pl
613
614 .IF "$(CCTYPE)" == "BORLAND"
615
616 CFGSH_TMPL      = config.bc
617 CFGH_TMPL       = config_H.bc
618
619 .ELIF "$(CCTYPE)" == "GCC"
620
621 CFGSH_TMPL      = config.gc
622 CFGH_TMPL       = config_H.gc
623 PERLIMPLIB      = ..\libperl58$(a)
624
625 .ELSE
626
627 .IF "$(WIN64)" == "define"
628 CFGSH_TMPL      = config.vc64
629 CFGH_TMPL       = config_H.vc64
630 .ELSE
631 CFGSH_TMPL      = config.vc
632 CFGH_TMPL       = config_H.vc
633 .ENDIF
634
635 .ENDIF
636
637 # makedef.pl must be updated if this changes, and this should normally
638 # only change when there is an incompatible revision of the public API.
639 PERLIMPLIB      *= ..\perl58$(a)
640 PERLDLL         = ..\perl58.dll
641
642 XCOPY           = xcopy /f /r /i /d
643 RCOPY           = xcopy /f /r /i /e /d
644 NOOP            = @echo
645
646 #
647 # filenames given to xsubpp must have forward slashes (since it puts
648 # full pathnames in #line strings)
649 XSUBPP          = ..\$(MINIPERL) -I..\..\lib ..\$(EXTUTILSDIR)\xsubpp \
650                 -C++ -prototypes
651
652 MICROCORE_SRC   =               \
653                 ..\av.c         \
654                 ..\deb.c        \
655                 ..\doio.c       \
656                 ..\doop.c       \
657                 ..\dump.c       \
658                 ..\globals.c    \
659                 ..\gv.c         \
660                 ..\hv.c         \
661                 ..\locale.c     \
662                 ..\mg.c         \
663                 ..\numeric.c    \
664                 ..\op.c         \
665                 ..\perl.c       \
666                 ..\perlapi.c    \
667                 ..\perly.c      \
668                 ..\pp.c         \
669                 ..\pp_ctl.c     \
670                 ..\pp_hot.c     \
671                 ..\pp_pack.c    \
672                 ..\pp_sort.c    \
673                 ..\pp_sys.c     \
674                 ..\reentr.c     \
675                 ..\regcomp.c    \
676                 ..\regexec.c    \
677                 ..\run.c        \
678                 ..\scope.c      \
679                 ..\sv.c         \
680                 ..\taint.c      \
681                 ..\toke.c       \
682                 ..\universal.c  \
683                 ..\utf8.c       \
684                 ..\util.c       \
685                 ..\xsutils.c
686
687 EXTRACORE_SRC   += perllib.c
688
689 .IF "$(PERL_MALLOC)" == "define"
690 EXTRACORE_SRC   += ..\malloc.c
691 .ENDIF
692
693 EXTRACORE_SRC   += ..\perlio.c
694
695 WIN32_SRC       =               \
696                 .\win32.c       \
697                 .\win32sck.c    \
698                 .\win32thread.c
699
700 .IF "$(USE_PERLIO)" == "define"
701 WIN32_SRC       += .\win32io.c
702 .ENDIF
703
704 .IF "$(CRYPT_SRC)" != ""
705 WIN32_SRC       += .\$(CRYPT_SRC)
706 .ENDIF
707
708 DLL_SRC         = $(DYNALOADER).c
709
710 X2P_SRC         =               \
711                 ..\x2p\a2p.c    \
712                 ..\x2p\hash.c   \
713                 ..\x2p\str.c    \
714                 ..\x2p\util.c   \
715                 ..\x2p\walk.c
716
717 CORE_NOCFG_H    =               \
718                 ..\av.h         \
719                 ..\cop.h        \
720                 ..\cv.h         \
721                 ..\dosish.h     \
722                 ..\embed.h      \
723                 ..\form.h       \
724                 ..\gv.h         \
725                 ..\handy.h      \
726                 ..\hv.h         \
727                 ..\iperlsys.h   \
728                 ..\mg.h         \
729                 ..\nostdio.h    \
730                 ..\op.h         \
731                 ..\opcode.h     \
732                 ..\perl.h       \
733                 ..\perlapi.h    \
734                 ..\perlsdio.h   \
735                 ..\perlsfio.h   \
736                 ..\perly.h      \
737                 ..\pp.h         \
738                 ..\proto.h      \
739                 ..\regexp.h     \
740                 ..\scope.h      \
741                 ..\sv.h         \
742                 ..\thread.h     \
743                 ..\unixish.h    \
744                 ..\utf8.h       \
745                 ..\util.h       \
746                 ..\warnings.h   \
747                 ..\XSUB.h       \
748                 ..\EXTERN.h     \
749                 ..\perlvars.h   \
750                 ..\intrpvar.h   \
751                 ..\thrdvar.h    \
752                 .\include\dirent.h      \
753                 .\include\netdb.h       \
754                 .\include\sys\socket.h  \
755                 .\win32.h
756
757 CORE_H          = $(CORE_NOCFG_H) .\config.h
758
759 MICROCORE_OBJ   = $(MICROCORE_SRC:db:+$(o))
760 CORE_OBJ        = $(MICROCORE_OBJ) $(EXTRACORE_SRC:db:+$(o))
761 WIN32_OBJ       = $(WIN32_SRC:db:+$(o))
762 MINICORE_OBJ    = $(MINIDIR)\{$(MICROCORE_OBJ:f) miniperlmain$(o) perlio$(o)}
763 MINIWIN32_OBJ   = $(MINIDIR)\{$(WIN32_OBJ:f)}
764 MINI_OBJ        = $(MINICORE_OBJ) $(MINIWIN32_OBJ)
765 DLL_OBJ         = $(DLL_SRC:db:+$(o))
766 X2P_OBJ         = $(X2P_SRC:db:+$(o))
767
768 PERLDLL_OBJ     = $(CORE_OBJ)
769 PERLEXE_OBJ     = perlmain$(o)
770
771 PERLDLL_OBJ     += $(WIN32_OBJ) $(DLL_OBJ)
772
773 .IF "$(USE_SETARGV)" != ""
774 SETARGV_OBJ     = setargv$(o)
775 .ENDIF
776
777 DYNAMIC_EXT     = Socket IO Fcntl Opcode SDBM_File POSIX attrs Thread B re \
778                 Data/Dumper Devel/Peek ByteLoader Devel/DProf File/Glob \
779                 Sys/Hostname Storable Filter/Util/Call Encode \
780                 Digest/MD5 PerlIO/Scalar MIME/Base64 Time/HiRes \
781                 Unicode/Normalize
782 STATIC_EXT      = DynaLoader
783 NONXS_EXT       = Errno
784
785 DYNALOADER      = $(EXTDIR)\DynaLoader\DynaLoader
786
787 POD2HTML        = $(PODDIR)\pod2html
788 POD2MAN         = $(PODDIR)\pod2man
789 POD2LATEX       = $(PODDIR)\pod2latex
790 POD2TEXT        = $(PODDIR)\pod2text
791
792 # vars must be separated by "\t+~\t+", since we're using the tempfile
793 # version of config_sh.pl (we were overflowing someone's buffer by
794 # trying to fit them all on the command line)
795 #       -- BKS 10-17-1999
796 CFG_VARS        =                                       \
797                 INST_DRV=$(INST_DRV)            ~       \
798                 INST_TOP=$(INST_TOP:s/\/\\/)    ~       \
799                 INST_VER=$(INST_VER:s/\/\\/)    ~       \
800                 INST_ARCH=$(INST_ARCH)          ~       \
801                 archname=$(ARCHNAME)            ~       \
802                 cc=$(CC)                        ~       \
803                 ld=$(LINK32)                    ~       \
804                 ccflags=$(OPTIMIZE) $(DEFINES) $(BUILDOPT)      ~       \
805                 cf_email=$(EMAIL)               ~       \
806                 d_crypt=$(D_CRYPT)              ~       \
807                 d_mymalloc=$(PERL_MALLOC)       ~       \
808                 libs=$(LIBFILES:f)              ~       \
809                 incpath=$(CCINCDIR:s/\/\\/)     ~       \
810                 libperl=$(PERLIMPLIB:f)         ~       \
811                 libpth=$(CCLIBDIR:s/\/\\/);$(EXTRALIBDIRS:s/\/\\/)      ~       \
812                 libc=$(LIBC)                    ~       \
813                 make=dmake                      ~       \
814                 _o=$(o)                         ~       \
815                 obj_ext=$(o)                    ~       \
816                 _a=$(a)                         ~       \
817                 lib_ext=$(a)                    ~       \
818                 static_ext=$(STATIC_EXT)        ~       \
819                 use5005threads=$(USE_5005THREADS)       ~       \
820                 useithreads=$(USE_ITHREADS)     ~       \
821                 usethreads=$(USE_5005THREADS)   ~       \
822                 usemultiplicity=$(USE_MULTI)    ~       \
823                 useperlio=$(USE_PERLIO)         ~       \
824                 LINK_FLAGS=$(LINK_FLAGS:s/\/\\/)                ~       \
825                 optimize=$(OPTIMIZE)
826
827 #
828 # set up targets varying between Win95 and WinNT builds
829 #
830
831 .IF "$(IS_WIN95)" == "define"
832 MK2             = .\makefile.95
833 RIGHTMAKE       = __switch_makefiles
834 NOOP            = @rem
835 .ELSE
836 MK2             = __not_needed
837 RIGHTMAKE       =
838 .ENDIF
839
840 #
841 # Top targets
842 #
843
844 all : .\config.h $(GLOBEXE) $(MINIPERL) $(MK2)          \
845         $(RIGHTMAKE) $(MINIMOD) $(CONFIGPM) $(PERLEXE)  \
846         $(X2P) Extensions
847
848 $(DYNALOADER)$(o) : $(DYNALOADER).c $(CORE_H) $(EXTDIR)\DynaLoader\dlutils.c
849
850 #----------------------------------------------------------------
851
852 #-------------------- BEGIN Win95 SPECIFIC ----------------------
853
854 # this target is a jump-off point for Win95
855 #  1. it switches to the Win95-specific makefile if it exists
856 #     (__do_switch_makefiles)
857 #  2. it prints a message when the Win95-specific one finishes (__done)
858 #  3. it then kills this makefile by trying to make __no_such_target
859
860 __switch_makefiles: __do_switch_makefiles __done __no_such_target
861
862 __do_switch_makefiles:
863 .IF "$(NOTFIRST)" != "true"
864         if exist $(MK2) $(MAKE:s/-S//) -f $(MK2) $(MAKETARGETS) NOTFIRST=true
865 .ELSE
866         $(NOOP)
867 .ENDIF
868
869 .IF "$(NOTFIRST)" != "true"
870 __done:
871         @echo Build process complete. Ignore any errors after this message.
872         @echo Run "dmake test" to test and "dmake install" to install
873
874 .ELSE
875 # dummy targets for Win95-specific makefile
876
877 __done:
878         $(NOOP)
879
880 __no_such_target:
881         $(NOOP)
882
883 .ENDIF
884
885 # This target is used to generate the new makefile (.\makefile.95) for Win95
886
887 .\makefile.95: .\makefile.mk
888         $(MINIPERL) genmk95.pl makefile.mk $(MK2)
889
890 #--------------------- END Win95 SPECIFIC ---------------------
891
892 # a blank target for when builds don't need to do certain things
893 # this target added for Win95 port but used to keep the WinNT port able to
894 # use this file
895 __not_needed:
896         $(NOOP)
897
898 $(GLOBEXE) : perlglob$(o)
899 .IF "$(CCTYPE)" == "BORLAND"
900         $(CC) -c -w -v -tWM -I"$(CCINCDIR)" perlglob.c
901         $(LINK32) -Tpe -ap $(BLINK_FLAGS) c0x32$(o) perlglob$(o) \
902             "$(CCLIBDIR)\32BIT\wildargs$(o)",$@,,import32.lib cw32mt.lib,
903 .ELIF "$(CCTYPE)" == "GCC"
904         $(LINK32) $(BLINK_FLAGS) -mconsole -o $@ perlglob$(o) $(LIBFILES)
905 .ELSE
906         $(LINK32) $(BLINK_FLAGS) $(LIBFILES) -out:$@ -subsystem:$(SUBSYS) \
907             perlglob$(o) setargv$(o)
908 .ENDIF
909
910 perlglob$(o)  : perlglob.c
911
912 config.w32 : $(CFGSH_TMPL)
913         copy $(CFGSH_TMPL) config.w32
914
915 .\config.h : $(CFGH_TMPL) $(CORE_NOCFG_H)
916         -del /f config.h
917         copy $(CFGH_TMPL) config.h
918
919 ..\config.sh : config.w32 $(MINIPERL) config_sh.PL FindExt.pm
920         $(MINIPERL) -I..\lib config_sh.PL --cfgsh-option-file \
921             $(mktmp $(CFG_VARS)) config.w32 > ..\config.sh
922
923 # this target is for when changes to the main config.sh happen
924 # edit config.{b,v,g}c and make this target once for each supported
925 # compiler (e.g. `dmake CCTYPE=BORLAND regen_config_h`)
926 regen_config_h:
927         perl config_sh.PL --cfgsh-option-file $(mktmp $(CFG_VARS)) \
928             $(CFGSH_TMPL) > ..\config.sh
929         -cd .. && del /f perl.exe
930         -cd .. && del /f perl*.dll
931         cd .. && perl configpm
932         -del /f $(CFGH_TMPL)
933         -mkdir $(COREDIR)
934         -perl config_h.PL "INST_VER=$(INST_VER)"
935         rename config.h $(CFGH_TMPL)
936
937 $(CONFIGPM) : $(MINIPERL) ..\config.sh config_h.PL ..\minimod.pl
938         cd .. && miniperl configpm
939         if exist lib\* $(RCOPY) lib\*.* ..\lib\$(NULL)
940         $(XCOPY) ..\*.h $(COREDIR)\*.*
941         $(XCOPY) *.h $(COREDIR)\*.*
942         $(XCOPY) ..\ext\re\re.pm $(LIBDIR)\*.*
943         $(RCOPY) include $(COREDIR)\*.*
944         $(MINIPERL) -I..\lib config_h.PL "INST_VER=$(INST_VER)" \
945             || $(MAKE) $(MAKEMACROS) $(CONFIGPM) $(MAKEFILE)
946
947 $(MINIPERL) : $(MINIDIR) $(MINI_OBJ) $(CRTIPMLIBS)
948 .IF "$(CCTYPE)" == "BORLAND"
949         $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
950             @$(mktmp c0x32$(o) $(MINI_OBJ:s,\,\\),$(@:s,\,\\),,$(LIBFILES),)
951 .ELIF "$(CCTYPE)" == "GCC"
952         $(LINK32) -v -mconsole -o $@ $(BLINK_FLAGS) \
953             $(mktmp $(LKPRE) $(MINI_OBJ:s,\,\\) $(LIBFILES) $(LKPOST))
954 .ELSE
955         $(LINK32) -subsystem:console -out:$@ \
956             @$(mktmp $(BLINK_FLAGS) $(LIBFILES) $(MINI_OBJ:s,\,\\))
957 .ENDIF
958
959 $(MINIDIR) :
960         if not exist "$(MINIDIR)" mkdir "$(MINIDIR)"
961
962 $(MINICORE_OBJ) : $(CORE_NOCFG_H)
963         $(CC) -c $(CFLAGS) -DPERL_EXTERNAL_GLOB $(OBJOUT_FLAG)$@ ..\$(*B).c
964
965 $(MINIWIN32_OBJ) : $(CORE_NOCFG_H)
966         $(CC) -c $(CFLAGS) $(OBJOUT_FLAG)$@ $(*B).c
967
968 # -DPERL_IMPLICIT_SYS needs C++ for perllib.c
969 # rules wrapped in .IFs break Win9X build (we end up with unbalanced []s unless
970 # unless the .IF is true), so instead we use a .ELSE with the default.
971 # This is the only file that depends on perlhost.h, vmem.h, and vdir.h
972
973 perllib$(o)     : perllib.c .\perlhost.h .\vdir.h .\vmem.h
974 .IF "$(USE_IMP_SYS)" == "define"
975         $(CC) -c -I. $(CFLAGS_O) $(CXX_FLAG) $(OBJOUT_FLAG)$@ perllib.c
976 .ELSE
977         $(CC) -c -I. $(CFLAGS_O) $(OBJOUT_FLAG)$@ perllib.c
978 .ENDIF
979
980 # 1. we don't want to rebuild miniperl.exe when config.h changes
981 # 2. we don't want to rebuild miniperl.exe with non-default config.h
982 $(MINI_OBJ)     : $(CORE_NOCFG_H)
983
984 $(WIN32_OBJ)    : $(CORE_H)
985 $(CORE_OBJ)     : $(CORE_H)
986 $(DLL_OBJ)      : $(CORE_H)
987 $(X2P_OBJ)      : $(CORE_H)
988
989 perldll.def : $(MINIPERL) $(CONFIGPM) ..\global.sym ..\pp.sym ..\makedef.pl
990         $(MINIPERL) -w ..\makedef.pl PLATFORM=win32 $(OPTIMIZE) $(DEFINES) \
991         $(BUILDOPT) CCTYPE=$(CCTYPE) > perldll.def
992
993 $(PERLDLL): perldll.def $(PERLDLL_OBJ) $(PERLDLL_RES)
994 .IF "$(CCTYPE)" == "BORLAND"
995         $(LINK32) -Tpd -ap $(BLINK_FLAGS) \
996             @$(mktmp c0d32$(o) $(PERLDLL_OBJ:s,\,\\)\n \
997                 $@,\n \
998                 $(LIBFILES)\n \
999                 perldll.def\n)
1000         $(IMPLIB) $*.lib $@
1001 .ELIF "$(CCTYPE)" == "GCC"
1002         $(LINK32) -mdll -o $@ -Wl,--base-file -Wl,perl.base $(BLINK_FLAGS) \
1003             $(mktmp $(LKPRE) $(PERLDLL_OBJ:s,\,\\) $(LIBFILES) $(LKPOST))
1004         dlltool --output-lib $(PERLIMPLIB) \
1005                 --dllname $(PERLDLL:b).dll \
1006                 --def perldll.def \
1007                 --base-file perl.base \
1008                 --output-exp perl.exp
1009         $(LINK32) -mdll -o $@ $(BLINK_FLAGS) \
1010             $(mktmp $(LKPRE) $(PERLDLL_OBJ:s,\,\\) $(LIBFILES) \
1011                 perl.exp $(LKPOST))
1012 .ELSE
1013         $(LINK32) -dll -def:perldll.def -out:$@ \
1014             @$(mktmp -base:0x28000000 $(BLINK_FLAGS) $(DELAYLOAD) $(LIBFILES) \
1015                 $(PERLDLL_RES) $(PERLDLL_OBJ:s,\,\\))
1016 .ENDIF
1017         $(XCOPY) $(PERLIMPLIB) $(COREDIR)
1018
1019 $(MINIMOD) : $(MINIPERL) ..\minimod.pl
1020         cd .. && miniperl minimod.pl > lib\ExtUtils\Miniperl.pm
1021
1022 ..\x2p\a2p$(o) : ..\x2p\a2p.c
1023         $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\a2p.c
1024
1025 ..\x2p\hash$(o) : ..\x2p\hash.c
1026         $(CC) -I..\x2p  $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\hash.c
1027
1028 ..\x2p\str$(o) : ..\x2p\str.c
1029         $(CC) -I..\x2p  $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\str.c
1030
1031 ..\x2p\util$(o) : ..\x2p\util.c
1032         $(CC) -I..\x2p  $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\util.c
1033
1034 ..\x2p\walk$(o) : ..\x2p\walk.c
1035         $(CC) -I..\x2p  $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\walk.c
1036
1037 $(X2P) : $(MINIPERL) $(X2P_OBJ)
1038         $(MINIPERL) ..\x2p\find2perl.PL
1039         $(MINIPERL) ..\x2p\s2p.PL
1040 .IF "$(CCTYPE)" == "BORLAND"
1041         $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
1042             @$(mktmp c0x32$(o) $(X2P_OBJ:s,\,\\),$(@:s,\,\\),,$(LIBFILES),)
1043 .ELIF "$(CCTYPE)" == "GCC"
1044         $(LINK32) -v -o $@ $(BLINK_FLAGS) \
1045             $(mktmp $(LKPRE) $(X2P_OBJ:s,\,\\) $(LIBFILES) $(LKPOST))
1046 .ELSE
1047         $(LINK32) -subsystem:console -out:$@ \
1048             @$(mktmp $(BLINK_FLAGS) $(LIBFILES) $(X2P_OBJ:s,\,\\))
1049 .ENDIF
1050
1051 perlmain.c : runperl.c
1052         copy runperl.c perlmain.c
1053
1054 perlmain$(o) : perlmain.c
1055         $(CC) $(CFLAGS_O) -UPERLDLL $(OBJOUT_FLAG)$@ -c perlmain.c
1056
1057 $(PERLEXE): $(PERLDLL) $(CONFIGPM) $(PERLEXE_OBJ) $(PERLEXE_RES)
1058 .IF "$(CCTYPE)" == "BORLAND"
1059         $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
1060             @$(mktmp c0x32$(o) $(PERLEXE_OBJ:s,\,\\)\n \
1061             $(@:s,\,\\),\n \
1062             $(PERLIMPLIB) $(LIBFILES)\n)
1063 .ELIF "$(CCTYPE)" == "GCC"
1064         $(LINK32) -mconsole -o $@ $(BLINK_FLAGS)  \
1065             $(PERLEXE_OBJ) $(PERLIMPLIB) $(LIBFILES)
1066 .ELSE
1067         $(LINK32) -subsystem:console -out:$@ -stack:0x1000000 $(BLINK_FLAGS) \
1068             $(LIBFILES) $(PERLEXE_OBJ) $(SETARGV_OBJ) $(PERLIMPLIB) $(PERLEXE_RES)
1069 .ENDIF
1070         copy $(PERLEXE) $(WPERLEXE)
1071         $(MINIPERL) -I..\lib bin\exetype.pl $(WPERLEXE) WINDOWS
1072         copy splittree.pl ..
1073         $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR)
1074
1075 $(DYNALOADER).c: $(MINIPERL) $(EXTDIR)\DynaLoader\dl_win32.xs $(CONFIGPM)
1076         if not exist $(AUTODIR) mkdir $(AUTODIR)
1077         cd $(EXTDIR)\$(*B) && ..\$(MINIPERL) -I..\..\lib $(*B)_pm.PL
1078         cd $(EXTDIR)\$(*B) && ..\$(MINIPERL) -I..\..\lib XSLoader_pm.PL
1079         $(XCOPY) $(EXTDIR)\$(*B)\$(*B).pm $(LIBDIR)\$(NULL)
1080         $(XCOPY) $(EXTDIR)\$(*B)\XSLoader.pm $(LIBDIR)\$(NULL)
1081         cd $(EXTDIR)\$(*B) && $(XSUBPP) dl_win32.xs > $(*B).c
1082         $(XCOPY) $(EXTDIR)\$(*B)\dlutils.c .
1083
1084 $(EXTDIR)\DynaLoader\dl_win32.xs: dl_win32.xs
1085         copy dl_win32.xs $(EXTDIR)\DynaLoader\dl_win32.xs
1086
1087 #----------------------------------------------------------------------------------
1088 Extensions : buildext.pl $(PERLDEP) $(CONFIGPM)
1089         $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR)
1090
1091 Extensions_clean :
1092         -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) clean
1093
1094 #----------------------------------------------------------------------------------
1095
1096
1097 doc: $(PERLEXE)
1098         $(PERLEXE) -I..\lib ..\installhtml --podroot=.. --htmldir=./html \
1099             --podpath=pod:lib:ext:utils --htmlroot="file://$(INST_HTML:s,:,|,)"\
1100             --libpod=perlfunc:perlguts:perlvar:perlrun:perlop --recurse
1101
1102 utils: $(PERLEXE) $(X2P)
1103         cd ..\utils && $(MAKE) PERL=$(MINIPERL)
1104         copy ..\README.aix      ..\pod\perlaix.pod
1105         copy ..\README.amiga    ..\pod\perlamiga.pod
1106         copy ..\README.apollo   ..\pod\perlapollo.pod
1107         copy ..\README.beos     ..\pod\perlbeos.pod
1108         copy ..\README.bs2000   ..\pod\perlbs2000.pod
1109         copy ..\README.ce       ..\pod\perlce.pod
1110         copy ..\README.cygwin   ..\pod\perlcygwin.pod
1111         copy ..\README.dgux     ..\pod\perldgux.pod
1112         copy ..\README.dos      ..\pod\perldos.pod
1113         copy ..\README.epoc     ..\pod\perlepoc.pod
1114         copy ..\README.hpux     ..\pod\perlhpux.pod
1115         copy ..\README.hurd     ..\pod\perlhurd.pod
1116         copy ..\README.machten  ..\pod\perlmachten.pod
1117         copy ..\README.macos    ..\pod\perlmacos.pod
1118         copy ..\README.mint     ..\pod\perlmint.pod
1119         copy ..\README.mpeix    ..\pod\perlmpeix.pod
1120         copy ..\README.netware  ..\pod\perlnetware.pod
1121         copy ..\README.os2      ..\pod\perlos2.pod
1122         copy ..\README.os390    ..\pod\perlos390.pod
1123         copy ..\README.plan9    ..\pod\perlplan9.pod
1124         copy ..\README.qnx      ..\pod\perlqnx.pod
1125         copy ..\README.solaris  ..\pod\perlsolaris.pod
1126         copy ..\README.tru64    ..\pod\perltru64.pod
1127         copy ..\README.uts      ..\pod\perluts.pod
1128         copy ..\README.vmesa    ..\pod\perlvmesa.pod
1129         copy ..\vms\perlvms.pod ..\pod\perlvms.pod
1130         copy ..\README.vos      ..\pod\perlvos.pod
1131         copy ..\README.win32    ..\pod\perlwin32.pod
1132         cd ..\pod && $(MAKE) -f ..\win32\pod.mak converters
1133         cd ..\lib && $(PERLEXE) lib_pm.PL
1134         $(PERLEXE) $(PL2BAT) $(UTILS)
1135
1136 distclean: clean
1137         -del /f $(MINIPERL) $(PERLEXE) $(PERLDLL) $(GLOBEXE) \
1138                 $(PERLIMPLIB) ..\miniperl$(a) $(MINIMOD)
1139         -del /f *.def *.map
1140         -del /f $(EXTDIR)\DynaLoader\dl_win32.xs
1141         -del /f $(LIBDIR)\.exists $(LIBDIR)\attrs.pm $(LIBDIR)\DynaLoader.pm
1142         -del /f $(LIBDIR)\XSLoader.pm
1143         -del /f $(LIBDIR)\Fcntl.pm $(LIBDIR)\IO.pm $(LIBDIR)\Opcode.pm
1144         -del /f $(LIBDIR)\ops.pm $(LIBDIR)\Safe.pm
1145         -del /f $(LIBDIR)\SDBM_File.pm $(LIBDIR)\Socket.pm $(LIBDIR)\POSIX.pm
1146         -del /f $(LIBDIR)\B.pm $(LIBDIR)\O.pm $(LIBDIR)\re.pm
1147         -del /f $(LIBDIR)\Data\Dumper.pm $(LIBDIR)\ByteLoader.pm
1148         -del /f $(LIBDIR)\PerlIO\Scalar.pm
1149         -del /f $(LIBDIR)\Devel\Peek.pm $(LIBDIR)\Devel\DProf.pm
1150         -del /f $(LIBDIR)\File\Glob.pm
1151         -del /f $(LIBDIR)\Storable.pm
1152         -del /f $(LIBDIR)\Filter\Util\Call.pm
1153         -del /f $(LIBDIR)\Digest\MD5.pm
1154         -del /f $(LIBDIR)\MIME\Base64.pm
1155         -del /f $(LIBDIR)\MIME\QuotedPrint.pm
1156         -del /f $(LIBDIR)\Time\HiRes.pm
1157         -del /f $(LIBDIR)\List\Util.pm
1158         -del /f $(LIBDIR)\Scalar\Util.pm
1159         -del /f $(LIBDIR)\Unicode\Normalize.pm
1160         -if exist $(LIBDIR)\IO rmdir /s /q $(LIBDIR)\IO || rmdir /s $(LIBDIR)\IO
1161         -if exist $(LIBDIR)\Thread rmdir /s /q $(LIBDIR)\Thread || rmdir /s $(LIBDIR)\Thread
1162         -if exist $(LIBDIR)\B rmdir /s /q $(LIBDIR)\B || rmdir /s $(LIBDIR)\B
1163         -if exist $(LIBDIR)\Data rmdir /s /q $(LIBDIR)\Data || rmdir /s $(LIBDIR)\Data
1164         -if exist $(LIBDIR)\Filter\Util\Call rmdir /s /q $(LIBDIR)\Filter\Util\Call || rmdir /s $(LIBDIR)\Filter
1165         -if exist $(LIBDIR)\Filter\Util rmdir /s /q $(LIBDIR)\Filter\Util || rmdir /s $(LIBDIR)\Filter
1166         -if exist $(LIBDIR)\Digest rmdir /s /q $(LIBDIR)\Digest || rmdir /s $(LIBDIR)\Digest
1167         -if exist $(LIBDIR)\MIME rmdir /s /q $(LIBDIR)\MIME || rmdir /s $(LIBDIR)\MIME
1168         -if exist $(LIBDIR)\List rmdir /s /q $(LIBDIR)\List || rmdir /s $(LIBDIR)\List
1169         -if exist $(LIBDIR)\Scalar rmdir /s /q $(LIBDIR)\Scalar || rmdir /s $(LIBDIR)\Scalar
1170         -cd $(PODDIR) && del /f *.html *.bat checkpods \
1171             perlaix.pod perlamiga.pod perlapollo.pod \
1172             perlbeos.pod perlbs2000.pod perlce.pod perlcygwin.pod perldgux.pod \
1173             perldos.pod perlepoc.pod perlhpux.pod perlhurd.pod \
1174             perlmachten.pod perlmint.pod \
1175             perlmacos.pod perlmpeix.pod perlnetware.pod \
1176             perlos2.pod perlos390.pod \
1177             perlplan9.pod perlqnx.pod \
1178             perlsolaris.pod perltru64.pod perluts.pod \
1179             perlvmesa.pod perlvms.pod perlvos.pod \
1180             perlwin32.pod pod2html pod2latex pod2man pod2text pod2usage \
1181             podchecker podselect
1182         -cd ..\utils && del /f h2ph splain perlbug pl2pm c2ph h2xs perldoc \
1183             perlivp dprofpp *.bat
1184         -cd ..\x2p && del /f find2perl s2p *.bat
1185         -del /f ..\config.sh ..\splittree.pl perlmain.c dlutils.c config.h.new
1186         -del /f $(CONFIGPM)
1187         -del /f bin\*.bat
1188         -cd $(EXTDIR) && del /s *$(a) *.def *.map *.pdb *.bs Makefile *$(o) \
1189             pm_to_blib
1190         -if exist $(AUTODIR) rmdir /s /q $(AUTODIR) || rmdir /s $(AUTODIR)
1191         -if exist $(COREDIR) rmdir /s /q $(COREDIR) || rmdir /s $(COREDIR)
1192
1193 install : all installbare installhtml
1194
1195 installbare : $(RIGHTMAKE) utils
1196         $(PERLEXE) ..\installperl
1197         if exist $(WPERLEXE) $(XCOPY) $(WPERLEXE) $(INST_BIN)\*.*
1198         $(XCOPY) $(GLOBEXE) $(INST_BIN)\*.*
1199         $(XCOPY) bin\*.bat $(INST_SCRIPT)\*.*
1200
1201 installhtml : doc
1202         $(RCOPY) html\*.* $(INST_HTML)\*.*
1203
1204 inst_lib : $(CONFIGPM)
1205         copy splittree.pl ..
1206         $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR)
1207         $(RCOPY) ..\lib $(INST_LIB)\*.*
1208
1209 minitest : $(MINIPERL) $(GLOBEXE) $(CONFIGPM) utils
1210         $(XCOPY) $(MINIPERL) ..\t\perl.exe
1211 .IF "$(CCTYPE)" == "BORLAND"
1212         $(XCOPY) $(GLOBBAT) ..\t\$(NULL)
1213 .ELSE
1214         $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1215 .ENDIF
1216         attrib -r ..\t\*.*
1217         copy test ..\t
1218         cd ..\t && \
1219         $(MINIPERL) -I..\lib test base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t
1220
1221 test-prep : all utils
1222         $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1223         $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1224 .IF "$(CCTYPE)" == "BORLAND"
1225         $(XCOPY) $(GLOBBAT) ..\t\$(NULL)
1226 .ELSE
1227         $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1228 .ENDIF
1229
1230 test : $(RIGHTMAKE) test-prep
1231         cd ..\t && $(PERLEXE) -I..\lib harness
1232
1233 test-notty : test-prep
1234         set PERL_SKIP_TTY_TEST=1 && \
1235             cd ..\t && $(PERLEXE) -I.\lib harness
1236
1237 test-wide : test-prep
1238         set HARNESS_PERL_SWITCHES=-C && \
1239             cd ..\t && $(PERLEXE) -I..\lib harness
1240
1241 test-wide-notty : test-prep
1242         set PERL_SKIP_TTY_TEST=1 && \
1243             set HARNESS_PERL_SWITCHES=-C && \
1244             cd ..\t && $(PERLEXE) -I..\lib harness
1245
1246 _test : $(RIGHTMAKE)
1247         $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1248         $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1249 .IF "$(CCTYPE)" == "BORLAND"
1250         $(XCOPY) $(GLOBBAT) ..\t\$(NULL)
1251 .ELSE
1252         $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1253 .ENDIF
1254         cd ..\t && $(PERLEXE) -I..\lib harness
1255
1256 clean : Extensions_clean
1257         -@erase miniperlmain$(o)
1258         -@erase $(MINIPERL)
1259         -@erase perlglob$(o)
1260         -@erase perlmain$(o)
1261         -@erase config.w32
1262         -@erase /f config.h
1263         -@erase $(GLOBEXE)
1264         -@erase $(PERLEXE)
1265         -@erase $(WPERLEXE)
1266         -@erase $(PERLDLL)
1267         -@erase $(CORE_OBJ)
1268         -if exist $(MINIDIR) rmdir /s /q $(MINIDIR) || rmdir /s $(MINIDIR)
1269         -@erase $(WIN32_OBJ)
1270         -@erase $(DLL_OBJ)
1271         -@erase $(X2P_OBJ)
1272         -@erase ..\*$(o) ..\*$(a) ..\*.exp *$(o) *$(a) *.exp *.res
1273         -@erase ..\t\*.exe ..\t\*.dll ..\t\*.bat
1274         -@erase ..\x2p\*.exe ..\x2p\*.bat
1275         -@erase *.ilk
1276         -@erase *.pdb
1277
1278 # Handy way to run perlbug -ok without having to install and run the
1279 # installed perlbug. We don't re-run the tests here - we trust the user.
1280 # Please *don't* use this unless all tests pass.
1281 # If you want to report test failures, use "dmake nok" instead.
1282 ok: utils
1283         $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)"
1284
1285 okfile: utils
1286         $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)" -F perl.ok
1287
1288 nok: utils
1289         $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)"
1290
1291 nokfile: utils
1292         $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)" -F perl.nok