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