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