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