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