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