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