775f0be81b9695f0328f0ee11a337ac04e0c7028
[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.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 "$(USE_MULTI)" == "define"
324 ARCHNAME        = MSWin32-$(PROCESSOR_ARCHITECTURE)-multi
325 !ELSE
326 !IF "$(USE_PERLIO)" == "define"
327 ARCHNAME        = MSWin32-$(PROCESSOR_ARCHITECTURE)-perlio
328 !ELSE
329 ARCHNAME        = MSWin32-$(PROCESSOR_ARCHITECTURE)
330 !ENDIF
331 !ENDIF
332
333 !IF "$(USE_PERLIO)" == "define"
334 BUILDOPT        = $(BUILDOPT) -DUSE_PERLIO
335 !ENDIF
336
337 !IF "$(USE_ITHREADS)" == "define"
338 ARCHNAME        = $(ARCHNAME)-thread
339 !ENDIF
340
341 # Visual Studio 98 and .NET 2003 specific
342 # VC++ 6.x and 7.x can load DLL's on demand.  Makes the test suite run in
343 # about 10% less time.  (The free version of 7.x can't do this, however.)
344 # The addition of VC++ 8.x is currently an educated guess.
345 !IF "$(CCTYPE)" == "MSVC60" || "$(CCTYPE)" == "MSVC70" || "$(CCTYPE)" == "MSVC80"
346 DELAYLOAD       = -DELAYLOAD:ws2_32.dll -DELAYLOAD:shell32.dll delayimp.lib
347 !ENDIF
348
349 ARCHDIR         = ..\lib\$(ARCHNAME)
350 COREDIR         = ..\lib\CORE
351 AUTODIR         = ..\lib\auto
352 LIBDIR          = ..\lib
353 EXTDIR          = ..\ext
354 PODDIR          = ..\pod
355 EXTUTILSDIR     = $(LIBDIR)\ExtUtils
356
357 #
358 INST_SCRIPT     = $(INST_TOP)$(INST_VER)\bin
359 INST_BIN        = $(INST_SCRIPT)$(INST_ARCH)
360 INST_LIB        = $(INST_TOP)$(INST_VER)\lib
361 INST_ARCHLIB    = $(INST_LIB)$(INST_ARCH)
362 INST_COREDIR    = $(INST_ARCHLIB)\CORE
363 INST_POD        = $(INST_LIB)\pod
364 INST_HTML       = $(INST_TOP)$(INST_VER)\html
365
366 #
367 # Programs to compile, build .lib files and link
368 #
369
370 CC              = cl
371 LINK32          = link
372 LIB32           = $(LINK32) -lib
373 RSC             = rc
374
375 #
376 # Options
377 #
378
379 INCLUDES        = -I$(COREDIR) -I.\include -I. -I..
380 #PCHFLAGS       = -Fpc:\temp\vcmoduls.pch -YX
381 DEFINES         = -DWIN32 -D_CONSOLE -DNO_STRICT $(CRYPT_FLAG)
382 LOCDEFS         = -DPERLDLL -DPERL_CORE
383 SUBSYS          = console
384 CXX_FLAG        = -TP -GX
385
386 !IF "$(USE_PERLCRT)" != "define"
387 LIBC    = msvcrt.lib
388 !ELSE
389 LIBC    = PerlCRT.lib
390 !ENDIF
391
392 !IF  "$(CFG)" == "Debug"
393 !  IF "$(CCTYPE)" == "MSVC20"
394 OPTIMIZE        = -Od -MD -Z7 -DDEBUGGING
395 !  ELSE
396 OPTIMIZE        = -Od -MD -Zi -DDEBUGGING
397 !  ENDIF
398 LINK_DBG        = -debug
399 !ELSE
400 OPTIMIZE        = -MD -Zi -DNDEBUG
401 # we enable debug symbols in release builds also
402 LINK_DBG        = -debug -opt:ref,icf
403 # you may want to enable this if you want COFF symbols in the executables
404 # in addition to the PDB symbols.  The default Dr. Watson that ships with
405 # Windows can use the the former but not latter.  The free WinDbg can be
406 # installed to get better stack traces from just the PDB symbols, so we
407 # avoid the bloat of COFF symbols by default.
408 #LINK_DBG       = $(LINK_DBG) -debugtype:both
409 !  IF "$(WIN64)" == "define"
410 # enable Whole Program Optimizations (WPO) and Link Time Code Generation (LTCG)
411 OPTIMIZE        = $(OPTIMIZE) -Ox -GL
412 LINK_DBG        = $(LINK_DBG) -ltcg
413 !  ELSE
414 # -O1 yields smaller code, which turns out to be faster than -O2 on x86
415 OPTIMIZE        = $(OPTIMIZE) -O1
416 #OPTIMIZE       = $(OPTIMIZE) -O2
417 !  ENDIF
418 !ENDIF
419
420 !IF "$(WIN64)" == "define"
421 DEFINES         = $(DEFINES) -DWIN64 -DCONSERVATIVE
422 OPTIMIZE        = $(OPTIMIZE) -Wp64 -Op
423 !ENDIF
424
425 # the string-pooling option -Gf is deprecated in VC++ 7.x and will be removed
426 # in later versions, so use read-only string-pooling (-GF) instead
427 !IF "$(CCTYPE)" == "MSVC70FREE" || "$(CCTYPE)" == "MSVC70" || "$(CCTYPE)" == "MSVC80FREE" || "$(CCTYPE)" == "MSVC80"
428 STRPOOL         = -GF
429 !ELSE
430 STRPOOL         = -Gf
431 !ENDIF
432
433 !IF "$(USE_PERLCRT)" != "define"
434 BUILDOPT        = $(BUILDOPT) -DPERL_MSVCRT_READFIX
435 !ENDIF
436
437 LIBBASEFILES    = $(CRYPT_LIB) \
438                 oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.lib \
439                 comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \
440                 netapi32.lib uuid.lib ws2_32.lib mpr.lib winmm.lib \
441                 version.lib
442
443 # win64 doesn't have some libs
444 !IF "$(WIN64)" != "define"
445 LIBBASEFILES    = $(LIBBASEFILES) odbc32.lib odbccp32.lib
446 !ENDIF
447
448 # we add LIBC here, since we may be using PerlCRT.dll
449 LIBFILES        = $(LIBBASEFILES) $(LIBC)
450
451 EXTRACFLAGS     = -nologo $(STRPOOL) -W3
452 CFLAGS          = $(EXTRACFLAGS) $(INCLUDES) $(DEFINES) $(LOCDEFS) \
453                 $(PCHFLAGS) $(OPTIMIZE)
454 LINK_FLAGS      = -nologo -nodefaultlib $(LINK_DBG) \
455                 -libpath:"$(INST_COREDIR)" \
456                 -machine:$(PROCESSOR_ARCHITECTURE)
457 OBJOUT_FLAG     = -Fo
458 EXEOUT_FLAG     = -Fe
459
460 CFLAGS_O        = $(CFLAGS) $(BUILDOPT)
461
462 #################### do not edit below this line #######################
463 ############# NO USER-SERVICEABLE PARTS BEYOND THIS POINT ##############
464
465 o = .obj
466
467 #
468 # Rules
469 #
470
471 .SUFFIXES : .c $(o) .dll .lib .exe .rc .res
472
473 .c$(o):
474         $(CC) -c -I$(<D) $(CFLAGS_O) $(OBJOUT_FLAG)$@ $<
475
476 .y.c:
477         $(NOOP)
478
479 $(o).dll:
480         $(LINK32) -dll -subsystem:windows -implib:$(*B).lib -def:$(*B).def \
481             -out:$@ $(LINK_FLAGS) $(LIBFILES) $< $(LIBPERL)
482
483 .rc.res:
484         $(RSC) -i.. $<
485
486 #
487 # various targets
488
489 # makedef.pl must be updated if this changes, and this should normally
490 # only change when there is an incompatible revision of the public API.
491 PERLIMPLIB      = ..\perl59.lib
492 PERLDLL         = ..\perl59.dll
493
494 MINIPERL        = ..\miniperl.exe
495 MINIDIR         = .\mini
496 PERLEXE         = ..\perl.exe
497 WPERLEXE        = ..\wperl.exe
498 GLOBEXE         = ..\perlglob.exe
499 CONFIGPM        = ..\lib\Config.pm ..\lib\Config_heavy.pl
500 MINIMOD         = ..\lib\ExtUtils\Miniperl.pm
501 X2P             = ..\x2p\a2p.exe
502   
503 # With the .NET 2.0 SDK, setargs.obj is not available with the .NET SDK.  It
504 # only comes with Visual Studio 2005.
505 !IF "$(CCTYPE)" != "MSVC80FREE"
506 GLOBEXEBUILD         = 
507 !ENDIF
508
509 # Unicode data files generated by mktables
510 UNIDATAFILES     = ..\lib\unicore\Canonical.pl ..\lib\unicore\Exact.pl \
511                    ..\lib\unicore\Properties ..\lib\unicore\Decomposition.pl \
512                    ..\lib\unicore\CombiningClass.pl ..\lib\unicore\Name.pl \
513                    ..\lib\unicore\PVA.pl
514
515 # Directories of Unicode data files generated by mktables
516 UNIDATADIR1     = ..\lib\unicore\To
517 UNIDATADIR2     = ..\lib\unicore\lib
518
519 PERLEXE_ICO     = .\perlexe.ico
520 PERLEXE_RES     = .\perlexe.res
521 PERLDLL_RES     =
522
523 # Nominate a target which causes extensions to be re-built
524 # This used to be $(PERLEXE), but at worst it is the .dll that they depend
525 # on and really only the interface - i.e. the .def file used to export symbols
526 # from the .dll
527 PERLDEP         = perldll.def
528
529 PL2BAT          = bin\pl2bat.pl
530 GLOBBAT         = bin\perlglob.bat
531
532 UTILS           =                       \
533                 ..\utils\h2ph           \
534                 ..\utils\splain         \
535                 ..\utils\dprofpp        \
536                 ..\utils\perlbug        \
537                 ..\utils\pl2pm          \
538                 ..\utils\c2ph           \
539                 ..\utils\pstruct        \
540                 ..\utils\h2xs           \
541                 ..\utils\perldoc        \
542                 ..\utils\perlcc         \
543                 ..\utils\perlivp        \
544                 ..\utils\libnetcfg      \
545                 ..\utils\enc2xs         \
546                 ..\utils\piconv         \
547                 ..\utils\config_data    \
548                 ..\utils\corelist       \
549                 ..\utils\cpan           \
550                 ..\utils\xsubpp         \
551                 ..\utils\prove          \
552                 ..\utils\ptar           \
553                 ..\utils\ptardiff       \
554                 ..\utils\shasum         \
555                 ..\utils\instmodsh      \
556                 ..\pod\checkpods        \
557                 ..\pod\pod2html         \
558                 ..\pod\pod2latex        \
559                 ..\pod\pod2man          \
560                 ..\pod\pod2text         \
561                 ..\pod\pod2usage        \
562                 ..\pod\podchecker       \
563                 ..\pod\podselect        \
564                 ..\x2p\find2perl        \
565                 ..\x2p\psed             \
566                 ..\x2p\s2p              \
567                 bin\exetype.pl          \
568                 bin\runperl.pl          \
569                 bin\pl2bat.pl           \
570                 bin\perlglob.pl         \
571                 bin\search.pl
572
573 MAKE            = nmake -nologo
574 MAKE_BARE       = nmake
575
576 !IF "$(WIN64)" == "define"
577 CFGSH_TMPL      = config.vc64
578 CFGH_TMPL       = config_H.vc64
579 !ELSE
580 CFGSH_TMPL      = config.vc
581 CFGH_TMPL       = config_H.vc
582 !ENDIF
583
584 XCOPY           = xcopy /f /r /i /d /y
585 RCOPY           = xcopy /f /r /i /e /d /y
586 NOOP            = @rem
587 NULL            =
588
589 DEL             = del
590
591 #
592 # filenames given to xsubpp must have forward slashes (since it puts
593 # full pathnames in #line strings)
594 XSUBPP          = ..\$(MINIPERL) -I..\..\lib ..\$(EXTUTILSDIR)\xsubpp \
595                 -C++ -prototypes
596
597 MICROCORE_SRC   =               \
598                 ..\av.c         \
599                 ..\deb.c        \
600                 ..\doio.c       \
601                 ..\doop.c       \
602                 ..\dump.c       \
603                 ..\globals.c    \
604                 ..\gv.c         \
605                 ..\hv.c         \
606                 ..\locale.c     \
607                 ..\mathoms.c    \
608                 ..\mg.c         \
609                 ..\numeric.c    \
610                 ..\op.c         \
611                 ..\pad.c        \
612                 ..\perl.c       \
613                 ..\perlapi.c    \
614                 ..\perly.c      \
615                 ..\pp.c         \
616                 ..\pp_ctl.c     \
617                 ..\pp_hot.c     \
618                 ..\pp_pack.c    \
619                 ..\pp_sort.c    \
620                 ..\pp_sys.c     \
621                 ..\reentr.c     \
622                 ..\regcomp.c    \
623                 ..\regexec.c    \
624                 ..\run.c        \
625                 ..\scope.c      \
626                 ..\sv.c         \
627                 ..\taint.c      \
628                 ..\toke.c       \
629                 ..\universal.c  \
630                 ..\utf8.c       \
631                 ..\util.c       \
632                 ..\xsutils.c
633
634 EXTRACORE_SRC   = $(EXTRACORE_SRC) perllib.c
635
636 !IF "$(PERL_MALLOC)" == "define"
637 EXTRACORE_SRC   = $(EXTRACORE_SRC) ..\malloc.c
638 !ENDIF
639
640 EXTRACORE_SRC   = $(EXTRACORE_SRC) ..\perlio.c
641
642 WIN32_SRC       =               \
643                 .\win32.c       \
644                 .\win32sck.c    \
645                 .\win32thread.c
646
647 # We need this for miniperl build unless we override canned 
648 # config.h #define building mini\*
649 #!IF "$(USE_PERLIO)" == "define"
650 WIN32_SRC       = $(WIN32_SRC) .\win32io.c
651 #!ENDIF
652
653 !IF "$(CRYPT_SRC)" != ""
654 WIN32_SRC       = $(WIN32_SRC) .\$(CRYPT_SRC)
655 !ENDIF
656
657 DLL_SRC         = $(DYNALOADER).c
658
659 X2P_SRC         =               \
660                 ..\x2p\a2p.c    \
661                 ..\x2p\hash.c   \
662                 ..\x2p\str.c    \
663                 ..\x2p\util.c   \
664                 ..\x2p\walk.c
665
666 CORE_NOCFG_H    =               \
667                 ..\av.h         \
668                 ..\cop.h        \
669                 ..\cv.h         \
670                 ..\dosish.h     \
671                 ..\embed.h      \
672                 ..\form.h       \
673                 ..\gv.h         \
674                 ..\handy.h      \
675                 ..\hv.h         \
676                 ..\iperlsys.h   \
677                 ..\mg.h         \
678                 ..\nostdio.h    \
679                 ..\op.h         \
680                 ..\opcode.h     \
681                 ..\perl.h       \
682                 ..\perlapi.h    \
683                 ..\perlsdio.h   \
684                 ..\perlsfio.h   \
685                 ..\perly.h      \
686                 ..\pp.h         \
687                 ..\proto.h      \
688                 ..\regcomp.h    \
689                 ..\regexp.h     \
690                 ..\scope.h      \
691                 ..\sv.h         \
692                 ..\thread.h     \
693                 ..\unixish.h    \
694                 ..\utf8.h       \
695                 ..\util.h       \
696                 ..\warnings.h   \
697                 ..\XSUB.h       \
698                 ..\EXTERN.h     \
699                 ..\perlvars.h   \
700                 ..\intrpvar.h   \
701                 ..\thrdvar.h    \
702                 .\include\dirent.h      \
703                 .\include\netdb.h       \
704                 .\include\sys\socket.h  \
705                 .\win32.h
706
707 CORE_H          = $(CORE_NOCFG_H) .\config.h
708
709 MICROCORE_OBJ   = $(MICROCORE_SRC:.c=.obj)
710 CORE_OBJ        = $(MICROCORE_OBJ) $(EXTRACORE_SRC:.c=.obj)
711 WIN32_OBJ       = $(WIN32_SRC:.c=.obj)
712 MINICORE_OBJ    = $(MICROCORE_OBJ:..\=.\mini\)  \
713                   $(MINIDIR)\miniperlmain$(o)   \
714                   $(MINIDIR)\perlio$(o)
715 MINIWIN32_OBJ   = $(WIN32_OBJ:.\=.\mini\)
716 MINI_OBJ        = $(MINICORE_OBJ) $(MINIWIN32_OBJ)
717 DLL_OBJ         = $(DLL_SRC:.c=.obj)
718 X2P_OBJ         = $(X2P_SRC:.c=.obj)
719
720 PERLDLL_OBJ     = $(CORE_OBJ)
721 PERLEXE_OBJ     = perlmain$(o)
722
723 PERLDLL_OBJ     = $(PERLDLL_OBJ) $(WIN32_OBJ) $(DLL_OBJ)
724 #PERLEXE_OBJ    = $(PERLEXE_OBJ) $(WIN32_OBJ) $(DLL_OBJ)
725
726 !IF "$(USE_SETARGV)" != ""
727 SETARGV_OBJ     = setargv$(o)
728 !ENDIF
729
730 # specify static extensions here
731 #STATIC_EXT     = Cwd Compress/Zlib
732 STATIC_EXT      = 
733
734 DYNALOADER              = $(EXTDIR)\DynaLoader\DynaLoader
735 SOCKET                  = $(EXTDIR)\Socket\Socket
736 FCNTL                   = $(EXTDIR)\Fcntl\Fcntl
737 OPCODE                  = $(EXTDIR)\Opcode\Opcode
738 SDBM_FILE               = $(EXTDIR)\SDBM_File\SDBM_File
739 IO                      = $(EXTDIR)\IO\IO
740 POSIX                   = $(EXTDIR)\POSIX\POSIX
741 ATTRS                   = $(EXTDIR)\attrs\attrs
742 THREAD                  = $(EXTDIR)\Thread\Thread
743 B                       = $(EXTDIR)\B\B
744 RE                      = $(EXTDIR)\re\re
745 DUMPER                  = $(EXTDIR)\Data\Dumper\Dumper
746 ERRNO                   = $(EXTDIR)\Errno\Errno
747 PEEK                    = $(EXTDIR)\Devel\Peek\Peek
748 BYTELOADER              = $(EXTDIR)\ByteLoader\ByteLoader
749 DPROF                   = $(EXTDIR)\Devel\DProf\DProf
750 GLOB                    = $(EXTDIR)\File\Glob\Glob
751 HOSTNAME                = $(EXTDIR)\Sys\Hostname\Hostname
752 STORABLE                = $(EXTDIR)\Storable\Storable
753 FILTER                  = $(EXTDIR)\Filter\Util\Call\Call
754 ENCODE                  = $(EXTDIR)\Encode\Encode
755 MD5                     = $(EXTDIR)\Digest\MD5\MD5
756 SHA                     = $(EXTDIR)\Digest\SHA\SHA
757 PERLIOSCALAR            = $(EXTDIR)\PerlIO\scalar\scalar
758 MIMEBASE64              = $(EXTDIR)\MIME\Base64\Base64
759 TIMEHIRES               = $(EXTDIR)\Time\HiRes\HiRes
760 CWD                     = $(EXTDIR)\Cwd\Cwd
761 LISTUTIL                = $(EXTDIR)\List\Util\Util
762 HASHUTIL                = $(EXTDIR)\Hash\Util\Util
763 PERLIOVIA               = $(EXTDIR)\PerlIO\via\via
764 XSAPITEST               = $(EXTDIR)\XS\APItest\APItest
765 XSTYPEMAP               = $(EXTDIR)\XS\Typemap\Typemap
766 UNICODENORMALIZE        = $(EXTDIR)\Unicode\Normalize\Normalize
767 MATHBIGINTFASTCALC      = $(EXTDIR)\Math\BigInt\FastCalc\FastCalc
768 COMPRESSZLIB            = $(EXTDIR)\Compress\Zlib\Zlib
769 WIN32_DIR               = ext\Win32
770
771 SOCKET_DLL              = $(AUTODIR)\Socket\Socket.dll
772 FCNTL_DLL               = $(AUTODIR)\Fcntl\Fcntl.dll
773 OPCODE_DLL              = $(AUTODIR)\Opcode\Opcode.dll
774 SDBM_FILE_DLL           = $(AUTODIR)\SDBM_File\SDBM_File.dll
775 IO_DLL                  = $(AUTODIR)\IO\IO.dll
776 POSIX_DLL               = $(AUTODIR)\POSIX\POSIX.dll
777 ATTRS_DLL               = $(AUTODIR)\attrs\attrs.dll
778 THREAD_DLL              = $(AUTODIR)\Thread\Thread.dll
779 B_DLL                   = $(AUTODIR)\B\B.dll
780 DUMPER_DLL              = $(AUTODIR)\Data\Dumper\Dumper.dll
781 PEEK_DLL                = $(AUTODIR)\Devel\Peek\Peek.dll
782 RE_DLL                  = $(AUTODIR)\re\re.dll
783 BYTELOADER_DLL          = $(AUTODIR)\ByteLoader\ByteLoader.dll
784 DPROF_DLL               = $(AUTODIR)\Devel\DProf\DProf.dll
785 GLOB_DLL                = $(AUTODIR)\File\Glob\Glob.dll
786 HOSTNAME_DLL            = $(AUTODIR)\Sys\Hostname\Hostname.dll
787 STORABLE_DLL            = $(AUTODIR)\Storable\Storable.dll
788 FILTER_DLL              = $(AUTODIR)\Filter\Util\Call\Call.dll
789 ENCODE_DLL              = $(AUTODIR)\Encode\Encode.dll
790 MD5_DLL                 = $(AUTODIR)\Digest\MD5\MD5.dll
791 SHA_DLL                 = $(AUTODIR)\Digest\SHA\SHA.dll
792 PERLIOSCALAR_DLL        = $(AUTODIR)\PerlIO\scalar\scalar.dll
793 MIMEBASE64_DLL          = $(AUTODIR)\MIME\Base64\Base64.dll
794 TIMEHIRES_DLL           = $(AUTODIR)\Time\HiRes\HiRes.dll
795 CWD_DLL                 = $(AUTODIR)\Cwd\Cwd.dll
796 LISTUTIL_DLL            = $(AUTODIR)\List\Util\Util.dll
797 HASHUTIL_DLL            = $(AUTODIR)\HASH\Util\Util.dll
798 PERLIOVIA_DLL           = $(AUTODIR)\PerlIO\via\via.dll
799 XSAPITEST_DLL           = $(AUTODIR)\XS\APItest\APItest.dll
800 XSTYPEMAP_DLL           = $(AUTODIR)\XS\Typemap\Typemap.dll
801 UNICODENORMALIZE_DLL    = $(AUTODIR)\Unicode\Normalize\Normalize.dll
802 MATHBIGINTFASTCALC_DLL  = $(AUTODIR)\Math\BigInt\FastCalc\FastCalc.dll
803 COMPRESSZLIB_DLL        = $(AUTODIR)\Compress\Zlib\Zlib.dll
804 WIN32_DLL               = $(AUTODIR)\Win32\Win32.dll
805
806 EXTENSION_C     =               \
807                 $(SOCKET).c     \
808                 $(FCNTL).c      \
809                 $(OPCODE).c     \
810                 $(SDBM_FILE).c  \
811                 $(IO).c         \
812                 $(POSIX).c      \
813                 $(ATTRS).c      \
814                 $(THREAD).c     \
815                 $(RE).c         \
816                 $(DUMPER).c     \
817                 $(PEEK).c       \
818                 $(B).c          \
819                 $(BYTELOADER).c \
820                 $(DPROF).c      \
821                 $(GLOB).c       \
822                 $(HOSTNAME).c   \
823                 $(STORABLE).c   \
824                 $(FILTER).c     \
825                 $(ENCODE).c     \
826                 $(MD5).c        \
827                 $(SHA).c        \
828                 $(PERLIOSCALAR).c       \
829                 $(MIMEBASE64).c \
830                 $(TIMEHIRES).c  \
831                 $(CWD).c        \
832                 $(LISTUTIL).c   \
833                 $(HASHUTIL).c   \
834                 $(PERLIOVIA).c  \
835                 $(XSAPITEST).c  \
836                 $(XSTYPEMAP).c  \
837                 $(UNICODENORMALIZE).c   \
838                 $(MATHBIGINTFASTCALC).c \
839                 $(COMPRESSZLIB).c       \
840                 $(WIN32_DIR).c
841
842 EXTENSION_DLL   =               \
843                 $(SOCKET_DLL)   \
844                 $(FCNTL_DLL)    \
845                 $(OPCODE_DLL)   \
846                 $(SDBM_FILE_DLL)\
847                 $(IO_DLL)       \
848                 $(POSIX_DLL)    \
849                 $(ATTRS_DLL)    \
850                 $(DUMPER_DLL)   \
851                 $(PEEK_DLL)     \
852                 $(B_DLL)        \
853                 $(RE_DLL)       \
854                 $(THREAD_DLL)   \
855                 $(BYTELOADER_DLL)       \
856                 $(DPROF_DLL)    \
857                 $(GLOB_DLL)     \
858                 $(HOSTNAME_DLL) \
859                 $(STORABLE_DLL) \
860                 $(FILTER_DLL)   \
861                 $(ENCODE_DLL)   \
862                 $(MD5_DLL)      \
863                 $(SHA_DLL)      \
864                 $(PERLIOSCALAR_DLL) \
865                 $(MIMEBASE64_DLL) \
866                 $(TIMEHIRES_DLL)  \
867                 $(CWD_DLL)      \
868                 $(LISTUTIL_DLL) \
869                 $(HASHUTIL_DLL) \
870                 $(PERLIOVIA_DLL)        \
871                 $(XSAPITEST_DLL)        \
872                 $(XSTYPEMAP_DLL)        \
873                 $(UNICODENORMALIZE_DLL) \
874                 $(MATHBIGINTFASTCALC_DLL)       \
875                 $(COMPRESSZLIB_DLL)     \
876                 $(WIN32_DLL)
877
878 POD2HTML        = $(PODDIR)\pod2html
879 POD2MAN         = $(PODDIR)\pod2man
880 POD2LATEX       = $(PODDIR)\pod2latex
881 POD2TEXT        = $(PODDIR)\pod2text
882
883 CFG_VARS        =                                       \
884                 "INST_DRV=$(INST_DRV)"                  \
885                 "INST_TOP=$(INST_TOP)"                  \
886                 "INST_VER=$(INST_VER)"                  \
887                 "INST_ARCH=$(INST_ARCH)"                \
888                 "archname=$(ARCHNAME)"                  \
889                 "cc=$(CC)"                              \
890                 "ld=$(LINK32)"                          \
891                 "ccflags=$(EXTRACFLAGS) $(OPTIMIZE:"=\") $(DEFINES) $(BUILDOPT)"        \
892                 "cf_email=$(EMAIL)"                     \
893                 "d_crypt=$(D_CRYPT)"                    \
894                 "d_mymalloc=$(PERL_MALLOC)"             \
895                 "libs=$(LIBFILES)"                      \
896                 "incpath=$(CCINCDIR:"=\")"              \
897                 "libperl=$(PERLIMPLIB:..\=)"            \
898                 "libpth=$(CCLIBDIR:"=\");$(EXTRALIBDIRS:"=\")"  \
899                 "libc=$(LIBC)"                          \
900                 "make=$(MAKE_BARE)"                             \
901                 "static_ext=$(STATIC_EXT)"              \
902                 "usethreads=$(USE_ITHREADS)"            \
903                 "useithreads=$(USE_ITHREADS)"           \
904                 "usemultiplicity=$(USE_MULTI)"          \
905                 "useperlio=$(USE_PERLIO)"               \
906                 "uselargefiles=$(USE_LARGE_FILES)"      \
907                 "usesitecustomize=$(USE_SITECUST)"      \
908                 "LINK_FLAGS=$(LINK_FLAGS:"=\")"         \
909                 "optimize=$(OPTIMIZE:"=\")"
910
911 #
912 # Top targets
913 #
914
915 all : .\config.h $(GLOBEXE) $(MINIMOD) $(CONFIGPM) $(UNIDATAFILES) $(PERLEXE) \
916         $(X2P) Extensions
917         @echo   Everything is up to date. '$(MAKE_BARE) test' to run test suite.
918
919 $(DYNALOADER)$(o) : $(DYNALOADER).c $(CORE_H) $(EXTDIR)\DynaLoader\dlutils.c
920
921 #------------------------------------------------------------
922
923 $(GLOBEXE) : perlglob$(o)
924 !ifdef GLOBEXEBUILD
925         $(LINK32) $(LINK_FLAGS) $(LIBFILES) -out:$@ -subsystem:$(SUBSYS) \
926             perlglob$(o) setargv$(o)
927 !else
928         echo Skipping $(GLOBEXE)
929 !endif
930
931 perlglob$(o)  : perlglob.c
932
933 config.w32 : $(CFGSH_TMPL)
934         copy $(CFGSH_TMPL) config.w32
935
936 .\config.h : $(CFGH_TMPL)
937         -del /f config.h
938         copy $(CFGH_TMPL) config.h
939
940 ..\config.sh : config.w32 $(MINIPERL) config_sh.PL
941         $(MINIPERL) -I..\lib config_sh.PL $(CFG_VARS) config.w32 > ..\config.sh
942
943 # this target is for when changes to the main config.sh happen
944 # edit config.{b,v,g}c and make this target once for each supported
945 # compiler (e.g. `nmake CCTYPE=BORLAND regen_config_h`)
946 regen_config_h:
947         perl config_sh.PL $(CFG_VARS) $(CFGSH_TMPL) > ..\config.sh
948         cd ..
949         -del /f perl.exe perl*.dll
950         perl configpm
951         cd win32
952         -del /f $(CFGH_TMPL)
953         -mkdir $(COREDIR)
954         -perl config_h.PL "INST_VER=$(INST_VER)"
955         rename config.h $(CFGH_TMPL)
956
957 $(CONFIGPM) : $(MINIPERL) ..\config.sh config_h.PL ..\minimod.pl
958         cd ..
959         miniperl configpm
960         cd win32
961         if exist lib\* $(RCOPY) lib\*.* ..\lib\$(NULL)
962         $(XCOPY) ..\*.h $(COREDIR)\*.*
963         $(XCOPY) *.h $(COREDIR)\*.*
964         $(XCOPY) ..\ext\re\re.pm $(LIBDIR)\*.*
965         $(RCOPY) include $(COREDIR)\*.*
966         -$(MINIPERL) -I..\lib config_h.PL "INST_VER=$(INST_VER)"
967         if errorlevel 1 $(MAKE) /$(MAKEFLAGS) $(CONFIGPM)
968
969 $(MINIPERL) : $(MINIDIR) $(MINI_OBJ)
970         $(LINK32) -subsystem:console -out:$@ @<<
971         $(LINK_FLAGS) $(LIBFILES) $(MINI_OBJ)
972 <<
973
974 $(MINIDIR) :
975         if not exist "$(MINIDIR)" mkdir "$(MINIDIR)"
976
977 $(MINICORE_OBJ) : $(CORE_NOCFG_H)
978         $(CC) -c $(CFLAGS) -DPERL_EXTERNAL_GLOB $(OBJOUT_FLAG)$@ ..\$(*F).c
979
980 $(MINIWIN32_OBJ) : $(CORE_NOCFG_H)
981         $(CC) -c $(CFLAGS) $(OBJOUT_FLAG)$@ $(*F).c
982
983 # -DPERL_IMPLICIT_SYS needs C++ for perllib.c
984 # This is the only file that depends on perlhost.h, vmem.h, and vdir.h
985 !IF "$(USE_IMP_SYS)" == "define"
986 perllib$(o)     : perllib.c .\perlhost.h .\vdir.h .\vmem.h
987         $(CC) -c -I. $(CFLAGS_O) $(CXX_FLAG) $(OBJOUT_FLAG)$@ perllib.c
988 !ENDIF
989
990 # 1. we don't want to rebuild miniperl.exe when config.h changes
991 # 2. we don't want to rebuild miniperl.exe with non-default config.h
992 $(MINI_OBJ)     : $(CORE_NOCFG_H)
993
994 $(WIN32_OBJ)    : $(CORE_H)
995 $(CORE_OBJ)     : $(CORE_H)
996 $(DLL_OBJ)      : $(CORE_H)
997 $(X2P_OBJ)      : $(CORE_H)
998
999 perldll.def : $(MINIPERL) $(CONFIGPM) ..\global.sym ..\pp.sym ..\makedef.pl
1000         $(MINIPERL) -I..\lib buildext.pl --create-perllibst-h
1001         $(MINIPERL) -w ..\makedef.pl PLATFORM=win32 $(OPTIMIZE) $(DEFINES) $(BUILDOPT) \
1002             CCTYPE=$(CCTYPE) > perldll.def
1003
1004 $(PERLDLL): perldll.def $(PERLDLL_OBJ) $(PERLDLL_RES) Extensions_static
1005         $(LINK32) -dll -def:perldll.def -base:0x28000000 -out:$@ @Extensions_static @<<
1006                 $(LINK_FLAGS) $(DELAYLOAD) $(LIBFILES) $(PERLDLL_OBJ) $(PERLDLL_RES)
1007 <<
1008         $(XCOPY) $(PERLIMPLIB) $(COREDIR)
1009
1010 $(PERLEXE_ICO): $(MINIPERL) makeico.pl
1011         $(MINIPERL) makeico.pl > $@
1012
1013 $(PERLEXE_RES): perlexe.rc $(PERLEXE_ICO)
1014
1015 $(MINIMOD) : $(MINIPERL) ..\minimod.pl
1016         cd ..
1017         miniperl minimod.pl > lib\ExtUtils\Miniperl.pm
1018         cd win32
1019
1020 ..\x2p\a2p$(o) : ..\x2p\a2p.c
1021         $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\a2p.c
1022
1023 ..\x2p\hash$(o) : ..\x2p\hash.c
1024         $(CC) -I..\x2p  $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\hash.c
1025
1026 ..\x2p\str$(o) : ..\x2p\str.c
1027         $(CC) -I..\x2p  $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\str.c
1028
1029 ..\x2p\util$(o) : ..\x2p\util.c
1030         $(CC) -I..\x2p  $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\util.c
1031
1032 ..\x2p\walk$(o) : ..\x2p\walk.c
1033         $(CC) -I..\x2p  $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\walk.c
1034
1035 $(X2P) : $(MINIPERL) $(X2P_OBJ)
1036         $(MINIPERL) ..\x2p\find2perl.PL
1037         $(MINIPERL) ..\x2p\s2p.PL
1038         $(LINK32) -subsystem:console -out:$@ @<<
1039                 $(LINK_FLAGS) $(LIBFILES) $(X2P_OBJ)
1040 <<
1041
1042 perlmain.c : runperl.c
1043         copy runperl.c perlmain.c
1044
1045 perlmain$(o) : perlmain.c
1046         $(CC) $(CFLAGS_O) -UPERLDLL $(OBJOUT_FLAG)$@ -c perlmain.c
1047
1048 $(PERLEXE): $(PERLDLL) $(CONFIGPM) $(PERLEXE_OBJ) $(PERLEXE_RES)
1049         $(LINK32) -subsystem:console -out:$@ -stack:0x1000000 $(LINK_FLAGS) \
1050             $(LIBFILES) $(PERLEXE_OBJ) $(SETARGV_OBJ) $(PERLIMPLIB) $(PERLEXE_RES)
1051         copy $(PERLEXE) $(WPERLEXE)
1052         $(MINIPERL) -I..\lib bin\exetype.pl $(WPERLEXE) WINDOWS
1053         copy splittree.pl ..
1054         $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR)
1055
1056 $(DYNALOADER).c: $(MINIPERL) $(EXTDIR)\DynaLoader\dl_win32.xs $(CONFIGPM)
1057         if not exist $(AUTODIR) mkdir $(AUTODIR)
1058         cd $(EXTDIR)\$(*B)
1059         ..\$(MINIPERL) -I..\..\lib $(*B)_pm.PL
1060         ..\$(MINIPERL) -I..\..\lib XSLoader_pm.PL
1061         cd ..\..\win32
1062         $(XCOPY) $(EXTDIR)\$(*B)\$(*B).pm $(LIBDIR)\$(NULL)
1063         $(XCOPY) $(EXTDIR)\$(*B)\XSLoader.pm $(LIBDIR)\$(NULL)
1064         cd $(EXTDIR)\$(*B)
1065         $(XSUBPP) dl_win32.xs > $(*B).c
1066         cd ..\..\win32
1067
1068 $(EXTDIR)\DynaLoader\dl_win32.xs: dl_win32.xs
1069         copy dl_win32.xs $(EXTDIR)\DynaLoader\dl_win32.xs
1070
1071 #-------------------------------------------------------------------------------
1072 Extensions: buildext.pl $(PERLDEP) $(CONFIGPM)
1073         $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) --dynamic
1074         $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext --dynamic
1075
1076 Extensions_static : buildext.pl
1077         $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) --static
1078         $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext --static
1079         $(MINIPERL) -I..\lib buildext.pl --list-static-libs > Extensions_static
1080
1081 Extensions_clean: 
1082         -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) clean
1083         -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext clean
1084
1085 Extensions_realclean: 
1086         -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) realclean
1087         -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext realclean
1088
1089 #-------------------------------------------------------------------------------
1090
1091 doc: $(PERLEXE)
1092         $(PERLEXE) -I..\lib ..\installhtml --podroot=.. --htmldir=./html \
1093             --podpath=pod:lib:ext:utils --htmlroot="file://$(INST_HTML::=|)" \
1094             --libpod=perlfunc:perlguts:perlvar:perlrun:perlop --recurse
1095
1096 # Note that this next section is parsed (and regenerated) by pod/buildtoc
1097 # so please check that script before making structural changes here
1098
1099 utils: $(PERLEXE) $(X2P)
1100         cd ..\utils
1101         $(MAKE) PERL=$(MINIPERL)
1102         cd ..\pod
1103         copy ..\vms\perlvms.pod .\perlvms.pod
1104         copy ..\README.aix      ..\pod\perlaix.pod
1105         copy ..\README.amiga    ..\pod\perlamiga.pod
1106         copy ..\README.apollo   ..\pod\perlapollo.pod
1107         copy ..\README.beos     ..\pod\perlbeos.pod
1108         copy ..\README.bs2000   ..\pod\perlbs2000.pod
1109         copy ..\README.ce       ..\pod\perlce.pod
1110         copy ..\README.cn       ..\pod\perlcn.pod
1111         copy ..\README.cygwin   ..\pod\perlcygwin.pod
1112         copy ..\README.dgux     ..\pod\perldgux.pod
1113         copy ..\README.dos      ..\pod\perldos.pod
1114         copy ..\README.epoc     ..\pod\perlepoc.pod
1115         copy ..\README.freebsd  ..\pod\perlfreebsd.pod
1116         copy ..\README.hpux     ..\pod\perlhpux.pod
1117         copy ..\README.hurd     ..\pod\perlhurd.pod
1118         copy ..\README.irix     ..\pod\perlirix.pod
1119         copy ..\README.jp       ..\pod\perljp.pod
1120         copy ..\README.ko       ..\pod\perlko.pod
1121         copy ..\README.linux    ..\pod\perllinux.pod
1122         copy ..\README.machten  ..\pod\perlmachten.pod
1123         copy ..\README.macos    ..\pod\perlmacos.pod
1124         copy ..\README.macosx   ..\pod\perlmacosx.pod
1125         copy ..\README.mint     ..\pod\perlmint.pod
1126         copy ..\README.mpeix    ..\pod\perlmpeix.pod
1127         copy ..\README.netware  ..\pod\perlnetware.pod
1128         copy ..\README.openbsd  ..\pod\perlopenbsd.pod
1129         copy ..\README.os2      ..\pod\perlos2.pod
1130         copy ..\README.os390    ..\pod\perlos390.pod
1131         copy ..\README.os400    ..\pod\perlos400.pod
1132         copy ..\README.plan9    ..\pod\perlplan9.pod
1133         copy ..\README.qnx      ..\pod\perlqnx.pod
1134         copy ..\README.solaris  ..\pod\perlsolaris.pod
1135         copy ..\README.symbian  ..\pod\perlsymbian.pod
1136         copy ..\README.tru64    ..\pod\perltru64.pod
1137         copy ..\README.tw       ..\pod\perltw.pod
1138         copy ..\README.uts      ..\pod\perluts.pod
1139         copy ..\README.vmesa    ..\pod\perlvmesa.pod
1140         copy ..\README.vms      ..\pod\perlvms.pod
1141         copy ..\README.vos      ..\pod\perlvos.pod
1142         copy ..\README.win32    ..\pod\perlwin32.pod
1143         copy ..\pod\perl594delta.pod ..\pod\perldelta.pod
1144         $(MAKE) -f ..\win32\pod.mak converters
1145         cd ..\lib
1146         $(PERLEXE) lib_pm.PL
1147         cd ..\win32
1148         $(PERLEXE) $(PL2BAT) $(UTILS)
1149
1150 # Note that the pod cleanup in this next section is parsed (and regenerated
1151 # by pod/buildtoc so please check that script before making changes here
1152
1153 distclean: realclean
1154         -del /f $(MINIPERL) $(PERLEXE) $(PERLDLL) $(GLOBEXE) \
1155                 $(PERLIMPLIB) ..\miniperl.lib $(MINIMOD)
1156         -del /f *.def *.map
1157         -del /f $(EXTENSION_DLL)
1158         -del /f $(EXTENSION_C) $(DYNALOADER).c $(ERRNO).pm
1159         -del /f $(EXTDIR)\DynaLoader\dl_win32.xs
1160         -del /f $(EXTDIR)\DynaLoader\DynaLoader.pm
1161         -del /f $(EXTDIR)\DynaLoader\XSLoader.pm
1162         -del /f $(LIBDIR)\Encode.pm $(LIBDIR)\encoding.pm $(LIBDIR)\Errno.pm
1163         -del /f $(LIBDIR)\Config.pod $(LIBDIR)\POSIX.pod $(LIBDIR)\threads.pm
1164         -del /f $(LIBDIR)\.exists $(LIBDIR)\attrs.pm $(LIBDIR)\DynaLoader.pm
1165         -del /f $(LIBDIR)\XSLoader.pm $(LIBDIR)\lib.pm
1166         -del /f $(LIBDIR)\Fcntl.pm $(LIBDIR)\IO.pm $(LIBDIR)\Opcode.pm
1167         -del /f $(LIBDIR)\ops.pm $(LIBDIR)\Safe.pm
1168         -del /f $(LIBDIR)\SDBM_File.pm $(LIBDIR)\Socket.pm $(LIBDIR)\POSIX.pm
1169         -del /f $(LIBDIR)\B.pm $(LIBDIR)\O.pm $(LIBDIR)\re.pm
1170         -del /f $(LIBDIR)\ByteLoader.pm
1171         -del /f $(LIBDIR)\Devel\Peek.pm $(LIBDIR)\Devel\DProf.pm
1172         -del /f $(LIBDIR)\Devel\PPPort.pm
1173         -del /f $(LIBDIR)\File\Glob.pm
1174         -del /f $(LIBDIR)\Storable.pm
1175         -del /f $(LIBDIR)\Digest\MD5.pm
1176         -del /f $(LIBDIR)\Digest\SHA.pm
1177         -del /f $(LIBDIR)\PerlIO\encoding.pm
1178         -del /f $(LIBDIR)\PerlIO\scalar.pm
1179         -del /f $(LIBDIR)\PerlIO\via.pm
1180         -del /f $(LIBDIR)\Sys\Hostname.pm
1181         -del /f $(LIBDIR)\Thread\Signal.pm $(LIBDIR)\Thread\Specific.pm
1182         -del /f $(LIBDIR)\threads\shared.pm
1183         -del /f $(LIBDIR)\Time\HiRes.pm
1184         -del /f $(LIBDIR)\Unicode\Normalize.pm
1185         -del /f $(LIBDIR)\Math\BigInt\FastCalc.pm
1186         -del /f $(LIBDIR)\Win32.pm
1187         -if exist $(LIBDIR)\B rmdir /s /q $(LIBDIR)\B
1188         -if exist $(LIBDIR)\Compress rmdir /s /q $(LIBDIR)\Compress
1189         -if exist $(LIBDIR)\Data rmdir /s /q $(LIBDIR)\Data
1190         -if exist $(LIBDIR)\Encode rmdir /s /q $(LIBDIR)\Encode
1191         -if exist $(LIBDIR)\Filter\Util rmdir /s /q $(LIBDIR)\Filter\Util
1192         -if exist $(LIBDIR)\Hash rmdir /s /q $(LIBDIR)\Hash
1193         -if exist $(LIBDIR)\IO\Compress rmdir /s /q $(LIBDIR)\IO\Compress
1194         -if exist $(LIBDIR)\IO\Socket rmdir /s /q $(LIBDIR)\IO\Socket
1195         -if exist $(LIBDIR)\IO\Uncompress rmdir /s /q $(LIBDIR)\IO\Uncompress
1196         -if exist $(LIBDIR)\List rmdir /s /q $(LIBDIR)\List
1197         -if exist $(LIBDIR)\MIME rmdir /s /q $(LIBDIR)\MIME
1198         -if exist $(LIBDIR)\Scalar rmdir /s /q $(LIBDIR)\Scalar
1199         -if exist $(LIBDIR)\Sys rmdir /s /q $(LIBDIR)\Sys
1200         -if exist $(LIBDIR)\threads rmdir /s /q $(LIBDIR)\threads
1201         -if exist $(LIBDIR)\XS rmdir /s /q $(LIBDIR)\XS
1202         -cd $(PODDIR) && del /f *.html *.bat checkpods \
1203             perlaix.pod perlamiga.pod perlapollo.pod perlbeos.pod \
1204             perlbs2000.pod perlce.pod perlcn.pod perlcygwin.pod \
1205             perldelta.pod perldgux.pod perldos.pod perlepoc.pod \
1206             perlfreebsd.pod perlhpux.pod perlhurd.pod perlirix.pod \
1207             perljp.pod perlko.pod perllinux.pod perlmachten.pod \
1208             perlmacos.pod perlmacosx.pod perlmint.pod perlmpeix.pod \
1209             perlnetware.pod perlopenbsd.pod perlos2.pod perlos390.pod \
1210             perlos400.pod perlplan9.pod perlqnx.pod perlsolaris.pod \
1211             perlsymbian.pod perltru64.pod perltw.pod perluts.pod \
1212             perlvmesa.pod perlvms.pod perlvms.pod perlvos.pod perlwin32.pod \
1213             pod2html pod2latex pod2man pod2text pod2usage \
1214             podchecker podselect
1215         -cd ..\utils && del /f h2ph splain perlbug pl2pm c2ph pstruct h2xs \
1216             perldoc perlivp dprofpp perlcc libnetcfg enc2xs piconv cpan *.bat \
1217             xsubpp instmodsh prove ptar ptardiff shasum corelist config_data
1218         -cd ..\x2p && del /f find2perl s2p psed *.bat
1219         -del /f ..\config.sh ..\splittree.pl perlmain.c dlutils.c config.h.new
1220         -del /f $(CONFIGPM)
1221         -del /f bin\*.bat
1222         -del /f perllibst.h
1223         -del /f $(PERLEXE_ICO) perl.base
1224         -cd .. && del /s *.lib *.map *.pdb *.ilk *.bs *$(o) .exists pm_to_blib
1225         -cd $(EXTDIR) && del /s *.def Makefile Makefile.old
1226         -if exist $(AUTODIR) rmdir /s /q $(AUTODIR)
1227         -if exist $(COREDIR) rmdir /s /q $(COREDIR)
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) html\*.* $(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