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