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