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