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