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