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