This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
b01923a837335847723de9ac6f106e54e962a469
[perl5.git] / win32 / makefile.mk
1 #
2 # Makefile to build perl on Windows NT using DMAKE.
3 # Supported compilers:
4 #       Visual C++ 2.0 through 6.0 (and possibly newer versions)
5 #       Borland C++ 5.02
6 #       Mingw32 with gcc-2.95.2 or better  **experimental**
7 #       MS Platform SDK 64-bit compiler and tools **experimental**
8 #
9 # This is set up to build a perl.exe that runs off a shared library
10 # (perl59.dll).  Also makes individual DLLs for the XS extensions.
11 #
12
13 ##
14 ## Make sure you read README.win32 *before* you mess with anything here!
15 ##
16
17 ##
18 ## Build configuration.  Edit the values below to suit your needs.
19 ##
20
21 #
22 # Set these to wherever you want "dmake install" to put your
23 # newly built perl.
24 #
25 INST_DRV        *= c:
26 INST_TOP        *= $(INST_DRV)\perl
27
28 #
29 # Comment this out if you DON'T want your perl installation to be versioned.
30 # This means that the new installation will overwrite any files from the
31 # old installation at the same INST_TOP location.  Leaving it enabled is
32 # the safest route, as perl adds the extra version directory to all the
33 # locations it installs files to.  If you disable it, an alternative
34 # versioned installation can be obtained by setting INST_TOP above to a
35 # path that includes an arbitrary version string.
36 #
37 INST_VER        *= \5.8.0
38
39 #
40 # Comment this out if you DON'T want your perl installation to have
41 # architecture specific components.  This means that architecture-
42 # specific files will be installed along with the architecture-neutral
43 # files.  Leaving it enabled is safer and more flexible, in case you
44 # want to build multiple flavors of perl and install them together in
45 # the same location.  Commenting it out gives you a simpler
46 # installation that is easier to understand for beginners.
47 #
48 INST_ARCH       *= \$(ARCHNAME)
49
50 #
51 # uncomment to enable multiple interpreters.  This is need for fork()
52 # emulation and for thread support.
53 #
54 USE_MULTI       *= define
55
56 #
57 # Interpreter cloning/threads; now reasonably complete.
58 # This should be enabled to get the fork() emulation.  
59 # This needs USE_MULTI above.
60 #
61 USE_ITHREADS    *= define
62
63 #
64 # uncomment to enable the implicit "host" layer for all system calls
65 # made by perl.  This needs USE_MULTI above.  
66 # This is also needed to get fork().
67 #
68 USE_IMP_SYS     *= define
69
70 #
71 # Comment out next assign to disable perl's I/O subsystem and use compiler's 
72 # stdio for IO - depending on your compiler vendor and run time library you may 
73 # then get a number of fails from make test i.e. bugs - complain to them not us ;-). 
74 # You will also be unable to take full advantage of perl5.8's support for multiple 
75 # encodings and may see lower IO performance. You have been warned.
76 USE_PERLIO      = define
77
78 #
79 # WARNING! This option is deprecated and will eventually go away (enable
80 # USE_ITHREADS instead).
81 #
82 # uncomment to enable threads-capabilities.  This is incompatible with
83 # USE_ITHREADS, and is only here for people who may have come to rely
84 # on the experimental Thread support that was in 5.005.
85 #
86 #USE_5005THREADS        *= define
87
88 #
89 # uncomment exactly one of the following
90 #
91 # Visual C++ 2.x
92 #CCTYPE         *= MSVC20
93 # Visual C++ > 2.x and < 6.x
94 #CCTYPE         *= MSVC
95 # Visual C++ >= 6.x
96 CCTYPE          *= MSVC60
97 # Borland 5.02 or later
98 #CCTYPE         *= BORLAND
99 # mingw32+gcc-2.95.2 or better
100 #CCTYPE         *= GCC
101
102 #
103 # uncomment this if your Borland compiler is older than v5.4.
104 #BCCOLD = define
105 #
106 # uncomment this if you want to use Borland's VCL as your CRT
107 #BCCVCL = define
108
109 #
110 # uncomment this if you are compiling under Windows 95/98 and command.com
111 # (not needed if you're running under 4DOS/NT 6.01 or later)
112 #IS_WIN95       *= define
113
114 #
115 # uncomment next line if you want debug version of perl (big,slow)
116 # If not enabled, we automatically try to use maximum optimization
117 # with all compilers that are known to have a working optimizer.
118 #
119 #CFG            *= Debug
120
121 #
122 # uncomment to enable use of PerlCRT.DLL when using the Visual C compiler.
123 # It has patches that fix known bugs in older versions of MSVCRT.DLL.
124 # This currently requires VC 5.0 with Service Pack 3 or later.
125 # Get it from CPAN at http://www.cpan.org/authors/id/D/DO/DOUGL/
126 # and follow the directions in the package to install.
127 #
128 # Not recommended if you have VC 6.x and you're not running Windows 9x.
129 #
130 #USE_PERLCRT    *= define
131
132 #
133 # uncomment to enable linking with setargv.obj under the Visual C
134 # compiler. Setting this options enables perl to expand wildcards in
135 # arguments, but it may be harder to use alternate methods like
136 # File::DosGlob that are more powerful.  This option is supported only with
137 # Visual C.
138 #
139 #USE_SETARGV    *= define
140
141 #
142 # if you have the source for des_fcrypt(), uncomment this and make sure the
143 # file exists (see README.win32).  File should be located in the same
144 # directory as this file.
145 #
146 #CRYPT_SRC      *= fcrypt.c
147
148 #
149 # if you didn't set CRYPT_SRC and if you have des_fcrypt() available in a
150 # library, uncomment this, and make sure the library exists (see README.win32)
151 # Specify the full pathname of the library.
152 #
153 #CRYPT_LIB      *= fcrypt.lib
154
155 #
156 # set this if you wish to use perl's malloc
157 # WARNING: Turning this on/off WILL break binary compatibility with extensions
158 # you may have compiled with/without it.  Be prepared to recompile all
159 # extensions if you change the default.  Currently, this cannot be enabled
160 # if you ask for USE_IMP_SYS above.
161 #
162 #PERL_MALLOC    *= define
163
164 #
165 # set the install locations of the compiler include/libraries
166 # Running VCVARS32.BAT is *required* when using Visual C.
167 # Some versions of Visual C don't define MSVCDIR in the environment,
168 # so you may have to set CCHOME explicitly (spaces in the path name should
169 # not be quoted)
170 #
171 .IF "$(CCTYPE)" == "BORLAND"
172 CCHOME          *= C:\borland\bcc55
173 .ELIF "$(CCTYPE)" == "GCC"
174 CCHOME          *= C:\MinGW
175 .ELSE
176 CCHOME          *= $(MSVCDIR)
177 .ENDIF
178 CCINCDIR        *= $(CCHOME)\include
179 CCLIBDIR        *= $(CCHOME)\lib
180
181 #
182 # Additional compiler flags can be specified here.
183 #
184
185 #
186 # This should normally be disabled.  Adding -DPERL_POLLUTE enables support
187 # for old symbols by default, at the expense of extreme pollution.  You most
188 # probably just want to build modules that won't compile with
189 #         perl Makefile.PL POLLUTE=1
190 # instead of enabling this.  Please report such modules to the respective
191 # authors.
192 #
193 #BUILDOPT       += -DPERL_POLLUTE
194
195 #
196 # This should normally be disabled.  Enabling it will disable the File::Glob
197 # implementation of CORE::glob.
198 #
199 #BUILDOPT       += -DPERL_EXTERNAL_GLOB
200
201 #
202 # This should normally be disabled.  Enabling it causes perl to read scripts
203 # in text mode (which is the 5.005 behavior) and will break ByteLoader.
204 #BUILDOPT       += -DPERL_TEXTMODE_SCRIPTS
205
206 #
207 # specify semicolon-separated list of extra directories that modules will
208 # look for libraries (spaces in path names need not be quoted)
209 #
210 EXTRALIBDIRS    *=
211
212 #
213 # set this to point to cmd.exe (only needed if you use some
214 # alternate shell that doesn't grok cmd.exe style commands)
215 #
216 #SHELL          *= g:\winnt\system32\cmd.exe
217
218 #
219 # set this to your email address (perl will guess a value from
220 # from your loginname and your hostname, which may not be right)
221 #
222 #EMAIL          *=
223
224 ##
225 ## Build configuration ends.
226 ##
227
228 ##################### CHANGE THESE ONLY IF YOU MUST #####################
229
230 .IF "$(CRYPT_SRC)$(CRYPT_LIB)" == ""
231 D_CRYPT         = undef
232 .ELSE
233 D_CRYPT         = define
234 CRYPT_FLAG      = -DHAVE_DES_FCRYPT
235 .ENDIF
236
237 PERL_MALLOC     *= undef
238
239 USE_5005THREADS *= undef
240
241 .IF "$(USE_5005THREADS)" == "define"
242 USE_ITHREADS    != undef
243 .ENDIF
244
245 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      = ..\libperl59$(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      *= ..\perl59$(a)
644 PERLDLL         = ..\perl59.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                 ..\pad.c        \
670                 ..\perl.c       \
671                 ..\perlapi.c    \
672                 ..\perly.c      \
673                 ..\pp.c         \
674                 ..\pp_ctl.c     \
675                 ..\pp_hot.c     \
676                 ..\pp_pack.c    \
677                 ..\pp_sort.c    \
678                 ..\pp_sys.c     \
679                 ..\reentr.c     \
680                 ..\regcomp.c    \
681                 ..\regexec.c    \
682                 ..\run.c        \
683                 ..\scope.c      \
684                 ..\sv.c         \
685                 ..\taint.c      \
686                 ..\toke.c       \
687                 ..\universal.c  \
688                 ..\utf8.c       \
689                 ..\util.c       \
690                 ..\xsutils.c
691
692 EXTRACORE_SRC   += perllib.c
693
694 .IF "$(PERL_MALLOC)" == "define"
695 EXTRACORE_SRC   += ..\malloc.c
696 .ENDIF
697
698 EXTRACORE_SRC   += ..\perlio.c
699
700 WIN32_SRC       =               \
701                 .\win32.c       \
702                 .\win32sck.c    \
703                 .\win32thread.c
704
705 # We need this for miniperl build unless we override canned 
706 # config.h #define building mini\*
707 #.IF "$(USE_PERLIO)" == "define"
708 WIN32_SRC       += .\win32io.c
709 #.ENDIF
710
711 .IF "$(CRYPT_SRC)" != ""
712 WIN32_SRC       += .\$(CRYPT_SRC)
713 .ENDIF
714
715 DLL_SRC         = $(DYNALOADER).c
716
717 X2P_SRC         =               \
718                 ..\x2p\a2p.c    \
719                 ..\x2p\hash.c   \
720                 ..\x2p\str.c    \
721                 ..\x2p\util.c   \
722                 ..\x2p\walk.c
723
724 CORE_NOCFG_H    =               \
725                 ..\av.h         \
726                 ..\cop.h        \
727                 ..\cv.h         \
728                 ..\dosish.h     \
729                 ..\embed.h      \
730                 ..\form.h       \
731                 ..\gv.h         \
732                 ..\handy.h      \
733                 ..\hv.h         \
734                 ..\iperlsys.h   \
735                 ..\mg.h         \
736                 ..\nostdio.h    \
737                 ..\op.h         \
738                 ..\opcode.h     \
739                 ..\perl.h       \
740                 ..\perlapi.h    \
741                 ..\perlsdio.h   \
742                 ..\perlsfio.h   \
743                 ..\perly.h      \
744                 ..\pp.h         \
745                 ..\proto.h      \
746                 ..\regexp.h     \
747                 ..\scope.h      \
748                 ..\sv.h         \
749                 ..\thread.h     \
750                 ..\unixish.h    \
751                 ..\utf8.h       \
752                 ..\util.h       \
753                 ..\warnings.h   \
754                 ..\XSUB.h       \
755                 ..\EXTERN.h     \
756                 ..\perlvars.h   \
757                 ..\intrpvar.h   \
758                 ..\thrdvar.h    \
759                 .\include\dirent.h      \
760                 .\include\netdb.h       \
761                 .\include\sys\socket.h  \
762                 .\win32.h
763
764 CORE_H          = $(CORE_NOCFG_H) .\config.h
765
766 MICROCORE_OBJ   = $(MICROCORE_SRC:db:+$(o))
767 CORE_OBJ        = $(MICROCORE_OBJ) $(EXTRACORE_SRC:db:+$(o))
768 WIN32_OBJ       = $(WIN32_SRC:db:+$(o))
769 MINICORE_OBJ    = $(MINIDIR)\{$(MICROCORE_OBJ:f) miniperlmain$(o) perlio$(o)}
770 MINIWIN32_OBJ   = $(MINIDIR)\{$(WIN32_OBJ:f)}
771 MINI_OBJ        = $(MINICORE_OBJ) $(MINIWIN32_OBJ)
772 DLL_OBJ         = $(DLL_SRC:db:+$(o))
773 X2P_OBJ         = $(X2P_SRC:db:+$(o))
774
775 PERLDLL_OBJ     = $(CORE_OBJ)
776 PERLEXE_OBJ     = perlmain$(o)
777
778 PERLDLL_OBJ     += $(WIN32_OBJ) $(DLL_OBJ)
779
780 .IF "$(USE_SETARGV)" != ""
781 SETARGV_OBJ     = setargv$(o)
782 .ENDIF
783
784 DYNAMIC_EXT     = Socket IO Fcntl Opcode SDBM_File POSIX attrs Thread B re \
785                 Data/Dumper Devel/Peek ByteLoader Devel/DProf File/Glob \
786                 Sys/Hostname Storable Filter/Util/Call Encode \
787                 Digest/MD5 PerlIO/scalar MIME/Base64 Time/HiRes \
788                 Unicode/Normalize
789 STATIC_EXT      = DynaLoader
790 NONXS_EXT       = Errno
791
792 DYNALOADER      = $(EXTDIR)\DynaLoader\DynaLoader
793
794 POD2HTML        = $(PODDIR)\pod2html
795 POD2MAN         = $(PODDIR)\pod2man
796 POD2LATEX       = $(PODDIR)\pod2latex
797 POD2TEXT        = $(PODDIR)\pod2text
798
799 # vars must be separated by "\t+~\t+", since we're using the tempfile
800 # version of config_sh.pl (we were overflowing someone's buffer by
801 # trying to fit them all on the command line)
802 #       -- BKS 10-17-1999
803 CFG_VARS        =                                       \
804                 INST_DRV=$(INST_DRV)            ~       \
805                 INST_TOP=$(INST_TOP:s/\/\\/)    ~       \
806                 INST_VER=$(INST_VER:s/\/\\/)    ~       \
807                 INST_ARCH=$(INST_ARCH)          ~       \
808                 archname=$(ARCHNAME)            ~       \
809                 cc=$(CC)                        ~       \
810                 ld=$(LINK32)                    ~       \
811                 ccflags=$(OPTIMIZE) $(DEFINES) $(BUILDOPT)      ~       \
812                 cf_email=$(EMAIL)               ~       \
813                 d_crypt=$(D_CRYPT)              ~       \
814                 d_mymalloc=$(PERL_MALLOC)       ~       \
815                 libs=$(LIBFILES:f)              ~       \
816                 incpath=$(CCINCDIR:s/\/\\/)     ~       \
817                 libperl=$(PERLIMPLIB:f)         ~       \
818                 libpth=$(CCLIBDIR:s/\/\\/);$(EXTRALIBDIRS:s/\/\\/)      ~       \
819                 libc=$(LIBC)                    ~       \
820                 make=dmake                      ~       \
821                 _o=$(o)                         ~       \
822                 obj_ext=$(o)                    ~       \
823                 _a=$(a)                         ~       \
824                 lib_ext=$(a)                    ~       \
825                 static_ext=$(STATIC_EXT)        ~       \
826                 use5005threads=$(USE_5005THREADS)       ~       \
827                 useithreads=$(USE_ITHREADS)     ~       \
828                 usethreads=$(USE_5005THREADS)   ~       \
829                 usemultiplicity=$(USE_MULTI)    ~       \
830                 useperlio=$(USE_PERLIO)         ~       \
831                 LINK_FLAGS=$(LINK_FLAGS:s/\/\\/)                ~       \
832                 optimize=$(OPTIMIZE)
833
834 #
835 # set up targets varying between Win95 and WinNT builds
836 #
837
838 .IF "$(IS_WIN95)" == "define"
839 MK2             = .\makefile.95
840 RIGHTMAKE       = __switch_makefiles
841 NOOP            = @rem
842 .ELSE
843 MK2             = __not_needed
844 RIGHTMAKE       =
845 .ENDIF
846
847 #
848 # Top targets
849 #
850
851 all : .\config.h $(GLOBEXE) $(MINIPERL) $(MK2)          \
852         $(RIGHTMAKE) $(MINIMOD) $(CONFIGPM) $(PERLEXE)  \
853         $(X2P) Extensions
854
855 $(DYNALOADER)$(o) : $(DYNALOADER).c $(CORE_H) $(EXTDIR)\DynaLoader\dlutils.c
856
857 #----------------------------------------------------------------
858
859 #-------------------- BEGIN Win95 SPECIFIC ----------------------
860
861 # this target is a jump-off point for Win95
862 #  1. it switches to the Win95-specific makefile if it exists
863 #     (__do_switch_makefiles)
864 #  2. it prints a message when the Win95-specific one finishes (__done)
865 #  3. it then kills this makefile by trying to make __no_such_target
866
867 __switch_makefiles: __do_switch_makefiles __done __no_such_target
868
869 __do_switch_makefiles:
870 .IF "$(NOTFIRST)" != "true"
871         if exist $(MK2) $(MAKE:s/-S//) -f $(MK2) $(MAKETARGETS) NOTFIRST=true
872 .ELSE
873         $(NOOP)
874 .ENDIF
875
876 .IF "$(NOTFIRST)" != "true"
877 __done:
878         @echo Build process complete. Ignore any errors after this message.
879         @echo Run "dmake test" to test and "dmake install" to install
880
881 .ELSE
882 # dummy targets for Win95-specific makefile
883
884 __done:
885         $(NOOP)
886
887 __no_such_target:
888         $(NOOP)
889
890 .ENDIF
891
892 # This target is used to generate the new makefile (.\makefile.95) for Win95
893
894 .\makefile.95: .\makefile.mk
895         $(MINIPERL) genmk95.pl makefile.mk $(MK2)
896
897 #--------------------- END Win95 SPECIFIC ---------------------
898
899 # a blank target for when builds don't need to do certain things
900 # this target added for Win95 port but used to keep the WinNT port able to
901 # use this file
902 __not_needed:
903         $(NOOP)
904
905 $(GLOBEXE) : perlglob$(o)
906 .IF "$(CCTYPE)" == "BORLAND"
907         $(CC) -c -w -v -tWM -I"$(CCINCDIR)" perlglob.c
908         $(LINK32) -Tpe -ap $(BLINK_FLAGS) c0x32$(o) perlglob$(o) \
909             "$(CCLIBDIR)\32BIT\wildargs$(o)",$@,,import32.lib cw32mt.lib,
910 .ELIF "$(CCTYPE)" == "GCC"
911         $(LINK32) $(BLINK_FLAGS) -mconsole -o $@ perlglob$(o) $(LIBFILES)
912 .ELSE
913         $(LINK32) $(BLINK_FLAGS) $(LIBFILES) -out:$@ -subsystem:$(SUBSYS) \
914             perlglob$(o) setargv$(o)
915 .ENDIF
916
917 perlglob$(o)  : perlglob.c
918
919 config.w32 : $(CFGSH_TMPL)
920         copy $(CFGSH_TMPL) config.w32
921
922 .\config.h : $(CFGH_TMPL) $(CORE_NOCFG_H)
923         -del /f config.h
924         copy $(CFGH_TMPL) config.h
925
926 ..\config.sh : config.w32 $(MINIPERL) config_sh.PL FindExt.pm
927         $(MINIPERL) -I..\lib config_sh.PL --cfgsh-option-file \
928             $(mktmp $(CFG_VARS)) config.w32 > ..\config.sh
929
930 # this target is for when changes to the main config.sh happen
931 # edit config.{b,v,g}c and make this target once for each supported
932 # compiler (e.g. `dmake CCTYPE=BORLAND regen_config_h`)
933 regen_config_h:
934         perl config_sh.PL --cfgsh-option-file $(mktmp $(CFG_VARS)) \
935             $(CFGSH_TMPL) > ..\config.sh
936         -cd .. && del /f perl.exe
937         -cd .. && del /f perl*.dll
938         cd .. && perl configpm
939         -del /f $(CFGH_TMPL)
940         -mkdir $(COREDIR)
941         -perl config_h.PL "INST_VER=$(INST_VER)"
942         rename config.h $(CFGH_TMPL)
943
944 $(CONFIGPM) : $(MINIPERL) ..\config.sh config_h.PL ..\minimod.pl
945         cd .. && miniperl configpm
946         if exist lib\* $(RCOPY) lib\*.* ..\lib\$(NULL)
947         $(XCOPY) ..\*.h $(COREDIR)\*.*
948         $(XCOPY) *.h $(COREDIR)\*.*
949         $(XCOPY) ..\ext\re\re.pm $(LIBDIR)\*.*
950         $(RCOPY) include $(COREDIR)\*.*
951         $(MINIPERL) -I..\lib config_h.PL "INST_VER=$(INST_VER)" \
952             || $(MAKE) $(MAKEMACROS) $(CONFIGPM) $(MAKEFILE)
953
954 $(MINIPERL) : $(MINIDIR) $(MINI_OBJ) $(CRTIPMLIBS)
955 .IF "$(CCTYPE)" == "BORLAND"
956         $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
957             @$(mktmp c0x32$(o) $(MINI_OBJ:s,\,\\),$(@:s,\,\\),,$(LIBFILES),)
958 .ELIF "$(CCTYPE)" == "GCC"
959         $(LINK32) -v -mconsole -o $@ $(BLINK_FLAGS) \
960             $(mktmp $(LKPRE) $(MINI_OBJ:s,\,\\) $(LIBFILES) $(LKPOST))
961 .ELSE
962         $(LINK32) -subsystem:console -out:$@ \
963             @$(mktmp $(BLINK_FLAGS) $(LIBFILES) $(MINI_OBJ:s,\,\\))
964 .ENDIF
965
966 $(MINIDIR) :
967         if not exist "$(MINIDIR)" mkdir "$(MINIDIR)"
968
969 $(MINICORE_OBJ) : $(CORE_NOCFG_H)
970         $(CC) -c $(CFLAGS) -DPERL_EXTERNAL_GLOB $(OBJOUT_FLAG)$@ ..\$(*B).c
971
972 $(MINIWIN32_OBJ) : $(CORE_NOCFG_H)
973         $(CC) -c $(CFLAGS) $(OBJOUT_FLAG)$@ $(*B).c
974
975 # -DPERL_IMPLICIT_SYS needs C++ for perllib.c
976 # rules wrapped in .IFs break Win9X build (we end up with unbalanced []s unless
977 # unless the .IF is true), so instead we use a .ELSE with the default.
978 # This is the only file that depends on perlhost.h, vmem.h, and vdir.h
979
980 perllib$(o)     : perllib.c .\perlhost.h .\vdir.h .\vmem.h
981 .IF "$(USE_IMP_SYS)" == "define"
982         $(CC) -c -I. $(CFLAGS_O) $(CXX_FLAG) $(OBJOUT_FLAG)$@ perllib.c
983 .ELSE
984         $(CC) -c -I. $(CFLAGS_O) $(OBJOUT_FLAG)$@ perllib.c
985 .ENDIF
986
987 # 1. we don't want to rebuild miniperl.exe when config.h changes
988 # 2. we don't want to rebuild miniperl.exe with non-default config.h
989 $(MINI_OBJ)     : $(CORE_NOCFG_H)
990
991 $(WIN32_OBJ)    : $(CORE_H)
992 $(CORE_OBJ)     : $(CORE_H)
993 $(DLL_OBJ)      : $(CORE_H)
994 $(X2P_OBJ)      : $(CORE_H)
995
996 perldll.def : $(MINIPERL) $(CONFIGPM) ..\global.sym ..\pp.sym ..\makedef.pl
997         $(MINIPERL) -w ..\makedef.pl PLATFORM=win32 $(OPTIMIZE) $(DEFINES) \
998         $(BUILDOPT) CCTYPE=$(CCTYPE) > perldll.def
999
1000 $(PERLDLL): perldll.def $(PERLDLL_OBJ) $(PERLDLL_RES)
1001 .IF "$(CCTYPE)" == "BORLAND"
1002         $(LINK32) -Tpd -ap $(BLINK_FLAGS) \
1003             @$(mktmp c0d32$(o) $(PERLDLL_OBJ:s,\,\\)\n \
1004                 $@,\n \
1005                 $(LIBFILES)\n \
1006                 perldll.def\n)
1007         $(IMPLIB) $*.lib $@
1008 .ELIF "$(CCTYPE)" == "GCC"
1009         $(LINK32) -mdll -o $@ -Wl,--base-file -Wl,perl.base $(BLINK_FLAGS) \
1010             $(mktmp $(LKPRE) $(PERLDLL_OBJ:s,\,\\) $(LIBFILES) $(LKPOST))
1011         dlltool --output-lib $(PERLIMPLIB) \
1012                 --dllname $(PERLDLL:b).dll \
1013                 --def perldll.def \
1014                 --base-file perl.base \
1015                 --output-exp perl.exp
1016         $(LINK32) -mdll -o $@ $(BLINK_FLAGS) \
1017             $(mktmp $(LKPRE) $(PERLDLL_OBJ:s,\,\\) $(LIBFILES) \
1018                 perl.exp $(LKPOST))
1019 .ELSE
1020         $(LINK32) -dll -def:perldll.def -out:$@ \
1021             @$(mktmp -base:0x28000000 $(BLINK_FLAGS) $(DELAYLOAD) $(LIBFILES) \
1022                 $(PERLDLL_RES) $(PERLDLL_OBJ:s,\,\\))
1023 .ENDIF
1024         $(XCOPY) $(PERLIMPLIB) $(COREDIR)
1025
1026 $(MINIMOD) : $(MINIPERL) ..\minimod.pl
1027         cd .. && miniperl minimod.pl > lib\ExtUtils\Miniperl.pm
1028
1029 ..\x2p\a2p$(o) : ..\x2p\a2p.c
1030         $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\a2p.c
1031
1032 ..\x2p\hash$(o) : ..\x2p\hash.c
1033         $(CC) -I..\x2p  $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\hash.c
1034
1035 ..\x2p\str$(o) : ..\x2p\str.c
1036         $(CC) -I..\x2p  $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\str.c
1037
1038 ..\x2p\util$(o) : ..\x2p\util.c
1039         $(CC) -I..\x2p  $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\util.c
1040
1041 ..\x2p\walk$(o) : ..\x2p\walk.c
1042         $(CC) -I..\x2p  $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\walk.c
1043
1044 $(X2P) : $(MINIPERL) $(X2P_OBJ)
1045         $(MINIPERL) ..\x2p\find2perl.PL
1046         $(MINIPERL) ..\x2p\s2p.PL
1047 .IF "$(CCTYPE)" == "BORLAND"
1048         $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
1049             @$(mktmp c0x32$(o) $(X2P_OBJ:s,\,\\),$(@:s,\,\\),,$(LIBFILES),)
1050 .ELIF "$(CCTYPE)" == "GCC"
1051         $(LINK32) -v -o $@ $(BLINK_FLAGS) \
1052             $(mktmp $(LKPRE) $(X2P_OBJ:s,\,\\) $(LIBFILES) $(LKPOST))
1053 .ELSE
1054         $(LINK32) -subsystem:console -out:$@ \
1055             @$(mktmp $(BLINK_FLAGS) $(LIBFILES) $(X2P_OBJ:s,\,\\))
1056 .ENDIF
1057
1058 perlmain.c : runperl.c
1059         copy runperl.c perlmain.c
1060
1061 perlmain$(o) : perlmain.c
1062         $(CC) $(CFLAGS_O) -UPERLDLL $(OBJOUT_FLAG)$@ -c perlmain.c
1063
1064 $(PERLEXE): $(PERLDLL) $(CONFIGPM) $(PERLEXE_OBJ) $(PERLEXE_RES)
1065 .IF "$(CCTYPE)" == "BORLAND"
1066         $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
1067             @$(mktmp c0x32$(o) $(PERLEXE_OBJ:s,\,\\)\n \
1068             $(@:s,\,\\),\n \
1069             $(PERLIMPLIB) $(LIBFILES)\n)
1070 .ELIF "$(CCTYPE)" == "GCC"
1071         $(LINK32) -mconsole -o $@ $(BLINK_FLAGS)  \
1072             $(PERLEXE_OBJ) $(PERLIMPLIB) $(LIBFILES)
1073 .ELSE
1074         $(LINK32) -subsystem:console -out:$@ -stack:0x1000000 $(BLINK_FLAGS) \
1075             $(LIBFILES) $(PERLEXE_OBJ) $(SETARGV_OBJ) $(PERLIMPLIB) $(PERLEXE_RES)
1076 .ENDIF
1077         copy $(PERLEXE) $(WPERLEXE)
1078         $(MINIPERL) -I..\lib bin\exetype.pl $(WPERLEXE) WINDOWS
1079         copy splittree.pl ..
1080         $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR)
1081
1082 $(DYNALOADER).c: $(MINIPERL) $(EXTDIR)\DynaLoader\dl_win32.xs $(CONFIGPM)
1083         if not exist $(AUTODIR) mkdir $(AUTODIR)
1084         cd $(EXTDIR)\$(*B) && ..\$(MINIPERL) -I..\..\lib $(*B)_pm.PL
1085         cd $(EXTDIR)\$(*B) && ..\$(MINIPERL) -I..\..\lib XSLoader_pm.PL
1086         $(XCOPY) $(EXTDIR)\$(*B)\$(*B).pm $(LIBDIR)\$(NULL)
1087         $(XCOPY) $(EXTDIR)\$(*B)\XSLoader.pm $(LIBDIR)\$(NULL)
1088         cd $(EXTDIR)\$(*B) && $(XSUBPP) dl_win32.xs > $(*B).c
1089         $(XCOPY) $(EXTDIR)\$(*B)\dlutils.c .
1090
1091 $(EXTDIR)\DynaLoader\dl_win32.xs: dl_win32.xs
1092         copy dl_win32.xs $(EXTDIR)\DynaLoader\dl_win32.xs
1093
1094 #----------------------------------------------------------------------------------
1095 Extensions : buildext.pl $(PERLDEP) $(CONFIGPM)
1096         $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR)
1097
1098 Extensions_clean :
1099         -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) clean
1100
1101 #----------------------------------------------------------------------------------
1102
1103
1104 doc: $(PERLEXE)
1105         $(PERLEXE) -I..\lib ..\installhtml --podroot=.. --htmldir=./html \
1106             --podpath=pod:lib:ext:utils --htmlroot="file://$(INST_HTML:s,:,|,)"\
1107             --libpod=perlfunc:perlguts:perlvar:perlrun:perlop --recurse
1108
1109 utils: $(PERLEXE) $(X2P)
1110         cd ..\utils && $(MAKE) PERL=$(MINIPERL)
1111         copy ..\README.aix      ..\pod\perlaix.pod
1112         copy ..\README.amiga    ..\pod\perlamiga.pod
1113         copy ..\README.apollo   ..\pod\perlapollo.pod
1114         copy ..\README.beos     ..\pod\perlbeos.pod
1115         copy ..\README.bs2000   ..\pod\perlbs2000.pod
1116         copy ..\README.ce       ..\pod\perlce.pod
1117         copy ..\README.cygwin   ..\pod\perlcygwin.pod
1118         copy ..\README.dgux     ..\pod\perldgux.pod
1119         copy ..\README.dos      ..\pod\perldos.pod
1120         copy ..\README.epoc     ..\pod\perlepoc.pod
1121         copy ..\README.freebsd  ..\pod\perlfreebsd.pod
1122         copy ..\README.hpux     ..\pod\perlhpux.pod
1123         copy ..\README.hurd     ..\pod\perlhurd.pod
1124         copy ..\README.irix     ..\pod\perlirix.pod
1125         copy ..\README.machten  ..\pod\perlmachten.pod
1126         copy ..\README.macos    ..\pod\perlmacos.pod
1127         copy ..\README.mint     ..\pod\perlmint.pod
1128         copy ..\README.mpeix    ..\pod\perlmpeix.pod
1129         copy ..\README.netware  ..\pod\perlnetware.pod
1130         copy ..\README.os2      ..\pod\perlos2.pod
1131         copy ..\README.os390    ..\pod\perlos390.pod
1132         copy ..\README.os400    ..\pod\perlos400.pod
1133         copy ..\README.plan9    ..\pod\perlplan9.pod
1134         copy ..\README.qnx      ..\pod\perlqnx.pod
1135         copy ..\README.solaris  ..\pod\perlsolaris.pod
1136         copy ..\README.tru64    ..\pod\perltru64.pod
1137         copy ..\README.uts      ..\pod\perluts.pod
1138         copy ..\README.vmesa    ..\pod\perlvmesa.pod
1139         copy ..\vms\perlvms.pod ..\pod\perlvms.pod
1140         copy ..\README.vos      ..\pod\perlvos.pod
1141         copy ..\README.win32    ..\pod\perlwin32.pod
1142         cd ..\pod && $(MAKE) -f ..\win32\pod.mak converters
1143         cd ..\lib && $(PERLEXE) lib_pm.PL
1144         $(PERLEXE) $(PL2BAT) $(UTILS)
1145
1146 distclean: clean
1147         -del /f $(MINIPERL) $(PERLEXE) $(PERLDLL) $(GLOBEXE) \
1148                 $(PERLIMPLIB) ..\miniperl$(a) $(MINIMOD)
1149         -del /f *.def *.map
1150         -del /f $(EXTDIR)\DynaLoader\dl_win32.xs
1151         -del /f $(LIBDIR)\.exists $(LIBDIR)\attrs.pm $(LIBDIR)\DynaLoader.pm
1152         -del /f $(LIBDIR)\XSLoader.pm
1153         -del /f $(LIBDIR)\Fcntl.pm $(LIBDIR)\IO.pm $(LIBDIR)\Opcode.pm
1154         -del /f $(LIBDIR)\ops.pm $(LIBDIR)\Safe.pm
1155         -del /f $(LIBDIR)\SDBM_File.pm $(LIBDIR)\Socket.pm $(LIBDIR)\POSIX.pm
1156         -del /f $(LIBDIR)\B.pm $(LIBDIR)\O.pm $(LIBDIR)\re.pm
1157         -del /f $(LIBDIR)\Data\Dumper.pm $(LIBDIR)\ByteLoader.pm
1158         -del /f $(LIBDIR)\PerlIO\scalar.pm
1159         -del /f $(LIBDIR)\Devel\Peek.pm $(LIBDIR)\Devel\DProf.pm
1160         -del /f $(LIBDIR)\File\Glob.pm
1161         -del /f $(LIBDIR)\Storable.pm
1162         -del /f $(LIBDIR)\Filter\Util\Call.pm
1163         -del /f $(LIBDIR)\Digest\MD5.pm
1164         -del /f $(LIBDIR)\MIME\Base64.pm
1165         -del /f $(LIBDIR)\MIME\QuotedPrint.pm
1166         -del /f $(LIBDIR)\Time\HiRes.pm
1167         -del /f $(LIBDIR)\List\Util.pm
1168         -del /f $(LIBDIR)\Scalar\Util.pm
1169         -del /f $(LIBDIR)\Unicode\Normalize.pm
1170         -if exist $(LIBDIR)\IO rmdir /s /q $(LIBDIR)\IO || rmdir /s $(LIBDIR)\IO
1171         -if exist $(LIBDIR)\B rmdir /s /q $(LIBDIR)\B || rmdir /s $(LIBDIR)\B
1172         -if exist $(LIBDIR)\Data rmdir /s /q $(LIBDIR)\Data || rmdir /s $(LIBDIR)\Data
1173         -if exist $(LIBDIR)\Filter\Util\Call rmdir /s /q $(LIBDIR)\Filter\Util\Call || rmdir /s $(LIBDIR)\Filter
1174         -if exist $(LIBDIR)\Filter\Util rmdir /s /q $(LIBDIR)\Filter\Util || rmdir /s $(LIBDIR)\Filter
1175         -if exist $(LIBDIR)\Digest rmdir /s /q $(LIBDIR)\Digest || rmdir /s $(LIBDIR)\Digest
1176         -if exist $(LIBDIR)\MIME rmdir /s /q $(LIBDIR)\MIME || rmdir /s $(LIBDIR)\MIME
1177         -if exist $(LIBDIR)\List rmdir /s /q $(LIBDIR)\List || rmdir /s $(LIBDIR)\List
1178         -if exist $(LIBDIR)\Scalar rmdir /s /q $(LIBDIR)\Scalar || rmdir /s $(LIBDIR)\Scalar
1179         -cd $(PODDIR) && del /f *.html *.bat checkpods \
1180             perlaix.pod perlamiga.pod perlapollo.pod \
1181             perlbeos.pod perlbs2000.pod perlce.pod perlcygwin.pod perldgux.pod \
1182             perldos.pod perlepoc.pod perlfreebsd.pod perlhpux.pod perlhurd.pod \
1183             perlirix.pod perlmachten.pod perlmint.pod \
1184             perlmacos.pod perlmpeix.pod perlnetware.pod \
1185             perlos2.pod perlos390.pod perlos400.pod \
1186             perlplan9.pod perlqnx.pod \
1187             perlsolaris.pod perltru64.pod perluts.pod \
1188             perlvmesa.pod perlvms.pod perlvos.pod \
1189             perlwin32.pod pod2html pod2latex pod2man pod2text pod2usage \
1190             podchecker podselect
1191         -cd ..\utils && del /f h2ph splain perlbug pl2pm c2ph pstruct h2xs \
1192             perldoc perlivp dprofpp perlcc libnetcfg enc2xs piconv *.bat
1193         -cd ..\x2p && del /f find2perl s2p psed *.bat
1194         -del /f ..\config.sh ..\splittree.pl perlmain.c dlutils.c config.h.new
1195         -del /f $(CONFIGPM)
1196         -del /f bin\*.bat
1197         -cd .. && del /s *$(a) *.map *.pdb *.ilk *.bs *$(o) .exists pm_to_blib
1198         -cd $(EXTDIR) && del /s *.def Makefile Makefile.old
1199         -if exist $(AUTODIR) rmdir /s /q $(AUTODIR) || rmdir /s $(AUTODIR)
1200         -if exist $(COREDIR) rmdir /s /q $(COREDIR) || rmdir /s $(COREDIR)
1201
1202 install : all installbare installhtml
1203
1204 installbare : $(RIGHTMAKE) utils
1205         $(PERLEXE) ..\installperl
1206         if exist $(WPERLEXE) $(XCOPY) $(WPERLEXE) $(INST_BIN)\*.*
1207         $(XCOPY) $(GLOBEXE) $(INST_BIN)\*.*
1208         $(XCOPY) bin\*.bat $(INST_SCRIPT)\*.*
1209
1210 installhtml : doc
1211         $(RCOPY) html\*.* $(INST_HTML)\*.*
1212
1213 inst_lib : $(CONFIGPM)
1214         copy splittree.pl ..
1215         $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR)
1216         $(RCOPY) ..\lib $(INST_LIB)\*.*
1217
1218 minitest : $(MINIPERL) $(GLOBEXE) $(CONFIGPM) utils
1219         $(XCOPY) $(MINIPERL) ..\t\perl.exe
1220 .IF "$(CCTYPE)" == "BORLAND"
1221         $(XCOPY) $(GLOBBAT) ..\t\$(NULL)
1222 .ELSE
1223         $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1224 .ENDIF
1225         attrib -r ..\t\*.*
1226         copy test ..\t
1227         cd ..\t && \
1228         $(MINIPERL) -I..\lib test base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t
1229
1230 test-prep : all utils
1231         $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1232         $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1233 .IF "$(CCTYPE)" == "BORLAND"
1234         $(XCOPY) $(GLOBBAT) ..\t\$(NULL)
1235 .ELSE
1236         $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1237 .ENDIF
1238
1239 test : $(RIGHTMAKE) test-prep
1240         cd ..\t && $(PERLEXE) -I..\lib harness
1241
1242 test-notty : test-prep
1243         set PERL_SKIP_TTY_TEST=1 && \
1244             cd ..\t && $(PERLEXE) -I.\lib harness
1245
1246 test-wide : test-prep
1247         set HARNESS_PERL_SWITCHES=-C && \
1248             cd ..\t && $(PERLEXE) -I..\lib harness
1249
1250 test-wide-notty : test-prep
1251         set PERL_SKIP_TTY_TEST=1 && \
1252             set HARNESS_PERL_SWITCHES=-C && \
1253             cd ..\t && $(PERLEXE) -I..\lib harness
1254
1255 _test : $(RIGHTMAKE)
1256         $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1257         $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1258 .IF "$(CCTYPE)" == "BORLAND"
1259         $(XCOPY) $(GLOBBAT) ..\t\$(NULL)
1260 .ELSE
1261         $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1262 .ENDIF
1263         cd ..\t && $(PERLEXE) -I..\lib harness
1264
1265 clean : Extensions_clean
1266         -@erase miniperlmain$(o)
1267         -@erase $(MINIPERL)
1268         -@erase perlglob$(o)
1269         -@erase perlmain$(o)
1270         -@erase config.w32
1271         -@erase /f config.h
1272         -@erase $(GLOBEXE)
1273         -@erase $(PERLEXE)
1274         -@erase $(WPERLEXE)
1275         -@erase $(PERLDLL)
1276         -@erase $(CORE_OBJ)
1277         -if exist $(MINIDIR) rmdir /s /q $(MINIDIR) || rmdir /s $(MINIDIR)
1278         -@erase $(WIN32_OBJ)
1279         -@erase $(DLL_OBJ)
1280         -@erase $(X2P_OBJ)
1281         -@erase ..\*$(o) ..\*$(a) ..\*.exp *$(o) *$(a) *.exp *.res
1282         -@erase ..\t\*.exe ..\t\*.dll ..\t\*.bat
1283         -@erase ..\x2p\*.exe ..\x2p\*.bat
1284         -@erase *.ilk
1285         -@erase *.pdb
1286
1287 # Handy way to run perlbug -ok without having to install and run the
1288 # installed perlbug. We don't re-run the tests here - we trust the user.
1289 # Please *don't* use this unless all tests pass.
1290 # If you want to report test failures, use "dmake nok" instead.
1291 ok: utils
1292         $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)"
1293
1294 okfile: utils
1295         $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)" -F perl.ok
1296
1297 nok: utils
1298         $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)"
1299
1300 nokfile: utils
1301         $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)" -F perl.nok