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