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