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