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