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