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