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