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