This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Extend the test-reonly make target on windows (Yves Orton)
[perl5.git] / win32 / Makefile
1 #
2 # Makefile to build perl on Windows NT using Microsoft NMAKE.
3 # Supported compilers:
4 #       Visual C++ 2.0 through 7.0 (and possibly newer versions)
5 #       MS Platform SDK 64-bit compiler and tools
6 #
7 # This is set up to build a perl.exe that runs off a shared library
8 # (perl59.dll).  Also makes individual DLLs for the XS extensions.
9 #
10
11 ##
12 ## Make sure you read README.win32 *before* you mess with anything here!
13 ##
14
15 ##
16 ## Build configuration.  Edit the values below to suit your needs.
17 ##
18
19 #
20 # Set these to wherever you want "nmake install" to put your
21 # newly built perl.
22 #
23 INST_DRV        = c:
24 INST_TOP        = $(INST_DRV)\perl
25
26 #
27 # Comment this out if you DON'T want your perl installation to be versioned.
28 # This means that the new installation will overwrite any files from the
29 # old installation at the same INST_TOP location.  Leaving it enabled is
30 # the safest route, as perl adds the extra version directory to all the
31 # locations it installs files to.  If you disable it, an alternative
32 # versioned installation can be obtained by setting INST_TOP above to a
33 # path that includes an arbitrary version string.
34 #
35 #INST_VER       = \5.9.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 # various targets
523
524 # makedef.pl must be updated if this changes, and this should normally
525 # only change when there is an incompatible revision of the public API.
526 PERLIMPLIB      = ..\perl59.lib
527 PERLSTATICLIB   = ..\perl59s.lib
528 PERLDLL         = ..\perl59.dll
529
530 MINIPERL        = ..\miniperl.exe
531 MINIDIR         = .\mini
532 PERLEXE         = ..\perl.exe
533 WPERLEXE        = ..\wperl.exe
534 PERLEXESTATIC   = ..\perl-static.exe
535 GLOBEXE         = ..\perlglob.exe
536 CONFIGPM        = ..\lib\Config.pm ..\lib\Config_heavy.pl
537 MINIMOD         = ..\lib\ExtUtils\Miniperl.pm
538 X2P             = ..\x2p\a2p.exe
539 !IF "$(BUILD_STATIC)" == "define"
540 PERLSTATIC      = static
541 !ELSE
542 PERLSTATIC      = 
543 !ENDIF
544   
545 # Unicode data files generated by mktables
546 FIRSTUNIFILE     = ..\lib\unicore\Canonical.pl
547 UNIDATAFILES     = ..\lib\unicore\Canonical.pl ..\lib\unicore\Exact.pl \
548                    ..\lib\unicore\Properties ..\lib\unicore\Decomposition.pl \
549                    ..\lib\unicore\CombiningClass.pl ..\lib\unicore\Name.pl \
550                    ..\lib\unicore\PVA.pl
551
552 # Directories of Unicode data files generated by mktables
553 UNIDATADIR1     = ..\lib\unicore\To
554 UNIDATADIR2     = ..\lib\unicore\lib
555
556 PERLEXE_ICO     = .\perlexe.ico
557 PERLEXE_RES     = .\perlexe.res
558 PERLDLL_RES     =
559
560 # Nominate a target which causes extensions to be re-built
561 # This used to be $(PERLEXE), but at worst it is the .dll that they depend
562 # on and really only the interface - i.e. the .def file used to export symbols
563 # from the .dll
564 PERLDEP         = perldll.def
565
566 PL2BAT          = bin\pl2bat.pl
567 GLOBBAT         = bin\perlglob.bat
568
569 UTILS           =                       \
570                 ..\utils\h2ph           \
571                 ..\utils\splain         \
572                 ..\utils\dprofpp        \
573                 ..\utils\perlbug        \
574                 ..\utils\pl2pm          \
575                 ..\utils\c2ph           \
576                 ..\utils\pstruct        \
577                 ..\utils\h2xs           \
578                 ..\utils\perldoc        \
579                 ..\utils\perlivp        \
580                 ..\utils\libnetcfg      \
581                 ..\utils\enc2xs         \
582                 ..\utils\piconv         \
583                 ..\utils\config_data    \
584                 ..\utils\corelist       \
585                 ..\utils\cpan           \
586                 ..\utils\xsubpp         \
587                 ..\utils\prove          \
588                 ..\utils\ptar           \
589                 ..\utils\ptardiff       \
590                 ..\utils\shasum         \
591                 ..\utils\instmodsh      \
592                 ..\pod\checkpods        \
593                 ..\pod\pod2html         \
594                 ..\pod\pod2latex        \
595                 ..\pod\pod2man          \
596                 ..\pod\pod2text         \
597                 ..\pod\pod2usage        \
598                 ..\pod\podchecker       \
599                 ..\pod\podselect        \
600                 ..\x2p\find2perl        \
601                 ..\x2p\psed             \
602                 ..\x2p\s2p              \
603                 bin\exetype.pl          \
604                 bin\runperl.pl          \
605                 bin\pl2bat.pl           \
606                 bin\perlglob.pl         \
607                 bin\search.pl
608
609 MAKE            = nmake -nologo
610 MAKE_BARE       = nmake
611
612 !IF "$(WIN64)" == "define"
613 CFGSH_TMPL      = config.vc64
614 CFGH_TMPL       = config_H.vc64
615 !ELSE
616 CFGSH_TMPL      = config.vc
617 CFGH_TMPL       = config_H.vc
618 !ENDIF
619
620 XCOPY           = xcopy /f /r /i /d /y
621 RCOPY           = xcopy /f /r /i /e /d /y
622 NOOP            = @rem
623 NULL            =
624
625 DEL             = del
626
627 #
628 # filenames given to xsubpp must have forward slashes (since it puts
629 # full pathnames in #line strings)
630 XSUBPP          = ..\$(MINIPERL) -I..\..\lib ..\$(EXTUTILSDIR)\xsubpp \
631                 -C++ -prototypes
632
633 MICROCORE_SRC   =               \
634                 ..\av.c         \
635                 ..\deb.c        \
636                 ..\doio.c       \
637                 ..\doop.c       \
638                 ..\dump.c       \
639                 ..\globals.c    \
640                 ..\gv.c         \
641                 ..\hv.c         \
642                 ..\locale.c     \
643                 ..\mathoms.c    \
644                 ..\mg.c         \
645                 ..\numeric.c    \
646                 ..\op.c         \
647                 ..\pad.c        \
648                 ..\perl.c       \
649                 ..\perlapi.c    \
650                 ..\perly.c      \
651                 ..\pp.c         \
652                 ..\pp_ctl.c     \
653                 ..\pp_hot.c     \
654                 ..\pp_pack.c    \
655                 ..\pp_sort.c    \
656                 ..\pp_sys.c     \
657                 ..\reentr.c     \
658                 ..\regcomp.c    \
659                 ..\regexec.c    \
660                 ..\run.c        \
661                 ..\scope.c      \
662                 ..\sv.c         \
663                 ..\taint.c      \
664                 ..\toke.c       \
665                 ..\universal.c  \
666                 ..\utf8.c       \
667                 ..\util.c       \
668                 ..\xsutils.c
669
670 EXTRACORE_SRC   = $(EXTRACORE_SRC) perllib.c
671
672 !IF "$(PERL_MALLOC)" == "define"
673 EXTRACORE_SRC   = $(EXTRACORE_SRC) ..\malloc.c
674 !ENDIF
675
676 EXTRACORE_SRC   = $(EXTRACORE_SRC) ..\perlio.c
677
678 WIN32_SRC       =               \
679                 .\win32.c       \
680                 .\win32sck.c    \
681                 .\win32thread.c
682
683 # We need this for miniperl build unless we override canned 
684 # config.h #define building mini\*
685 #!IF "$(USE_PERLIO)" == "define"
686 WIN32_SRC       = $(WIN32_SRC) .\win32io.c
687 #!ENDIF
688
689 !IF "$(CRYPT_SRC)" != ""
690 WIN32_SRC       = $(WIN32_SRC) .\$(CRYPT_SRC)
691 !ENDIF
692
693 DLL_SRC         = $(DYNALOADER).c
694
695 X2P_SRC         =               \
696                 ..\x2p\a2p.c    \
697                 ..\x2p\hash.c   \
698                 ..\x2p\str.c    \
699                 ..\x2p\util.c   \
700                 ..\x2p\walk.c
701
702 CORE_NOCFG_H    =               \
703                 ..\av.h         \
704                 ..\cop.h        \
705                 ..\cv.h         \
706                 ..\dosish.h     \
707                 ..\embed.h      \
708                 ..\form.h       \
709                 ..\gv.h         \
710                 ..\handy.h      \
711                 ..\hv.h         \
712                 ..\iperlsys.h   \
713                 ..\mg.h         \
714                 ..\nostdio.h    \
715                 ..\op.h         \
716                 ..\opcode.h     \
717                 ..\perl.h       \
718                 ..\perlapi.h    \
719                 ..\perlsdio.h   \
720                 ..\perlsfio.h   \
721                 ..\perly.h      \
722                 ..\pp.h         \
723                 ..\proto.h      \
724                 ..\regcomp.h    \
725                 ..\regexp.h     \
726                 ..\scope.h      \
727                 ..\sv.h         \
728                 ..\thread.h     \
729                 ..\unixish.h    \
730                 ..\utf8.h       \
731                 ..\util.h       \
732                 ..\warnings.h   \
733                 ..\XSUB.h       \
734                 ..\EXTERN.h     \
735                 ..\perlvars.h   \
736                 ..\intrpvar.h   \
737                 ..\thrdvar.h    \
738                 .\include\dirent.h      \
739                 .\include\netdb.h       \
740                 .\include\sys\socket.h  \
741                 .\win32.h
742
743 CORE_H          = $(CORE_NOCFG_H) .\config.h
744
745 MICROCORE_OBJ   = $(MICROCORE_SRC:.c=.obj)
746 CORE_OBJ        = $(MICROCORE_OBJ) $(EXTRACORE_SRC:.c=.obj)
747 WIN32_OBJ       = $(WIN32_SRC:.c=.obj)
748 MINICORE_OBJ    = $(MICROCORE_OBJ:..\=.\mini\)  \
749                   $(MINIDIR)\miniperlmain$(o)   \
750                   $(MINIDIR)\perlio$(o)
751 MINIWIN32_OBJ   = $(WIN32_OBJ:.\=.\mini\)
752 MINI_OBJ        = $(MINICORE_OBJ) $(MINIWIN32_OBJ)
753 DLL_OBJ         = $(DLL_SRC:.c=.obj)
754 X2P_OBJ         = $(X2P_SRC:.c=.obj)
755
756 PERLDLL_OBJ     = $(CORE_OBJ)
757 PERLEXE_OBJ     = perlmain$(o)
758 PERLEXEST_OBJ   = perlmainst$(o)
759
760 PERLDLL_OBJ     = $(PERLDLL_OBJ) $(WIN32_OBJ) $(DLL_OBJ)
761
762 !IF "$(USE_SETARGV)" != ""
763 SETARGV_OBJ     = setargv$(o)
764 !ENDIF
765
766 # specify static extensions here
767 #STATIC_EXT     = Cwd Compress/Raw/Zlib
768 STATIC_EXT      = 
769
770 DYNALOADER              = $(EXTDIR)\DynaLoader\DynaLoader
771 SOCKET                  = $(EXTDIR)\Socket\Socket
772 FCNTL                   = $(EXTDIR)\Fcntl\Fcntl
773 OPCODE                  = $(EXTDIR)\Opcode\Opcode
774 SDBM_FILE               = $(EXTDIR)\SDBM_File\SDBM_File
775 IO                      = $(EXTDIR)\IO\IO
776 POSIX                   = $(EXTDIR)\POSIX\POSIX
777 ATTRS                   = $(EXTDIR)\attrs\attrs
778 THREAD                  = $(EXTDIR)\Thread\Thread
779 B                       = $(EXTDIR)\B\B
780 RE                      = $(EXTDIR)\re\re
781 DUMPER                  = $(EXTDIR)\Data\Dumper\Dumper
782 ERRNO                   = $(EXTDIR)\Errno\Errno
783 PEEK                    = $(EXTDIR)\Devel\Peek\Peek
784 BYTELOADER              = $(EXTDIR)\ByteLoader\ByteLoader
785 DPROF                   = $(EXTDIR)\Devel\DProf\DProf
786 GLOB                    = $(EXTDIR)\File\Glob\Glob
787 HOSTNAME                = $(EXTDIR)\Sys\Hostname\Hostname
788 STORABLE                = $(EXTDIR)\Storable\Storable
789 FILTER                  = $(EXTDIR)\Filter\Util\Call\Call
790 ENCODE                  = $(EXTDIR)\Encode\Encode
791 MD5                     = $(EXTDIR)\Digest\MD5\MD5
792 SHA                     = $(EXTDIR)\Digest\SHA\SHA
793 PERLIOSCALAR            = $(EXTDIR)\PerlIO\scalar\scalar
794 MIMEBASE64              = $(EXTDIR)\MIME\Base64\Base64
795 TIMEHIRES               = $(EXTDIR)\Time\HiRes\HiRes
796 CWD                     = $(EXTDIR)\Cwd\Cwd
797 LISTUTIL                = $(EXTDIR)\List\Util\Util
798 HASHUTIL                = $(EXTDIR)\Hash\Util\Util
799 PERLIOVIA               = $(EXTDIR)\PerlIO\via\via
800 XSAPITEST               = $(EXTDIR)\XS\APItest\APItest
801 XSTYPEMAP               = $(EXTDIR)\XS\Typemap\Typemap
802 UNICODENORMALIZE        = $(EXTDIR)\Unicode\Normalize\Normalize
803 MATHBIGINTFASTCALC      = $(EXTDIR)\Math\BigInt\FastCalc\FastCalc
804 COMPRESSZLIB            = $(EXTDIR)\Compress\Zlib\Zlib
805 WIN32_DIR               = ext\Win32
806 WIN32APIFILE            = ext\Win32API\File\File
807
808 SOCKET_DLL              = $(AUTODIR)\Socket\Socket.dll
809 FCNTL_DLL               = $(AUTODIR)\Fcntl\Fcntl.dll
810 OPCODE_DLL              = $(AUTODIR)\Opcode\Opcode.dll
811 SDBM_FILE_DLL           = $(AUTODIR)\SDBM_File\SDBM_File.dll
812 IO_DLL                  = $(AUTODIR)\IO\IO.dll
813 POSIX_DLL               = $(AUTODIR)\POSIX\POSIX.dll
814 ATTRS_DLL               = $(AUTODIR)\attrs\attrs.dll
815 THREAD_DLL              = $(AUTODIR)\Thread\Thread.dll
816 B_DLL                   = $(AUTODIR)\B\B.dll
817 DUMPER_DLL              = $(AUTODIR)\Data\Dumper\Dumper.dll
818 PEEK_DLL                = $(AUTODIR)\Devel\Peek\Peek.dll
819 RE_DLL                  = $(AUTODIR)\re\re.dll
820 BYTELOADER_DLL          = $(AUTODIR)\ByteLoader\ByteLoader.dll
821 DPROF_DLL               = $(AUTODIR)\Devel\DProf\DProf.dll
822 GLOB_DLL                = $(AUTODIR)\File\Glob\Glob.dll
823 HOSTNAME_DLL            = $(AUTODIR)\Sys\Hostname\Hostname.dll
824 STORABLE_DLL            = $(AUTODIR)\Storable\Storable.dll
825 FILTER_DLL              = $(AUTODIR)\Filter\Util\Call\Call.dll
826 ENCODE_DLL              = $(AUTODIR)\Encode\Encode.dll
827 MD5_DLL                 = $(AUTODIR)\Digest\MD5\MD5.dll
828 SHA_DLL                 = $(AUTODIR)\Digest\SHA\SHA.dll
829 PERLIOSCALAR_DLL        = $(AUTODIR)\PerlIO\scalar\scalar.dll
830 MIMEBASE64_DLL          = $(AUTODIR)\MIME\Base64\Base64.dll
831 TIMEHIRES_DLL           = $(AUTODIR)\Time\HiRes\HiRes.dll
832 CWD_DLL                 = $(AUTODIR)\Cwd\Cwd.dll
833 LISTUTIL_DLL            = $(AUTODIR)\List\Util\Util.dll
834 HASHUTIL_DLL            = $(AUTODIR)\HASH\Util\Util.dll
835 PERLIOVIA_DLL           = $(AUTODIR)\PerlIO\via\via.dll
836 XSAPITEST_DLL           = $(AUTODIR)\XS\APItest\APItest.dll
837 XSTYPEMAP_DLL           = $(AUTODIR)\XS\Typemap\Typemap.dll
838 UNICODENORMALIZE_DLL    = $(AUTODIR)\Unicode\Normalize\Normalize.dll
839 MATHBIGINTFASTCALC_DLL  = $(AUTODIR)\Math\BigInt\FastCalc\FastCalc.dll
840 COMPRESSZLIB_DLL        = $(AUTODIR)\Compress\Zlib\Zlib.dll
841 WIN32_DLL               = $(AUTODIR)\Win32\Win32.dll
842 WIN32APIFILE_DLL        = $(AUTODIR)\Win32API\File\File.dll
843
844 EXTENSION_C     =               \
845                 $(SOCKET).c     \
846                 $(FCNTL).c      \
847                 $(OPCODE).c     \
848                 $(SDBM_FILE).c  \
849                 $(IO).c         \
850                 $(POSIX).c      \
851                 $(ATTRS).c      \
852                 $(THREAD).c     \
853                 $(RE).c         \
854                 $(DUMPER).c     \
855                 $(PEEK).c       \
856                 $(B).c          \
857                 $(BYTELOADER).c \
858                 $(DPROF).c      \
859                 $(GLOB).c       \
860                 $(HOSTNAME).c   \
861                 $(STORABLE).c   \
862                 $(FILTER).c     \
863                 $(ENCODE).c     \
864                 $(MD5).c        \
865                 $(SHA).c        \
866                 $(PERLIOSCALAR).c       \
867                 $(MIMEBASE64).c \
868                 $(TIMEHIRES).c  \
869                 $(CWD).c        \
870                 $(LISTUTIL).c   \
871                 $(HASHUTIL).c   \
872                 $(PERLIOVIA).c  \
873                 $(XSAPITEST).c  \
874                 $(XSTYPEMAP).c  \
875                 $(UNICODENORMALIZE).c   \
876                 $(MATHBIGINTFASTCALC).c \
877                 $(COMPRESSZLIB).c       \
878                 $(WIN32_DIR).c  \
879                 $(WIN32APIFILE).c
880
881 EXTENSION_DLL   =               \
882                 $(SOCKET_DLL)   \
883                 $(FCNTL_DLL)    \
884                 $(OPCODE_DLL)   \
885                 $(SDBM_FILE_DLL)\
886                 $(IO_DLL)       \
887                 $(POSIX_DLL)    \
888                 $(ATTRS_DLL)    \
889                 $(DUMPER_DLL)   \
890                 $(PEEK_DLL)     \
891                 $(B_DLL)        \
892                 $(RE_DLL)       \
893                 $(THREAD_DLL)   \
894                 $(BYTELOADER_DLL)       \
895                 $(DPROF_DLL)    \
896                 $(GLOB_DLL)     \
897                 $(HOSTNAME_DLL) \
898                 $(STORABLE_DLL) \
899                 $(FILTER_DLL)   \
900                 $(ENCODE_DLL)   \
901                 $(MD5_DLL)      \
902                 $(SHA_DLL)      \
903                 $(PERLIOSCALAR_DLL) \
904                 $(MIMEBASE64_DLL) \
905                 $(TIMEHIRES_DLL)  \
906                 $(CWD_DLL)      \
907                 $(LISTUTIL_DLL) \
908                 $(HASHUTIL_DLL) \
909                 $(PERLIOVIA_DLL)        \
910                 $(XSAPITEST_DLL)        \
911                 $(XSTYPEMAP_DLL)        \
912                 $(UNICODENORMALIZE_DLL) \
913                 $(MATHBIGINTFASTCALC_DLL)       \
914                 $(COMPRESSZLIB_DLL)     \
915                 $(WIN32_DLL)    \
916                 $(WIN32APIFILE_DLL)
917
918 CFG_VARS        =                                       \
919                 "INST_DRV=$(INST_DRV)"                  \
920                 "INST_TOP=$(INST_TOP)"                  \
921                 "INST_VER=$(INST_VER)"                  \
922                 "INST_ARCH=$(INST_ARCH)"                \
923                 "archname=$(ARCHNAME)"                  \
924                 "cc=$(CC)"                              \
925                 "ld=$(LINK32)"                          \
926                 "ccflags=$(EXTRACFLAGS) $(OPTIMIZE:"=\") $(DEFINES) $(BUILDOPT)"        \
927                 "cf_email=$(EMAIL)"                     \
928                 "d_crypt=$(D_CRYPT)"                    \
929                 "d_mymalloc=$(PERL_MALLOC)"             \
930                 "libs=$(LIBFILES)"                      \
931                 "incpath=$(CCINCDIR:"=\")"              \
932                 "libperl=$(PERLIMPLIB:..\=)"            \
933                 "libpth=$(CCLIBDIR:"=\");$(EXTRALIBDIRS:"=\")"  \
934                 "libc=$(LIBC)"                          \
935                 "make=$(MAKE_BARE)"                             \
936                 "static_ext=$(STATIC_EXT)"              \
937                 "usethreads=$(USE_ITHREADS)"            \
938                 "useithreads=$(USE_ITHREADS)"           \
939                 "usemultiplicity=$(USE_MULTI)"          \
940                 "useperlio=$(USE_PERLIO)"               \
941                 "uselargefiles=$(USE_LARGE_FILES)"      \
942                 "usesitecustomize=$(USE_SITECUST)"      \
943                 "LINK_FLAGS=$(LINK_FLAGS:"=\")"         \
944                 "optimize=$(OPTIMIZE:"=\")"
945
946 #
947 # Top targets
948 #
949
950 all : .\config.h $(GLOBEXE) $(MINIMOD) $(CONFIGPM) $(UNIDATAFILES) $(PERLEXE) \
951         $(X2P) MakePPPort Extensions $(PERLSTATIC)
952         @echo   Everything is up to date. '$(MAKE_BARE) test' to run test suite.
953
954 ..\regnodes.h : ..\regcomp.sym
955         cd ..
956         regcomp.pl
957         cd win32
958
959 regnodes : ..\regnodes.h
960
961 reonly : regnodes .\config.h $(GLOBEXE) $(MINIMOD) $(CONFIGPM) $(UNIDATAFILES) \
962         $(PERLEXE) $(X2P) Extensions_reonly
963         @echo   Perl and 're' are up to date.
964
965 $(DYNALOADER)$(o) : $(DYNALOADER).c $(CORE_H) $(EXTDIR)\DynaLoader\dlutils.c
966
967 static: $(PERLEXESTATIC)
968
969 #------------------------------------------------------------
970
971 $(GLOBEXE) : perlglob$(o)
972         $(LINK32) $(LINK_FLAGS) $(LIBFILES) -out:$@ -subsystem:$(SUBSYS) \
973             perlglob$(o) setargv$(o)
974         $(EMBED_EXE_MANI)
975
976 perlglob$(o)  : perlglob.c
977
978 config.w32 : $(CFGSH_TMPL)
979         copy $(CFGSH_TMPL) config.w32
980
981 .\config.h : $(CFGH_TMPL)
982         -del /f config.h
983         copy $(CFGH_TMPL) config.h
984
985 ..\config.sh : config.w32 $(MINIPERL) config_sh.PL
986         $(MINIPERL) -I..\lib config_sh.PL $(CFG_VARS) config.w32 > ..\config.sh
987
988 # this target is for when changes to the main config.sh happen
989 # edit config.{b,v,g}c and make this target once for each supported
990 # compiler (e.g. `nmake CCTYPE=BORLAND regen_config_h`)
991 regen_config_h:
992         perl config_sh.PL $(CFG_VARS) $(CFGSH_TMPL) > ..\config.sh
993         cd ..
994         -del /f perl.exe perl*.dll
995         perl configpm
996         cd win32
997         -del /f $(CFGH_TMPL)
998         -mkdir $(COREDIR)
999         -perl config_h.PL "INST_VER=$(INST_VER)"
1000         rename config.h $(CFGH_TMPL)
1001
1002 $(CONFIGPM) : $(MINIPERL) ..\config.sh config_h.PL ..\minimod.pl
1003         cd ..
1004         miniperl configpm
1005         cd win32
1006         if exist lib\* $(RCOPY) lib\*.* ..\lib\$(NULL)
1007         $(XCOPY) ..\*.h $(COREDIR)\*.*
1008         $(XCOPY) *.h $(COREDIR)\*.*
1009         $(XCOPY) ..\ext\re\re.pm $(LIBDIR)\*.*
1010         $(RCOPY) include $(COREDIR)\*.*
1011         -$(MINIPERL) -I..\lib config_h.PL "INST_VER=$(INST_VER)"
1012         if errorlevel 1 $(MAKE) /$(MAKEFLAGS) $(CONFIGPM)
1013
1014 $(MINIPERL) : $(MINIDIR) $(MINI_OBJ)
1015         $(LINK32) -subsystem:console -out:$@ @<<
1016         $(LINK_FLAGS) $(LIBFILES) $(MINI_OBJ)
1017 <<
1018         $(EMBED_EXE_MANI)
1019
1020 $(MINIDIR) :
1021         if not exist "$(MINIDIR)" mkdir "$(MINIDIR)"
1022
1023 $(MINICORE_OBJ) : $(CORE_NOCFG_H)
1024         $(CC) -c $(CFLAGS) -DPERL_EXTERNAL_GLOB $(OBJOUT_FLAG)$@ ..\$(*F).c
1025
1026 $(MINIWIN32_OBJ) : $(CORE_NOCFG_H)
1027         $(CC) -c $(CFLAGS) $(OBJOUT_FLAG)$@ $(*F).c
1028
1029 # -DPERL_IMPLICIT_SYS needs C++ for perllib.c
1030 # This is the only file that depends on perlhost.h, vmem.h, and vdir.h
1031 !IF "$(USE_IMP_SYS)" == "define"
1032 perllib$(o)     : perllib.c .\perlhost.h .\vdir.h .\vmem.h
1033         $(CC) -c -I. $(CFLAGS_O) $(CXX_FLAG) $(OBJOUT_FLAG)$@ perllib.c
1034 !ENDIF
1035
1036 # 1. we don't want to rebuild miniperl.exe when config.h changes
1037 # 2. we don't want to rebuild miniperl.exe with non-default config.h
1038 $(MINI_OBJ)     : $(CORE_NOCFG_H)
1039
1040 $(WIN32_OBJ)    : $(CORE_H)
1041 $(CORE_OBJ)     : $(CORE_H)
1042 $(DLL_OBJ)      : $(CORE_H)
1043 $(X2P_OBJ)      : $(CORE_H)
1044
1045 perldll.def : $(MINIPERL) $(CONFIGPM) ..\global.sym ..\pp.sym ..\makedef.pl
1046         $(MINIPERL) -I..\lib buildext.pl --create-perllibst-h
1047         $(MINIPERL) -w ..\makedef.pl PLATFORM=win32 $(OPTIMIZE) $(DEFINES) $(BUILDOPT) \
1048             CCTYPE=$(CCTYPE) > perldll.def
1049
1050 $(PERLDLL): perldll.def $(PERLDLL_OBJ) $(PERLDLL_RES) Extensions_static
1051         $(LINK32) -dll -def:perldll.def -base:0x28000000 -out:$@ @Extensions_static @<<
1052                 $(LINK_FLAGS) $(DELAYLOAD) $(LIBFILES) $(PERLDLL_OBJ) $(PERLDLL_RES)
1053 <<
1054         $(EMBED_DLL_MANI)
1055         $(XCOPY) $(PERLIMPLIB) $(COREDIR)
1056
1057 $(PERLSTATICLIB): Extensions_static
1058         $(LIB32) $(LIB_FLAGS) -out:$@ @Extensions_static @<<
1059                 $(PERLDLL_OBJ)
1060 <<
1061         $(XCOPY) $(PERLSTATICLIB) $(COREDIR)
1062
1063 $(PERLEXE_ICO): $(MINIPERL) makeico.pl
1064         $(MINIPERL) makeico.pl > $@
1065
1066 $(PERLEXE_RES): perlexe.rc $(PERLEXE_ICO)
1067
1068 $(MINIMOD) : $(MINIPERL) ..\minimod.pl
1069         cd ..
1070         miniperl minimod.pl > lib\ExtUtils\Miniperl.pm
1071         cd win32
1072
1073 ..\x2p\a2p$(o) : ..\x2p\a2p.c
1074         $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\a2p.c
1075
1076 ..\x2p\hash$(o) : ..\x2p\hash.c
1077         $(CC) -I..\x2p  $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\hash.c
1078
1079 ..\x2p\str$(o) : ..\x2p\str.c
1080         $(CC) -I..\x2p  $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\str.c
1081
1082 ..\x2p\util$(o) : ..\x2p\util.c
1083         $(CC) -I..\x2p  $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\util.c
1084
1085 ..\x2p\walk$(o) : ..\x2p\walk.c
1086         $(CC) -I..\x2p  $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\walk.c
1087
1088 $(X2P) : $(MINIPERL) $(X2P_OBJ)
1089         $(MINIPERL) ..\x2p\find2perl.PL
1090         $(MINIPERL) ..\x2p\s2p.PL
1091         $(LINK32) -subsystem:console -out:$@ @<<
1092                 $(LINK_FLAGS) $(LIBFILES) $(X2P_OBJ)
1093 <<
1094         $(EMBED_EXE_MANI)
1095
1096 perlmain.c : runperl.c
1097         copy runperl.c perlmain.c
1098
1099 perlmain$(o) : perlmain.c
1100         $(CC) $(CFLAGS_O) -UPERLDLL $(OBJOUT_FLAG)$@ -c perlmain.c
1101
1102 perlmainst.c : runperl.c
1103         copy runperl.c perlmainst.c
1104
1105 perlmainst$(o) : perlmainst.c
1106         $(CC) $(CFLAGS_O) -DPERLDLL $(OBJOUT_FLAG)$@ -c perlmainst.c
1107
1108 $(PERLEXE): $(PERLDLL) $(CONFIGPM) $(PERLEXE_OBJ) $(PERLEXE_RES)
1109         $(LINK32) -subsystem:console -out:$@ -stack:0x1000000 $(LINK_FLAGS) \
1110             $(LIBFILES) $(PERLEXE_OBJ) $(SETARGV_OBJ) $(PERLIMPLIB) $(PERLEXE_RES)
1111         $(EMBED_EXE_MANI)
1112         copy $(PERLEXE) $(WPERLEXE)
1113         $(MINIPERL) -I..\lib bin\exetype.pl $(WPERLEXE) WINDOWS
1114         copy splittree.pl ..
1115         $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR)
1116
1117 $(PERLEXESTATIC): $(PERLSTATICLIB) $(CONFIGPM) $(PERLEXEST_OBJ) $(PERLEXE_RES)
1118         $(LINK32) -subsystem:console -out:$@ -stack:0x1000000 $(LINK_FLAGS) \
1119             @Extensions_static $(PERLSTATICLIB) \
1120             $(LIBFILES) $(PERLEXEST_OBJ) $(SETARGV_OBJ) $(PERLEXE_RES)
1121         $(EMBED_EXE_MANI)
1122
1123 $(DYNALOADER).c: $(MINIPERL) $(EXTDIR)\DynaLoader\dl_win32.xs $(CONFIGPM)
1124         if not exist $(AUTODIR) mkdir $(AUTODIR)
1125         cd $(EXTDIR)\$(*B)
1126         ..\$(MINIPERL) -I..\..\lib $(*B)_pm.PL
1127         ..\$(MINIPERL) -I..\..\lib XSLoader_pm.PL
1128         cd ..\..\win32
1129         $(XCOPY) $(EXTDIR)\$(*B)\$(*B).pm $(LIBDIR)\$(NULL)
1130         $(XCOPY) $(EXTDIR)\$(*B)\XSLoader.pm $(LIBDIR)\$(NULL)
1131         cd $(EXTDIR)\$(*B)
1132         $(XSUBPP) dl_win32.xs > $(*B).c
1133         cd ..\..\win32
1134
1135 $(EXTDIR)\DynaLoader\dl_win32.xs: dl_win32.xs
1136         copy dl_win32.xs $(EXTDIR)\DynaLoader\dl_win32.xs
1137
1138 MakePPPort: $(MINIPERL) $(CONFIGPM)
1139         $(MINIPERL) -I..\lib ..\mkppport
1140
1141 MakePPPort_clean:
1142         -if exist $(MINIPERL) $(MINIPERL) -I..\lib ..\mkppport --clean
1143
1144 #-------------------------------------------------------------------------------
1145 Extensions: buildext.pl $(PERLDEP) $(CONFIGPM)
1146         $(XCOPY) ..\*.h $(COREDIR)\*.*
1147         $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) --dynamic
1148         $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext --dynamic
1149
1150 Extensions_reonly: buildext.pl $(PERLDEP) $(CONFIGPM)
1151         $(XCOPY) ..\*.h $(COREDIR)\*.*
1152         $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) --dynamic +re
1153         $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext --dynamic +re
1154
1155 Extensions_static : buildext.pl $(PERLDEP) $(CONFIGPM)
1156         $(XCOPY) ..\*.h $(COREDIR)\*.*
1157         $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) --static
1158         $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext --static
1159         $(MINIPERL) -I..\lib buildext.pl --list-static-libs > Extensions_static
1160
1161 Extensions_clean: 
1162         -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) clean
1163         -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext clean
1164
1165 Extensions_realclean: 
1166         -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) realclean
1167         -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext realclean
1168
1169 #-------------------------------------------------------------------------------
1170
1171 doc: $(PERLEXE)
1172         $(PERLEXE) -I..\lib ..\installhtml --podroot=.. --htmldir=$(HTMLDIR) \
1173             --podpath=pod:lib:ext:utils --htmlroot="file://$(INST_HTML::=|)" \
1174             --libpod=perlfunc:perlguts:perlvar:perlrun:perlop --recurse
1175
1176 # Note that this next section is parsed (and regenerated) by pod/buildtoc
1177 # so please check that script before making structural changes here
1178
1179 utils: $(PERLEXE) $(X2P)
1180         cd ..\utils
1181         $(MAKE) PERL=$(MINIPERL)
1182         cd ..\pod
1183         copy ..\vms\perlvms.pod .\perlvms.pod
1184         copy ..\README.aix      ..\pod\perlaix.pod
1185         copy ..\README.amiga    ..\pod\perlamiga.pod
1186         copy ..\README.apollo   ..\pod\perlapollo.pod
1187         copy ..\README.beos     ..\pod\perlbeos.pod
1188         copy ..\README.bs2000   ..\pod\perlbs2000.pod
1189         copy ..\README.ce       ..\pod\perlce.pod
1190         copy ..\README.cn       ..\pod\perlcn.pod
1191         copy ..\README.cygwin   ..\pod\perlcygwin.pod
1192         copy ..\README.dgux     ..\pod\perldgux.pod
1193         copy ..\README.dos      ..\pod\perldos.pod
1194         copy ..\README.epoc     ..\pod\perlepoc.pod
1195         copy ..\README.freebsd  ..\pod\perlfreebsd.pod
1196         copy ..\README.hpux     ..\pod\perlhpux.pod
1197         copy ..\README.hurd     ..\pod\perlhurd.pod
1198         copy ..\README.irix     ..\pod\perlirix.pod
1199         copy ..\README.jp       ..\pod\perljp.pod
1200         copy ..\README.ko       ..\pod\perlko.pod
1201         copy ..\README.linux    ..\pod\perllinux.pod
1202         copy ..\README.machten  ..\pod\perlmachten.pod
1203         copy ..\README.macos    ..\pod\perlmacos.pod
1204         copy ..\README.macosx   ..\pod\perlmacosx.pod
1205         copy ..\README.mint     ..\pod\perlmint.pod
1206         copy ..\README.mpeix    ..\pod\perlmpeix.pod
1207         copy ..\README.netware  ..\pod\perlnetware.pod
1208         copy ..\README.openbsd  ..\pod\perlopenbsd.pod
1209         copy ..\README.os2      ..\pod\perlos2.pod
1210         copy ..\README.os390    ..\pod\perlos390.pod
1211         copy ..\README.os400    ..\pod\perlos400.pod
1212         copy ..\README.plan9    ..\pod\perlplan9.pod
1213         copy ..\README.qnx      ..\pod\perlqnx.pod
1214         copy ..\README.riscos   ..\pod\perlriscos.pod
1215         copy ..\README.solaris  ..\pod\perlsolaris.pod
1216         copy ..\README.symbian  ..\pod\perlsymbian.pod
1217         copy ..\README.tru64    ..\pod\perltru64.pod
1218         copy ..\README.tw       ..\pod\perltw.pod
1219         copy ..\README.uts      ..\pod\perluts.pod
1220         copy ..\README.vmesa    ..\pod\perlvmesa.pod
1221         copy ..\README.vms      ..\pod\perlvms.pod
1222         copy ..\README.vos      ..\pod\perlvos.pod
1223         copy ..\README.win32    ..\pod\perlwin32.pod
1224         copy ..\pod\perl595delta.pod ..\pod\perldelta.pod
1225         $(MAKE) -f ..\win32\pod.mak converters
1226         cd ..\lib
1227         $(PERLEXE) lib_pm.PL
1228         cd ..\win32
1229         $(PERLEXE) $(PL2BAT) $(UTILS)
1230
1231 # Note that the pod cleanup in this next section is parsed (and regenerated
1232 # by pod/buildtoc so please check that script before making changes here
1233
1234 distclean: realclean
1235         -del /f $(MINIPERL) $(PERLEXE) $(PERLDLL) $(GLOBEXE) \
1236                 $(PERLIMPLIB) ..\miniperl.lib $(MINIMOD) \
1237                 $(PERLEXESTATIC) $(PERLSTATICLIB)
1238         -del /f *.def *.map
1239         -del /f $(EXTENSION_DLL)
1240         -del /f $(EXTENSION_C) $(DYNALOADER).c $(ERRNO).pm
1241         -del /f $(EXTDIR)\DynaLoader\dl_win32.xs
1242         -del /f $(EXTDIR)\DynaLoader\DynaLoader.pm
1243         -del /f $(EXTDIR)\DynaLoader\XSLoader.pm
1244         -del /f $(LIBDIR)\Encode.pm $(LIBDIR)\encoding.pm $(LIBDIR)\Errno.pm
1245         -del /f $(LIBDIR)\Config.pod $(LIBDIR)\POSIX.pod $(LIBDIR)\threads.pm
1246         -del /f $(LIBDIR)\.exists $(LIBDIR)\attrs.pm $(LIBDIR)\DynaLoader.pm
1247         -del /f $(LIBDIR)\XSLoader.pm $(LIBDIR)\lib.pm
1248         -del /f $(LIBDIR)\Fcntl.pm $(LIBDIR)\IO.pm $(LIBDIR)\Opcode.pm
1249         -del /f $(LIBDIR)\ops.pm $(LIBDIR)\Safe.pm
1250         -del /f $(LIBDIR)\SDBM_File.pm $(LIBDIR)\Socket.pm $(LIBDIR)\POSIX.pm
1251         -del /f $(LIBDIR)\B.pm $(LIBDIR)\O.pm $(LIBDIR)\re.pm
1252         -del /f $(LIBDIR)\ByteLoader.pm
1253         -del /f $(LIBDIR)\Devel\Peek.pm $(LIBDIR)\Devel\DProf.pm
1254         -del /f $(LIBDIR)\Devel\PPPort.pm
1255         -del /f $(LIBDIR)\File\Glob.pm
1256         -del /f $(LIBDIR)\Storable.pm
1257         -del /f $(LIBDIR)\Digest\MD5.pm
1258         -del /f $(LIBDIR)\Digest\SHA.pm
1259         -del /f $(LIBDIR)\PerlIO\encoding.pm
1260         -del /f $(LIBDIR)\PerlIO\scalar.pm
1261         -del /f $(LIBDIR)\PerlIO\via.pm
1262         -del /f $(LIBDIR)\Sys\Hostname.pm
1263         -del /f $(LIBDIR)\Thread\Signal.pm $(LIBDIR)\Thread\Specific.pm
1264         -del /f $(LIBDIR)\threads\shared.pm
1265         -del /f $(LIBDIR)\Time\HiRes.pm
1266         -del /f $(LIBDIR)\Unicode\Normalize.pm
1267         -del /f $(LIBDIR)\Math\BigInt\FastCalc.pm
1268         -del /f $(LIBDIR)\Win32.pm
1269         -del /f $(LIBDIR)\Win32API\File.pm
1270         -del /f $(LIBDIR)\Win32API\File\cFile.pc
1271         -if exist $(LIBDIR)\B rmdir /s /q $(LIBDIR)\B
1272         -if exist $(LIBDIR)\Compress rmdir /s /q $(LIBDIR)\Compress
1273         -if exist $(LIBDIR)\Data rmdir /s /q $(LIBDIR)\Data
1274         -if exist $(LIBDIR)\Encode rmdir /s /q $(LIBDIR)\Encode
1275         -if exist $(LIBDIR)\Filter\Util rmdir /s /q $(LIBDIR)\Filter\Util
1276         -if exist $(LIBDIR)\Hash rmdir /s /q $(LIBDIR)\Hash
1277         -if exist $(LIBDIR)\IO\Compress rmdir /s /q $(LIBDIR)\IO\Compress
1278         -if exist $(LIBDIR)\IO\Socket rmdir /s /q $(LIBDIR)\IO\Socket
1279         -if exist $(LIBDIR)\IO\Uncompress rmdir /s /q $(LIBDIR)\IO\Uncompress
1280         -if exist $(LIBDIR)\List rmdir /s /q $(LIBDIR)\List
1281         -if exist $(LIBDIR)\MIME rmdir /s /q $(LIBDIR)\MIME
1282         -if exist $(LIBDIR)\Scalar rmdir /s /q $(LIBDIR)\Scalar
1283         -if exist $(LIBDIR)\Sys rmdir /s /q $(LIBDIR)\Sys
1284         -if exist $(LIBDIR)\threads rmdir /s /q $(LIBDIR)\threads
1285         -if exist $(LIBDIR)\XS rmdir /s /q $(LIBDIR)\XS
1286         -if exist $(LIBDIR)\Win32API rmdir /s /q $(LIBDIR)\Win32API
1287         -cd $(PODDIR) && del /f *.html *.bat checkpods \
1288             perlaix.pod perlamiga.pod perlapollo.pod perlbeos.pod \
1289             perlbs2000.pod perlce.pod perlcn.pod perlcygwin.pod \
1290             perldelta.pod perldgux.pod perldos.pod perlepoc.pod \
1291             perlfreebsd.pod perlhpux.pod perlhurd.pod perlirix.pod \
1292             perljp.pod perlko.pod perllinux.pod perlmachten.pod \
1293             perlmacos.pod perlmacosx.pod perlmint.pod perlmpeix.pod \
1294             perlnetware.pod perlopenbsd.pod perlos2.pod perlos390.pod \
1295             perlos400.pod perlplan9.pod perlqnx.pod perlriscos.pod \
1296             perlsolaris.pod perlsymbian.pod perltru64.pod perltw.pod \
1297             perluts.pod perlvmesa.pod perlvms.pod perlvms.pod perlvos.pod \
1298             perlwin32.pod \
1299             pod2html pod2latex pod2man pod2text pod2usage \
1300             podchecker podselect
1301         -cd ..\utils && del /f h2ph splain perlbug pl2pm c2ph pstruct h2xs \
1302             perldoc perlivp dprofpp libnetcfg enc2xs piconv cpan *.bat \
1303             xsubpp instmodsh prove ptar ptardiff shasum corelist config_data
1304         -cd ..\x2p && del /f find2perl s2p psed *.bat
1305         -del /f ..\config.sh ..\splittree.pl perlmain.c dlutils.c config.h.new \
1306                 perlmainst.c
1307         -del /f $(CONFIGPM)
1308         -del /f bin\*.bat
1309         -del /f perllibst.h
1310         -del /f $(PERLEXE_ICO) perl.base
1311         -cd .. && del /s *.lib *.map *.pdb *.ilk *.bs *$(o) .exists pm_to_blib
1312         -cd $(EXTDIR) && del /s *.def Makefile Makefile.old
1313         -if exist $(AUTODIR) rmdir /s /q $(AUTODIR)
1314         -if exist $(COREDIR) rmdir /s /q $(COREDIR)
1315         -if exist pod2htmd.tmp del pod2htmd.tmp
1316         -if exist pod2htmi.tmp del pod2htmi.tmp
1317         -if exist $(HTMLDIR) rmdir /s /q $(HTMLDIR)
1318
1319 install : all installbare installhtml
1320
1321 installbare : utils
1322         $(PERLEXE) ..\installperl
1323         if exist $(WPERLEXE) $(XCOPY) $(WPERLEXE) $(INST_BIN)\*.*
1324         if exist $(PERLEXESTATIC) $(XCOPY) $(PERLEXESTATIC) $(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 \bsubst \brxcode $(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