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