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