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