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