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