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