Install POD files into "lib\pods" rather than "lib\pod" on Win32
[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 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.4
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_HTML       = $(INST_TOP)$(INST_VER)\html
359
360 #
361 # Programs to compile, build .lib files and link
362 #
363
364 .USESHELL :
365
366 .IF "$(CCTYPE)" == "BORLAND"
367
368 CC              = bcc32
369 .IF "$(BCCOLD)" != "define"
370 LINK32          = ilink32
371 .ELSE
372 LINK32          = tlink32
373 .ENDIF
374 LIB32           = tlib /P128
375 IMPLIB          = implib -c
376 RSC             = brcc32
377
378 #
379 # Options
380 #
381 INCLUDES        = -I$(COREDIR) -I.\include -I. -I.. -I"$(CCINCDIR)"
382 #PCHFLAGS       = -H -Hc -H=c:\temp\bcmoduls.pch
383 DEFINES         = -DWIN32 $(CRYPT_FLAG)
384 LOCDEFS         = -DPERLDLL -DPERL_CORE
385 SUBSYS          = console
386 CXX_FLAG        = -P
387
388 LIBC            = cw32mti.lib
389
390 # same libs as MSVC, except Borland doesn't have oldnames.lib
391 LIBFILES        = $(CRYPT_LIB) \
392                 kernel32.lib user32.lib gdi32.lib winspool.lib \
393                 comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \
394                 netapi32.lib uuid.lib ws2_32.lib mpr.lib winmm.lib \
395                 version.lib odbc32.lib odbccp32.lib \
396                 import32.lib $(LIBC)
397
398 .IF  "$(CFG)" == "Debug"
399 OPTIMIZE        = -v -D_RTLDLL -DDEBUGGING
400 LINK_DBG        = -v
401 .ELSE
402 OPTIMIZE        = -O2 -D_RTLDLL
403 LINK_DBG        =
404 .ENDIF
405
406 EXTRACFLAGS     =
407 CFLAGS          = -w -g0 -tWM -tWD $(INCLUDES) $(DEFINES) $(LOCDEFS) \
408                 $(PCHFLAGS) $(OPTIMIZE)
409 LINK_FLAGS      = $(LINK_DBG) -L"$(INST_COREDIR)" -L"$(CCLIBDIR)" \
410                 -L"$(CCLIBDIR)\PSDK"
411 OBJOUT_FLAG     = -o
412 EXEOUT_FLAG     = -e
413 LIBOUT_FLAG     =
414 .IF "$(BCCOLD)" != "define"
415 LINK_FLAGS      += -Gn
416 DEFINES  += -D_MT -D__USELOCALES__ -D_WIN32_WINNT=0x0410
417 .END
418 .IF "$(BCCVCL)" == "define"
419 LIBC            = cp32mti.lib vcl.lib vcl50.lib vclx50.lib vcle50.lib
420 LINK_FLAGS      += -L"$(CCLIBDIR)\Release"
421 .END
422
423
424 .ELIF "$(CCTYPE)" == "GCC"
425
426 CC              = gcc
427 LINK32          = g++
428 LIB32           = ar rc
429 IMPLIB          = dlltool
430 RSC             = windres
431
432 i = .i
433 o = .o
434 a = .a
435
436 #
437 # Options
438 #
439
440 INCLUDES        = -I.\include -I. -I.. -I$(COREDIR)
441 DEFINES         = -DWIN32 $(CRYPT_FLAG)
442 LOCDEFS         = -DPERLDLL -DPERL_CORE
443 SUBSYS          = console
444 CXX_FLAG        = -xc++
445
446 LIBC            = -lmsvcrt
447
448 # same libs as MSVC
449 LIBFILES        = $(CRYPT_LIB) $(LIBC) \
450                   -lmoldname -lkernel32 -luser32 -lgdi32 \
451                   -lwinspool -lcomdlg32 -ladvapi32 -lshell32 -lole32 \
452                   -loleaut32 -lnetapi32 -luuid -lws2_32 -lmpr \
453                   -lwinmm -lversion -lodbc32 -lodbccp32
454
455 .IF  "$(CFG)" == "Debug"
456 OPTIMIZE        = -g -O2 -DDEBUGGING
457 LINK_DBG        = -g
458 .ELSE
459 OPTIMIZE        = -s -O2
460 LINK_DBG        = -s
461 .ENDIF
462
463 EXTRACFLAGS     =
464 CFLAGS          = $(INCLUDES) $(DEFINES) $(LOCDEFS) $(OPTIMIZE)
465 LINK_FLAGS      = $(LINK_DBG) -L"$(INST_COREDIR)" -L"$(CCLIBDIR)"
466 OBJOUT_FLAG     = -o
467 EXEOUT_FLAG     = -o
468 LIBOUT_FLAG     =
469
470 # NOTE: we assume that GCC uses MSVCRT.DLL
471 BUILDOPT        += -fno-strict-aliasing -DPERL_MSVCRT_READFIX
472
473 .ELSE
474
475 CC              = cl
476 LINK32          = link
477 LIB32           = $(LINK32) -lib
478 RSC             = rc
479
480 #
481 # Options
482 #
483
484 INCLUDES        = -I$(COREDIR) -I.\include -I. -I..
485 #PCHFLAGS       = -Fpc:\temp\vcmoduls.pch -YX
486 DEFINES         = -DWIN32 -D_CONSOLE -DNO_STRICT $(CRYPT_FLAG)
487 LOCDEFS         = -DPERLDLL -DPERL_CORE
488 SUBSYS          = console
489 CXX_FLAG        = -TP -GX
490
491 .IF "$(USE_PERLCRT)" != "define"
492 LIBC    = msvcrt.lib
493 .ELSE
494 LIBC    = PerlCRT.lib
495 .ENDIF
496
497 .IF  "$(CFG)" == "Debug"
498 .IF "$(CCTYPE)" == "MSVC20"
499 OPTIMIZE        = -Od -MD -Z7 -DDEBUGGING
500 .ELSE
501 OPTIMIZE        = -O1 -MD -Zi -DDEBUGGING
502 .ENDIF
503 LINK_DBG        = -debug
504 .ELSE
505 OPTIMIZE        = -MD -Zi -DNDEBUG
506 # we enable debug symbols in release builds also
507 LINK_DBG        = -debug -opt:ref,icf
508 # you may want to enable this if you want COFF symbols in the executables
509 # in addition to the PDB symbols.  The default Dr. Watson that ships with
510 # Windows can use the the former but not latter.  The free WinDbg can be
511 # installed to get better stack traces from just the PDB symbols, so we
512 # avoid the bloat of COFF symbols by default.
513 #LINK_DBG       = $(LINK_DBG) -debugtype:both
514 .IF "$(WIN64)" == "define"
515 # enable Whole Program Optimizations (WPO) and Link Time Code Generation (LTCG)
516 OPTIMIZE        += -Ox -GL
517 LINK_DBG        += -ltcg
518 .ELSE
519 # -O1 yields smaller code, which turns out to be faster than -O2 on x86
520 OPTIMIZE        += -O1
521 #OPTIMIZE       += -O2
522 .ENDIF
523 .ENDIF
524
525 .IF "$(WIN64)" == "define"
526 DEFINES         += -DWIN64 -DCONSERVATIVE
527 OPTIMIZE        += -Wp64 -Op
528 .ENDIF
529
530 # the string-pooling option -Gf is deprecated in VC++ 7.x and will be removed
531 # in later versions, so use read-only string-pooling (-GF) instead
532 .IF "$(CCTYPE)" == "MSVC70FREE" || "$(CCTYPE)" == "MSVC70"
533 STRPOOL         = -GF
534 .ELSE
535 STRPOOL         = -Gf
536 .ENDIF
537
538 .IF "$(USE_PERLCRT)" != "define"
539 BUILDOPT        += -DPERL_MSVCRT_READFIX
540 .ENDIF
541
542 LIBBASEFILES    = $(CRYPT_LIB) \
543                 oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.lib \
544                 comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \
545                 netapi32.lib uuid.lib ws2_32.lib mpr.lib winmm.lib \
546                 version.lib
547
548 # win64 doesn't have some libs
549 .IF "$(WIN64)" != "define"
550 LIBBASEFILES    += odbc32.lib odbccp32.lib
551 .ENDIF
552
553 # we add LIBC here, since we may be using PerlCRT.dll
554 LIBFILES        = $(LIBBASEFILES) $(LIBC)
555
556 EXTRACFLAGS     = -nologo $(STRPOOL) -W3
557 CFLAGS          = $(EXTRACFLAGS) $(INCLUDES) $(DEFINES) $(LOCDEFS) \
558                 $(PCHFLAGS) $(OPTIMIZE)
559 LINK_FLAGS      = -nologo -nodefaultlib $(LINK_DBG) \
560                 -libpath:"$(INST_COREDIR)" \
561                 -machine:$(PROCESSOR_ARCHITECTURE)
562 OBJOUT_FLAG     = -Fo
563 EXEOUT_FLAG     = -Fe
564 LIBOUT_FLAG     = /out:
565
566 .ENDIF
567
568 CFLAGS_O        = $(CFLAGS) $(BUILDOPT)
569
570 # used to allow local linking flags that are not propogated into Config.pm,
571 # currently unused
572 #   -- BKS, 12-12-1999
573 PRIV_LINK_FLAGS *=
574 BLINK_FLAGS     = $(PRIV_LINK_FLAGS) $(LINK_FLAGS)
575
576 #################### do not edit below this line #######################
577 ############# NO USER-SERVICEABLE PARTS BEYOND THIS POINT ##############
578
579 # Some dmake's built with Borland C++, including Sarathy's one at:
580 # http://search.cpan.org/CPAN/authors/id/G/GS/GSAR/dmake-4.1pl1-win32.zip
581 # require backslashes to be doubled-up when written to $(mktmp) files.
582 # Other dmake's do not require this and would actually output a double
583 # backslash if they were doubled-up.
584 .IF "$(shell @type $(mktmp \\))"=="\\"
585 B=\\
586 .ELSE
587 B=\\\
588 .ENDIF
589
590 # There is a related issue with other escape sequences: Sarathy's old
591 # dmake automatically maps escape sequences like \n to their ASCII values
592 # when used in macros, while other dmake's only do so if this behaviour
593 # is explicitly requested with the :m modifier.
594 DONTUSETHIS=\n
595 .IF "$(shell @type $(mktmp \n))"=="\n"
596 N=$(DONTUSETHIS:m)
597 .ELSE
598 N=$(DONTUSETHIS)
599 .ENDIF
600
601 o *= .obj
602 a *= .lib
603
604 LKPRE           = INPUT (
605 LKPOST          = )
606
607 #
608 # Rules
609 #
610
611 .SUFFIXES : .c .i $(o) .dll $(a) .exe .rc .res
612
613 .c$(o):
614         $(CC) -c $(null,$(<:d) $(NULL) -I$(<:d)) $(CFLAGS_O) $(OBJOUT_FLAG)$@ $<
615
616 .c.i:
617         $(CC) -c $(null,$(<:d) $(NULL) -I$(<:d)) $(CFLAGS_O) -E $< >$@
618
619 .y.c:
620         $(NOOP)
621
622 $(o).dll:
623 .IF "$(CCTYPE)" == "BORLAND"
624         $(LINK32) -Tpd -ap $(BLINK_FLAGS) c0d32$(o) $<,$@,,$(LIBFILES),$(*B).def
625         $(IMPLIB) $(*B).lib $@
626 .ELIF "$(CCTYPE)" == "GCC"
627         $(LINK32) -o $@ $(BLINK_FLAGS) $< $(LIBFILES)
628         $(IMPLIB) --input-def $(*B).def --output-lib $(*B).a $@
629 .ELSE
630         $(LINK32) -dll -subsystem:windows -implib:$(*B).lib -def:$(*B).def \
631             -out:$@ $(BLINK_FLAGS) $(LIBFILES) $< $(LIBPERL)
632 .ENDIF
633
634 .rc.res:
635 .IF "$(CCTYPE)" == "GCC"
636         $(RSC) --use-temp-file -i $< -o $@
637 .ELSE
638         $(RSC) -i.. $<
639 .ENDIF
640
641 #
642 # various targets
643 MINIPERL        = ..\miniperl.exe
644 MINIDIR         = .\mini
645 PERLEXE         = ..\perl.exe
646 WPERLEXE        = ..\wperl.exe
647 GLOBEXE         = ..\perlglob.exe
648 CONFIGPM        = ..\lib\Config.pm ..\lib\Config_heavy.pl
649 MINIMOD         = ..\lib\ExtUtils\Miniperl.pm
650 X2P             = ..\x2p\a2p.exe
651
652 # Unicode data files generated by mktables
653 UNIDATAFILES     = ..\lib\unicore\Canonical.pl ..\lib\unicore\Exact.pl \
654                    ..\lib\unicore\Properties ..\lib\unicore\Decomposition.pl \
655                    ..\lib\unicore\CombiningClass.pl ..\lib\unicore\Name.pl \
656                    ..\lib\unicore\PVA.pl
657
658 # Directories of Unicode data files generated by mktables
659 UNIDATADIR1     = ..\lib\unicore\To
660 UNIDATADIR2     = ..\lib\unicore\lib
661
662 PERLEXE_ICO     = .\perlexe.ico
663 PERLEXE_RES     = .\perlexe.res
664 PERLDLL_RES     =
665
666 # Nominate a target which causes extensions to be re-built
667 # This used to be $(PERLEXE), but at worst it is the .dll that they depend
668 # on and really only the interface - i.e. the .def file used to export symbols
669 # from the .dll
670 PERLDEP = perldll.def
671
672
673 PL2BAT          = bin\pl2bat.pl
674 GLOBBAT         = bin\perlglob.bat
675
676 UTILS           =                       \
677                 ..\utils\h2ph           \
678                 ..\utils\splain         \
679                 ..\utils\dprofpp        \
680                 ..\utils\perlbug        \
681                 ..\utils\pl2pm          \
682                 ..\utils\c2ph           \
683                 ..\utils\pstruct        \
684                 ..\utils\h2xs           \
685                 ..\utils\perldoc        \
686                 ..\utils\perlcc         \
687                 ..\utils\perlivp        \
688                 ..\utils\libnetcfg      \
689                 ..\utils\enc2xs         \
690                 ..\utils\piconv         \
691                 ..\utils\config_data    \
692                 ..\utils\corelist       \
693                 ..\utils\cpan           \
694                 ..\utils\xsubpp         \
695                 ..\utils\prove          \
696                 ..\utils\ptar           \
697                 ..\utils\ptardiff       \
698                 ..\utils\shasum         \
699                 ..\utils\instmodsh      \
700                 ..\pod\checkpods        \
701                 ..\pod\pod2html         \
702                 ..\pod\pod2latex        \
703                 ..\pod\pod2man          \
704                 ..\pod\pod2text         \
705                 ..\pod\pod2usage        \
706                 ..\pod\podchecker       \
707                 ..\pod\podselect        \
708                 ..\x2p\find2perl        \
709                 ..\x2p\psed             \
710                 ..\x2p\s2p              \
711                 bin\exetype.pl          \
712                 bin\runperl.pl          \
713                 bin\pl2bat.pl           \
714                 bin\perlglob.pl         \
715                 bin\search.pl
716
717 .IF "$(CCTYPE)" == "BORLAND"
718
719 CFGSH_TMPL      = config.bc
720 CFGH_TMPL       = config_H.bc
721
722 .ELIF "$(CCTYPE)" == "GCC"
723
724 CFGSH_TMPL      = config.gc
725 CFGH_TMPL       = config_H.gc
726 PERLIMPLIB      = ..\libperl59$(a)
727
728 .ELSE
729
730 .IF "$(WIN64)" == "define"
731 CFGSH_TMPL      = config.vc64
732 CFGH_TMPL       = config_H.vc64
733 .ELSE
734 CFGSH_TMPL      = config.vc
735 CFGH_TMPL       = config_H.vc
736 .ENDIF
737
738 .ENDIF
739
740 # makedef.pl must be updated if this changes, and this should normally
741 # only change when there is an incompatible revision of the public API.
742 PERLIMPLIB      *= ..\perl59$(a)
743 PERLDLL         = ..\perl59.dll
744
745 XCOPY           = xcopy /f /r /i /d /y
746 RCOPY           = xcopy /f /r /i /e /d /y
747 NOOP            = @rem
748
749 #
750 # filenames given to xsubpp must have forward slashes (since it puts
751 # full pathnames in #line strings)
752 XSUBPP          = ..\$(MINIPERL) -I..\..\lib ..\$(EXTUTILSDIR)\xsubpp \
753                 -C++ -prototypes
754
755 MICROCORE_SRC   =               \
756                 ..\av.c         \
757                 ..\deb.c        \
758                 ..\doio.c       \
759                 ..\doop.c       \
760                 ..\dump.c       \
761                 ..\globals.c    \
762                 ..\gv.c         \
763                 ..\hv.c         \
764                 ..\locale.c     \
765                 ..\mathoms.c    \
766                 ..\mg.c         \
767                 ..\numeric.c    \
768                 ..\op.c         \
769                 ..\pad.c        \
770                 ..\perl.c       \
771                 ..\perlapi.c    \
772                 ..\perly.c      \
773                 ..\pp.c         \
774                 ..\pp_ctl.c     \
775                 ..\pp_hot.c     \
776                 ..\pp_pack.c    \
777                 ..\pp_sort.c    \
778                 ..\pp_sys.c     \
779                 ..\reentr.c     \
780                 ..\regcomp.c    \
781                 ..\regexec.c    \
782                 ..\run.c        \
783                 ..\scope.c      \
784                 ..\sv.c         \
785                 ..\taint.c      \
786                 ..\toke.c       \
787                 ..\universal.c  \
788                 ..\utf8.c       \
789                 ..\util.c       \
790                 ..\xsutils.c
791
792 EXTRACORE_SRC   += perllib.c
793
794 .IF "$(PERL_MALLOC)" == "define"
795 EXTRACORE_SRC   += ..\malloc.c
796 .ENDIF
797
798 EXTRACORE_SRC   += ..\perlio.c
799
800 WIN32_SRC       =               \
801                 .\win32.c       \
802                 .\win32sck.c    \
803                 .\win32thread.c
804
805 # We need this for miniperl build unless we override canned 
806 # config.h #define building mini\*
807 #.IF "$(USE_PERLIO)" == "define"
808 WIN32_SRC       += .\win32io.c
809 #.ENDIF
810
811 .IF "$(CRYPT_SRC)" != ""
812 WIN32_SRC       += .\$(CRYPT_SRC)
813 .ENDIF
814
815 DLL_SRC         = $(DYNALOADER).c
816
817 X2P_SRC         =               \
818                 ..\x2p\a2p.c    \
819                 ..\x2p\hash.c   \
820                 ..\x2p\str.c    \
821                 ..\x2p\util.c   \
822                 ..\x2p\walk.c
823
824 CORE_NOCFG_H    =               \
825                 ..\av.h         \
826                 ..\cop.h        \
827                 ..\cv.h         \
828                 ..\dosish.h     \
829                 ..\embed.h      \
830                 ..\form.h       \
831                 ..\gv.h         \
832                 ..\handy.h      \
833                 ..\hv.h         \
834                 ..\iperlsys.h   \
835                 ..\mg.h         \
836                 ..\nostdio.h    \
837                 ..\op.h         \
838                 ..\opcode.h     \
839                 ..\perl.h       \
840                 ..\perlapi.h    \
841                 ..\perlsdio.h   \
842                 ..\perlsfio.h   \
843                 ..\perly.h      \
844                 ..\pp.h         \
845                 ..\proto.h      \
846                 ..\regcomp.h    \
847                 ..\regexp.h     \
848                 ..\scope.h      \
849                 ..\sv.h         \
850                 ..\thread.h     \
851                 ..\unixish.h    \
852                 ..\utf8.h       \
853                 ..\util.h       \
854                 ..\warnings.h   \
855                 ..\XSUB.h       \
856                 ..\EXTERN.h     \
857                 ..\perlvars.h   \
858                 ..\intrpvar.h   \
859                 ..\thrdvar.h    \
860                 .\include\dirent.h      \
861                 .\include\netdb.h       \
862                 .\include\sys\socket.h  \
863                 .\win32.h
864
865 CORE_H          = $(CORE_NOCFG_H) .\config.h
866
867 MICROCORE_OBJ   = $(MICROCORE_SRC:db:+$(o))
868 CORE_OBJ        = $(MICROCORE_OBJ) $(EXTRACORE_SRC:db:+$(o))
869 WIN32_OBJ       = $(WIN32_SRC:db:+$(o))
870 MINICORE_OBJ    = $(MINIDIR)\{$(MICROCORE_OBJ:f) miniperlmain$(o) perlio$(o)}
871 MINIWIN32_OBJ   = $(MINIDIR)\{$(WIN32_OBJ:f)}
872 MINI_OBJ        = $(MINICORE_OBJ) $(MINIWIN32_OBJ)
873 DLL_OBJ         = $(DLL_SRC:db:+$(o))
874 X2P_OBJ         = $(X2P_SRC:db:+$(o))
875
876 PERLDLL_OBJ     = $(CORE_OBJ)
877 PERLEXE_OBJ     = perlmain$(o)
878
879 PERLDLL_OBJ     += $(WIN32_OBJ) $(DLL_OBJ)
880
881 .IF "$(USE_SETARGV)" != ""
882 SETARGV_OBJ     = setargv$(o)
883 .ENDIF
884
885 DYNAMIC_EXT     = Socket IO Fcntl Opcode SDBM_File POSIX attrs Thread B re \
886                 Data/Dumper Devel/Peek ByteLoader Devel/DProf File/Glob \
887                 Sys/Hostname Storable Filter/Util/Call Encode \
888                 Digest/MD5 Digest/SHA PerlIO/scalar MIME/Base64 Time/HiRes \
889                 Unicode/Normalize Math/BigInt/FastCalc Compress/Zlib Win32
890 STATIC_EXT      = 
891 NONXS_EXT       = Errno
892
893 DYNALOADER      = $(EXTDIR)\DynaLoader\DynaLoader
894
895 # vars must be separated by "\t+~\t+", since we're using the tempfile
896 # version of config_sh.pl (we were overflowing someone's buffer by
897 # trying to fit them all on the command line)
898 #       -- BKS 10-17-1999
899 CFG_VARS        =                                       \
900                 INST_DRV=$(INST_DRV)            ~       \
901                 INST_TOP=$(INST_TOP:s,\,$B,)    ~       \
902                 INST_VER=$(INST_VER:s,\,$B,)    ~       \
903                 INST_ARCH=$(INST_ARCH)          ~       \
904                 archname=$(ARCHNAME)            ~       \
905                 cc=$(CC)                        ~       \
906                 ld=$(LINK32)                    ~       \
907                 ccflags=$(EXTRACFLAGS) $(OPTIMIZE) $(DEFINES) $(BUILDOPT)       ~       \
908                 cf_email=$(EMAIL)               ~       \
909                 d_crypt=$(D_CRYPT)              ~       \
910                 d_mymalloc=$(PERL_MALLOC)       ~       \
911                 libs=$(LIBFILES:f)              ~       \
912                 incpath=$(CCINCDIR:s,\,$B,)     ~       \
913                 libperl=$(PERLIMPLIB:f)         ~       \
914                 libpth=$(CCLIBDIR:s,\,$B,);$(EXTRALIBDIRS:s,\,$B,)      ~       \
915                 libc=$(LIBC)                    ~       \
916                 make=dmake                      ~       \
917                 _o=$(o)                         ~       \
918                 obj_ext=$(o)                    ~       \
919                 _a=$(a)                         ~       \
920                 lib_ext=$(a)                    ~       \
921                 static_ext=$(STATIC_EXT)        ~       \
922                 usethreads=$(USE_ITHREADS)      ~       \
923                 useithreads=$(USE_ITHREADS)     ~       \
924                 usemultiplicity=$(USE_MULTI)    ~       \
925                 useperlio=$(USE_PERLIO)         ~       \
926                 uselargefiles=$(USE_LARGE_FILES)        ~       \
927                 usesitecustomize=$(USE_SITECUST)        ~       \
928                 LINK_FLAGS=$(LINK_FLAGS:s,\,$B,)        ~       \
929                 optimize=$(OPTIMIZE)
930
931 #
932 # set up targets varying between Win95 and WinNT builds
933 #
934
935 .IF "$(IS_WIN95)" == "define"
936 MK2             = .\makefile.95
937 RIGHTMAKE       = __switch_makefiles
938 .ELSE
939 MK2             = __not_needed
940 RIGHTMAKE       =
941 .ENDIF
942
943 .IMPORT .IGNORE : SystemRoot windir
944
945 # Don't just .IMPORT OS from the environment because dmake sets OS itself.
946 ENV_OS=$(subst,OS=, $(shell @set OS))
947
948 .IF "$(ENV_OS)" == "Windows_NT"
949 ODBCCP32_DLL = $(SystemRoot)\system32\odbccp32.dll
950 .ELSE
951 ODBCCP32_DLL = $(windir)\system\odbccp32.dll
952 .ENDIF
953
954 #
955 # Top targets
956 #
957
958 all : .\config.h $(GLOBEXE) $(MINIPERL) $(MK2)          \
959         $(RIGHTMAKE) $(MINIMOD) $(CONFIGPM) $(UNIDATAFILES) $(PERLEXE)  \
960         $(X2P) Extensions
961
962 $(DYNALOADER)$(o) : $(DYNALOADER).c $(CORE_H) $(EXTDIR)\DynaLoader\dlutils.c
963
964 #----------------------------------------------------------------
965
966 #-------------------- BEGIN Win95 SPECIFIC ----------------------
967
968 # this target is a jump-off point for Win95
969 #  1. it switches to the Win95-specific makefile if it exists
970 #     (__do_switch_makefiles)
971 #  2. it prints a message when the Win95-specific one finishes (__done)
972 #  3. it then kills this makefile by trying to make __no_such_target
973
974 __switch_makefiles: __do_switch_makefiles __done __no_such_target
975
976 __do_switch_makefiles:
977 .IF "$(NOTFIRST)" != "true"
978         if exist $(MK2) $(MAKE:s/-S//) -f $(MK2) $(MAKETARGETS) NOTFIRST=true
979 .ELSE
980         $(NOOP)
981 .ENDIF
982
983 .IF "$(NOTFIRST)" != "true"
984 __done:
985         @echo Build process complete. Ignore any errors after this message.
986         @echo Run "dmake test" to test and "dmake install" to install
987
988 .ELSE
989 # dummy targets for Win95-specific makefile
990
991 __done:
992         $(NOOP)
993
994 __no_such_target:
995         $(NOOP)
996
997 .ENDIF
998
999 # This target is used to generate the new makefile (.\makefile.95) for Win95
1000
1001 .\makefile.95: .\makefile.mk
1002         $(MINIPERL) genmk95.pl makefile.mk $(MK2)
1003
1004 #--------------------- END Win95 SPECIFIC ---------------------
1005
1006 # a blank target for when builds don't need to do certain things
1007 # this target added for Win95 port but used to keep the WinNT port able to
1008 # use this file
1009 __not_needed:
1010         $(NOOP)
1011
1012 $(GLOBEXE) : perlglob$(o)
1013 .IF "$(CCTYPE)" == "BORLAND"
1014         $(CC) -c -w -v -tWM -I"$(CCINCDIR)" perlglob.c
1015         $(LINK32) -Tpe -ap $(BLINK_FLAGS) c0x32$(o) perlglob$(o) \
1016             "$(CCLIBDIR)\32BIT\wildargs$(o)",$@,,import32.lib cw32mt.lib,
1017 .ELIF "$(CCTYPE)" == "GCC"
1018         $(LINK32) $(BLINK_FLAGS) -mconsole -o $@ perlglob$(o) $(LIBFILES)
1019 .ELSE
1020         $(LINK32) $(BLINK_FLAGS) $(LIBFILES) -out:$@ -subsystem:$(SUBSYS) \
1021             perlglob$(o) setargv$(o)
1022 .ENDIF
1023
1024 perlglob$(o)  : perlglob.c
1025
1026 config.w32 : $(CFGSH_TMPL)
1027         copy $(CFGSH_TMPL) config.w32
1028
1029 .\config.h : $(CFGH_TMPL) $(CORE_NOCFG_H)
1030         -del /f config.h
1031         copy $(CFGH_TMPL) config.h
1032
1033 ..\config.sh : config.w32 $(MINIPERL) config_sh.PL FindExt.pm
1034         $(MINIPERL) -I..\lib config_sh.PL --cfgsh-option-file \
1035             $(mktmp $(CFG_VARS)) config.w32 > ..\config.sh
1036
1037 # this target is for when changes to the main config.sh happen
1038 # edit config.{b,v,g}c and make this target once for each supported
1039 # compiler (e.g. `dmake CCTYPE=BORLAND regen_config_h`)
1040 regen_config_h:
1041         perl config_sh.PL --cfgsh-option-file $(mktmp $(CFG_VARS)) \
1042             $(CFGSH_TMPL) > ..\config.sh
1043         -cd .. && del /f perl.exe
1044         -cd .. && del /f perl*.dll
1045         cd .. && perl configpm
1046         -del /f $(CFGH_TMPL)
1047         -mkdir $(COREDIR)
1048         -perl config_h.PL "INST_VER=$(INST_VER)"
1049         rename config.h $(CFGH_TMPL)
1050
1051 $(CONFIGPM) : $(MINIPERL) ..\config.sh config_h.PL ..\minimod.pl
1052         cd .. && miniperl configpm
1053         if exist lib\* $(RCOPY) lib\*.* ..\lib\$(NULL)
1054         $(XCOPY) ..\*.h $(COREDIR)\*.*
1055         $(XCOPY) *.h $(COREDIR)\*.*
1056         $(XCOPY) ..\ext\re\re.pm $(LIBDIR)\*.*
1057         $(RCOPY) include $(COREDIR)\*.*
1058         $(MINIPERL) -I..\lib config_h.PL "INST_VER=$(INST_VER)" \
1059             || $(MAKE) $(MAKEMACROS) $(CONFIGPM) $(MAKEFILE)
1060
1061 $(MINIPERL) : $(MINIDIR) $(MINI_OBJ) $(CRTIPMLIBS)
1062 .IF "$(CCTYPE)" == "BORLAND"
1063         if not exist $(CCLIBDIR)\PSDK\odbccp32.lib \
1064             cd $(CCLIBDIR)\PSDK && implib odbccp32.lib $(ODBCCP32_DLL)
1065         $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
1066             @$(mktmp c0x32$(o) $(MINI_OBJ:s,\,$B,),$(@:s,\,$B,),,$(LIBFILES),)
1067 .ELIF "$(CCTYPE)" == "GCC"
1068         $(LINK32) -v -mconsole -o $@ $(BLINK_FLAGS) \
1069             $(mktmp $(LKPRE) $(MINI_OBJ:s,\,$B,) $(LIBFILES) $(LKPOST))
1070 .ELSE
1071         $(LINK32) -subsystem:console -out:$@ \
1072             @$(mktmp $(BLINK_FLAGS) $(LIBFILES) $(MINI_OBJ:s,\,$B,))
1073 .ENDIF
1074
1075 $(MINIDIR) :
1076         if not exist "$(MINIDIR)" mkdir "$(MINIDIR)"
1077
1078 $(MINICORE_OBJ) : $(CORE_NOCFG_H)
1079         $(CC) -c $(CFLAGS) -DPERL_EXTERNAL_GLOB $(OBJOUT_FLAG)$@ ..\$(*B).c
1080
1081 $(MINIWIN32_OBJ) : $(CORE_NOCFG_H)
1082         $(CC) -c $(CFLAGS) $(OBJOUT_FLAG)$@ $(*B).c
1083
1084 # -DPERL_IMPLICIT_SYS needs C++ for perllib.c
1085 # rules wrapped in .IFs break Win9X build (we end up with unbalanced []s unless
1086 # unless the .IF is true), so instead we use a .ELSE with the default.
1087 # This is the only file that depends on perlhost.h, vmem.h, and vdir.h
1088
1089 perllib$(o)     : perllib.c .\perlhost.h .\vdir.h .\vmem.h
1090 .IF "$(USE_IMP_SYS)" == "define"
1091         $(CC) -c -I. $(CFLAGS_O) $(CXX_FLAG) $(OBJOUT_FLAG)$@ perllib.c
1092 .ELSE
1093         $(CC) -c -I. $(CFLAGS_O) $(OBJOUT_FLAG)$@ perllib.c
1094 .ENDIF
1095
1096 # 1. we don't want to rebuild miniperl.exe when config.h changes
1097 # 2. we don't want to rebuild miniperl.exe with non-default config.h
1098 $(MINI_OBJ)     : $(CORE_NOCFG_H)
1099
1100 $(WIN32_OBJ)    : $(CORE_H)
1101
1102 $(CORE_OBJ)     : $(CORE_H)
1103
1104 $(DLL_OBJ)      : $(CORE_H)
1105
1106 $(X2P_OBJ)      : $(CORE_H)
1107
1108 perldll.def : $(MINIPERL) $(CONFIGPM) ..\global.sym ..\pp.sym ..\makedef.pl
1109         $(MINIPERL) -I..\lib buildext.pl --create-perllibst-h
1110         $(MINIPERL) -w ..\makedef.pl PLATFORM=win32 $(OPTIMIZE) $(DEFINES) \
1111         $(BUILDOPT) CCTYPE=$(CCTYPE) > perldll.def
1112
1113 $(PERLDLL): perldll.def $(PERLDLL_OBJ) $(PERLDLL_RES) Extensions_static
1114 .IF "$(CCTYPE)" == "BORLAND"
1115         $(LINK32) -Tpd -ap $(BLINK_FLAGS) \
1116             @$(mktmp c0d32$(o) $(PERLDLL_OBJ:s,\,$B,)$N \
1117                 $@,$N \
1118                 $(subst,\,$B $(shell @type Extensions_static)) $(LIBFILES)$N \
1119                 perldll.def$N)
1120         $(IMPLIB) $*.lib $@
1121 .ELIF "$(CCTYPE)" == "GCC"
1122         $(LINK32) -mdll -o $@ -Wl,--base-file -Wl,perl.base $(BLINK_FLAGS) \
1123             $(mktmp $(LKPRE) $(PERLDLL_OBJ:s,\,$B,) \
1124                 $(subst,\,$B $(shell @type Extensions_static)) \
1125                 $(LIBFILES) $(LKPOST))
1126         dlltool --output-lib $(PERLIMPLIB) \
1127                 --dllname $(PERLDLL:b).dll \
1128                 --def perldll.def \
1129                 --base-file perl.base \
1130                 --output-exp perl.exp
1131         $(LINK32) -mdll -o $@ $(BLINK_FLAGS) \
1132             $(mktmp $(LKPRE) $(PERLDLL_OBJ:s,\,$B,) \
1133                 $(subst,\,$B $(shell @type Extensions_static)) \
1134                 $(LIBFILES) perl.exp $(LKPOST))
1135 .ELSE
1136         $(LINK32) -dll -def:perldll.def -out:$@ \
1137             @Extensions_static \
1138             @$(mktmp -base:0x28000000 $(BLINK_FLAGS) $(DELAYLOAD) $(LIBFILES) \
1139                 $(PERLDLL_RES) $(PERLDLL_OBJ:s,\,$B,))
1140 .ENDIF
1141         $(XCOPY) $(PERLIMPLIB) $(COREDIR)
1142
1143
1144 $(PERLEXE_ICO): $(MINIPERL) makeico.pl
1145         $(MINIPERL) makeico.pl > $@
1146
1147 $(PERLEXE_RES): perlexe.rc $(PERLEXE_ICO)
1148
1149 $(MINIMOD) : $(MINIPERL) ..\minimod.pl
1150         cd .. && miniperl minimod.pl > lib\ExtUtils\Miniperl.pm
1151
1152 ..\x2p\a2p$(o) : ..\x2p\a2p.c
1153         $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\a2p.c
1154
1155 ..\x2p\hash$(o) : ..\x2p\hash.c
1156         $(CC) -I..\x2p  $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\hash.c
1157
1158 ..\x2p\str$(o) : ..\x2p\str.c
1159         $(CC) -I..\x2p  $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\str.c
1160
1161 ..\x2p\util$(o) : ..\x2p\util.c
1162         $(CC) -I..\x2p  $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\util.c
1163
1164 ..\x2p\walk$(o) : ..\x2p\walk.c
1165         $(CC) -I..\x2p  $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\walk.c
1166
1167 $(X2P) : $(MINIPERL) $(X2P_OBJ)
1168         $(MINIPERL) ..\x2p\find2perl.PL
1169         $(MINIPERL) ..\x2p\s2p.PL
1170 .IF "$(CCTYPE)" == "BORLAND"
1171         $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
1172             @$(mktmp c0x32$(o) $(X2P_OBJ:s,\,$B,),$(@:s,\,$B,),,$(LIBFILES),)
1173 .ELIF "$(CCTYPE)" == "GCC"
1174         $(LINK32) -v -o $@ $(BLINK_FLAGS) \
1175             $(mktmp $(LKPRE) $(X2P_OBJ:s,\,$B,) $(LIBFILES) $(LKPOST))
1176 .ELSE
1177         $(LINK32) -subsystem:console -out:$@ \
1178             @$(mktmp $(BLINK_FLAGS) $(LIBFILES) $(X2P_OBJ:s,\,$B,))
1179 .ENDIF
1180
1181 perlmain.c : runperl.c
1182         copy runperl.c perlmain.c
1183
1184 perlmain$(o) : perlmain.c
1185         $(CC) $(CFLAGS_O) -UPERLDLL $(OBJOUT_FLAG)$@ -c perlmain.c
1186
1187 $(PERLEXE): $(PERLDLL) $(CONFIGPM) $(PERLEXE_OBJ) $(PERLEXE_RES)
1188 .IF "$(CCTYPE)" == "BORLAND"
1189         $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
1190             @$(mktmp c0x32$(o) $(PERLEXE_OBJ:s,\,$B,)$N \
1191             $(@:s,\,$B,),$N \
1192             $(PERLIMPLIB) $(LIBFILES)$N)
1193 .ELIF "$(CCTYPE)" == "GCC"
1194         $(LINK32) -mconsole -o $@ $(BLINK_FLAGS)  \
1195             $(PERLEXE_OBJ) $(PERLIMPLIB) $(LIBFILES)
1196 .ELSE
1197         $(LINK32) -subsystem:console -out:$@ -stack:0x1000000 $(BLINK_FLAGS) \
1198             $(LIBFILES) $(PERLEXE_OBJ) $(SETARGV_OBJ) $(PERLIMPLIB) $(PERLEXE_RES)
1199 .ENDIF
1200         copy $(PERLEXE) $(WPERLEXE)
1201         $(MINIPERL) -I..\lib bin\exetype.pl $(WPERLEXE) WINDOWS
1202         copy splittree.pl ..
1203         $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR)
1204
1205 $(DYNALOADER).c: $(MINIPERL) $(EXTDIR)\DynaLoader\dl_win32.xs $(CONFIGPM)
1206         if not exist $(AUTODIR) mkdir $(AUTODIR)
1207         cd $(EXTDIR)\$(*B) && ..\$(MINIPERL) -I..\..\lib $(*B)_pm.PL
1208         cd $(EXTDIR)\$(*B) && ..\$(MINIPERL) -I..\..\lib XSLoader_pm.PL
1209         $(XCOPY) $(EXTDIR)\$(*B)\$(*B).pm $(LIBDIR)\$(NULL)
1210         $(XCOPY) $(EXTDIR)\$(*B)\XSLoader.pm $(LIBDIR)\$(NULL)
1211         cd $(EXTDIR)\$(*B) && $(XSUBPP) dl_win32.xs > $(*B).c
1212         $(XCOPY) $(EXTDIR)\$(*B)\dlutils.c .
1213
1214 $(EXTDIR)\DynaLoader\dl_win32.xs: dl_win32.xs
1215         copy dl_win32.xs $(EXTDIR)\DynaLoader\dl_win32.xs
1216
1217 #-------------------------------------------------------------------------------
1218 Extensions : buildext.pl $(PERLDEP) $(CONFIGPM)
1219         $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) --dynamic
1220         $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext --dynamic
1221
1222 Extensions_static : buildext.pl
1223         $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) --static
1224         $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext --static
1225         $(MINIPERL) -I..\lib buildext.pl --list-static-libs > Extensions_static
1226
1227 Extensions_clean :
1228         -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) clean
1229         -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext clean
1230
1231 Extensions_realclean :
1232         -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) realclean
1233         -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext realclean
1234
1235 #-------------------------------------------------------------------------------
1236
1237
1238 doc: $(PERLEXE)
1239         $(PERLEXE) -I..\lib ..\installhtml --podroot=.. --htmldir=./html \
1240             --podpath=pod:lib:ext:utils --htmlroot="file://$(INST_HTML:s,:,|,)"\
1241             --libpod=perlfunc:perlguts:perlvar:perlrun:perlop --recurse
1242
1243 # Note that this next section is parsed (and regenerated) by pod/buildtoc
1244 # so please check that script before making structural changes here
1245 utils: $(PERLEXE) $(X2P)
1246         cd ..\utils && $(MAKE) PERL=$(MINIPERL)
1247         copy ..\vms\perlvms.pod ..\pod\perlvms.pod
1248         copy ..\README.aix      ..\pod\perlaix.pod
1249         copy ..\README.amiga    ..\pod\perlamiga.pod
1250         copy ..\README.apollo   ..\pod\perlapollo.pod
1251         copy ..\README.beos     ..\pod\perlbeos.pod
1252         copy ..\README.bs2000   ..\pod\perlbs2000.pod
1253         copy ..\README.ce       ..\pod\perlce.pod
1254         copy ..\README.cn       ..\pod\perlcn.pod
1255         copy ..\README.cygwin   ..\pod\perlcygwin.pod
1256         copy ..\README.dgux     ..\pod\perldgux.pod
1257         copy ..\README.dos      ..\pod\perldos.pod
1258         copy ..\README.epoc     ..\pod\perlepoc.pod
1259         copy ..\README.freebsd  ..\pod\perlfreebsd.pod
1260         copy ..\README.hpux     ..\pod\perlhpux.pod
1261         copy ..\README.hurd     ..\pod\perlhurd.pod
1262         copy ..\README.irix     ..\pod\perlirix.pod
1263         copy ..\README.jp       ..\pod\perljp.pod
1264         copy ..\README.ko       ..\pod\perlko.pod
1265         copy ..\README.linux    ..\pod\perllinux.pod
1266         copy ..\README.machten  ..\pod\perlmachten.pod
1267         copy ..\README.macos    ..\pod\perlmacos.pod
1268         copy ..\README.macosx   ..\pod\perlmacosx.pod
1269         copy ..\README.mint     ..\pod\perlmint.pod
1270         copy ..\README.mpeix    ..\pod\perlmpeix.pod
1271         copy ..\README.netware  ..\pod\perlnetware.pod
1272         copy ..\README.openbsd  ..\pod\perlopenbsd.pod
1273         copy ..\README.os2      ..\pod\perlos2.pod
1274         copy ..\README.os390    ..\pod\perlos390.pod
1275         copy ..\README.os400    ..\pod\perlos400.pod
1276         copy ..\README.plan9    ..\pod\perlplan9.pod
1277         copy ..\README.qnx      ..\pod\perlqnx.pod
1278         copy ..\README.solaris  ..\pod\perlsolaris.pod
1279         copy ..\README.symbian  ..\pod\perlsymbian.pod
1280         copy ..\README.tru64    ..\pod\perltru64.pod
1281         copy ..\README.tw       ..\pod\perltw.pod
1282         copy ..\README.uts      ..\pod\perluts.pod
1283         copy ..\README.vmesa    ..\pod\perlvmesa.pod
1284         copy ..\README.vms      ..\pod\perlvms.pod
1285         copy ..\README.vos      ..\pod\perlvos.pod
1286         copy ..\README.win32    ..\pod\perlwin32.pod
1287         copy ..\pod\perl594delta.pod ..\pod\perldelta.pod
1288         cd ..\pod && $(MAKE) -f ..\win32\pod.mak converters
1289         cd ..\lib && $(PERLEXE) lib_pm.PL
1290         $(PERLEXE) $(PL2BAT) $(UTILS)
1291
1292 # Note that the pod cleanup in this next section is parsed (and regenerated
1293 # by pod/buildtoc so please check that script before making changes here
1294
1295 distclean: realclean
1296         -del /f $(MINIPERL) $(PERLEXE) $(PERLDLL) $(GLOBEXE) \
1297                 $(PERLIMPLIB) ..\miniperl$(a) $(MINIMOD)
1298         -del /f *.def *.map
1299         -del /f $(DYNALOADER).c
1300         -del /f $(EXTDIR)\DynaLoader\dl_win32.xs
1301         -del /f $(EXTDIR)\DynaLoader\DynaLoader.pm
1302         -del /f $(EXTDIR)\DynaLoader\XSLoader.pm
1303         -del /f $(LIBDIR)\Encode.pm $(LIBDIR)\encoding.pm $(LIBDIR)\Errno.pm
1304         -del /f $(LIBDIR)\Config.pod $(LIBDIR)\POSIX.pod $(LIBDIR)\threads.pm
1305         -del /f $(LIBDIR)\.exists $(LIBDIR)\attrs.pm $(LIBDIR)\DynaLoader.pm
1306         -del /f $(LIBDIR)\XSLoader.pm $(LIBDIR)\lib.pm
1307         -del /f $(LIBDIR)\Fcntl.pm $(LIBDIR)\IO.pm $(LIBDIR)\Opcode.pm
1308         -del /f $(LIBDIR)\ops.pm $(LIBDIR)\Safe.pm
1309         -del /f $(LIBDIR)\SDBM_File.pm $(LIBDIR)\Socket.pm $(LIBDIR)\POSIX.pm
1310         -del /f $(LIBDIR)\B.pm $(LIBDIR)\O.pm $(LIBDIR)\re.pm
1311         -del /f $(LIBDIR)\ByteLoader.pm
1312         -del /f $(LIBDIR)\Devel\Peek.pm $(LIBDIR)\Devel\DProf.pm
1313         -del /f $(LIBDIR)\Devel\PPPort.pm
1314         -del /f $(LIBDIR)\File\Glob.pm
1315         -del /f $(LIBDIR)\Storable.pm
1316         -del /f $(LIBDIR)\Digest\MD5.pm
1317         -del /f $(LIBDIR)\Digest\SHA.pm
1318         -del /f $(LIBDIR)\PerlIO\encoding.pm
1319         -del /f $(LIBDIR)\PerlIO\scalar.pm
1320         -del /f $(LIBDIR)\PerlIO\via.pm
1321         -del /f $(LIBDIR)\Sys\Hostname.pm
1322         -del /f $(LIBDIR)\Thread\Signal.pm $(LIBDIR)\Thread\Specific.pm
1323         -del /f $(LIBDIR)\threads\shared.pm
1324         -del /f $(LIBDIR)\Time\HiRes.pm
1325         -del /f $(LIBDIR)\Unicode\Normalize.pm
1326         -del /f $(LIBDIR)\Math\BigInt\FastCalc.pm
1327         -del /f $(LIBDIR)\Win32.pm
1328         -if exist $(LIBDIR)\B rmdir /s /q $(LIBDIR)\B
1329         -if exist $(LIBDIR)\Compress rmdir /s /q $(LIBDIR)\Compress
1330         -if exist $(LIBDIR)\Data rmdir /s /q $(LIBDIR)\Data
1331         -if exist $(LIBDIR)\Encode rmdir /s /q $(LIBDIR)\Encode
1332         -if exist $(LIBDIR)\Filter\Util rmdir /s /q $(LIBDIR)\Filter\Util
1333         -if exist $(LIBDIR)\Hash rmdir /s /q $(LIBDIR)\Hash
1334         -if exist $(LIBDIR)\IO\Compress rmdir /s /q $(LIBDIR)\IO\Compress
1335         -if exist $(LIBDIR)\IO\Socket rmdir /s /q $(LIBDIR)\IO\Socket
1336         -if exist $(LIBDIR)\IO\Uncompress rmdir /s /q $(LIBDIR)\IO\Uncompress
1337         -if exist $(LIBDIR)\List rmdir /s /q $(LIBDIR)\List
1338         -if exist $(LIBDIR)\MIME rmdir /s /q $(LIBDIR)\MIME
1339         -if exist $(LIBDIR)\Scalar rmdir /s /q $(LIBDIR)\Scalar
1340         -if exist $(LIBDIR)\Sys rmdir /s /q $(LIBDIR)\Sys
1341         -if exist $(LIBDIR)\threads rmdir /s /q $(LIBDIR)\threads
1342         -if exist $(LIBDIR)\XS rmdir /s /q $(LIBDIR)\XS
1343         -cd $(PODDIR) && del /f *.html *.bat checkpods \
1344             perlaix.pod perlamiga.pod perlapollo.pod perlbeos.pod \
1345             perlbs2000.pod perlce.pod perlcn.pod perlcygwin.pod \
1346             perldelta.pod perldgux.pod perldos.pod perlepoc.pod \
1347             perlfreebsd.pod perlhpux.pod perlhurd.pod perlirix.pod \
1348             perljp.pod perlko.pod perllinux.pod perlmachten.pod \
1349             perlmacos.pod perlmacosx.pod perlmint.pod perlmpeix.pod \
1350             perlnetware.pod perlopenbsd.pod perlos2.pod perlos390.pod \
1351             perlos400.pod perlplan9.pod perlqnx.pod perlsolaris.pod \
1352             perlsymbian.pod perltru64.pod perltw.pod perluts.pod \
1353             perlvmesa.pod perlvms.pod perlvms.pod perlvos.pod perlwin32.pod \
1354             pod2html pod2latex pod2man pod2text pod2usage \
1355             podchecker podselect
1356         -cd ..\utils && del /f h2ph splain perlbug pl2pm c2ph pstruct h2xs \
1357             perldoc perlivp dprofpp perlcc libnetcfg enc2xs piconv cpan *.bat \
1358             xsubpp instmodsh prove ptar ptardiff shasum corelist config_data
1359         -cd ..\x2p && del /f find2perl s2p psed *.bat
1360         -del /f ..\config.sh ..\splittree.pl perlmain.c dlutils.c config.h.new
1361         -del /f $(CONFIGPM)
1362         -del /f bin\*.bat
1363         -del /f perllibst.h
1364         -del /f $(PERLEXE_ICO) perl.base
1365         -cd .. && del /s *$(a) *.map *.pdb *.ilk *.tds *.bs *$(o) .exists pm_to_blib
1366         -cd $(EXTDIR) && del /s *.def Makefile Makefile.old
1367         -if exist $(AUTODIR) rmdir /s /q $(AUTODIR)
1368         -if exist $(COREDIR) rmdir /s /q $(COREDIR)
1369
1370 install : all installbare installhtml
1371
1372 installbare : $(RIGHTMAKE) utils
1373         $(PERLEXE) ..\installperl
1374         if exist $(WPERLEXE) $(XCOPY) $(WPERLEXE) $(INST_BIN)\*.*
1375         $(XCOPY) $(GLOBEXE) $(INST_BIN)\*.*
1376         if exist ..\perl*.pdb $(XCOPY) ..\perl*.pdb $(INST_BIN)\*.*
1377         if exist ..\x2p\a2p.pdb $(XCOPY) ..\x2p\a2p.pdb $(INST_BIN)\*.*
1378         $(XCOPY) bin\*.bat $(INST_SCRIPT)\*.*
1379
1380 installhtml : doc
1381         $(RCOPY) html\*.* $(INST_HTML)\*.*
1382
1383 inst_lib : $(CONFIGPM)
1384         copy splittree.pl ..
1385         $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR)
1386         $(RCOPY) ..\lib $(INST_LIB)\*.*
1387
1388 $(UNIDATAFILES) .UPDATEALL : $(MINIPERL) $(CONFIGPM) ..\lib\unicore\mktables
1389         cd ..\lib\unicore && \
1390         ..\$(MINIPERL) -I.. mktables
1391
1392 minitest : $(MINIPERL) $(GLOBEXE) $(CONFIGPM) $(UNIDATAFILES) utils
1393         $(XCOPY) $(MINIPERL) ..\t\$(NULL)
1394         if exist ..\t\perl.exe del /f ..\t\perl.exe
1395         rename ..\t\miniperl.exe perl.exe
1396 .IF "$(CCTYPE)" == "BORLAND"
1397         $(XCOPY) $(GLOBBAT) ..\t\$(NULL)
1398 .ELSE
1399         $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1400 .ENDIF
1401         attrib -r ..\t\*.*
1402         cd ..\t && \
1403         $(MINIPERL) -I..\lib harness base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t
1404
1405 test-prep : all utils
1406         $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1407         $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1408 .IF "$(CCTYPE)" == "BORLAND"
1409         $(XCOPY) $(GLOBBAT) ..\t\$(NULL)
1410 .ELSE
1411         $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1412 .ENDIF
1413
1414 test : $(RIGHTMAKE) test-prep
1415         cd ..\t && $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES)
1416
1417 test-notty : test-prep
1418         set PERL_SKIP_TTY_TEST=1 && \
1419             cd ..\t && $(PERLEXE) -I.\lib harness $(TEST_SWITCHES) $(TEST_FILES)
1420
1421 _test : $(RIGHTMAKE)
1422         $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1423         $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1424 .IF "$(CCTYPE)" == "BORLAND"
1425         $(XCOPY) $(GLOBBAT) ..\t\$(NULL)
1426 .ELSE
1427         $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1428 .ENDIF
1429         cd ..\t && $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES)
1430
1431 _clean :
1432         -@erase miniperlmain$(o)
1433         -@erase $(MINIPERL)
1434         -@erase perlglob$(o)
1435         -@erase perlmain$(o)
1436         -@erase config.w32
1437         -@erase /f config.h
1438         -@erase $(GLOBEXE)
1439         -@erase $(PERLEXE)
1440         -@erase $(WPERLEXE)
1441         -@erase $(PERLDLL)
1442         -@erase $(CORE_OBJ)
1443         -if exist $(MINIDIR) rmdir /s /q $(MINIDIR)
1444         -if exist $(UNIDATADIR1) rmdir /s /q $(UNIDATADIR1)
1445         -if exist $(UNIDATADIR2) rmdir /s /q $(UNIDATADIR2)
1446         -@erase $(UNIDATAFILES)
1447         -@erase $(WIN32_OBJ)
1448         -@erase $(DLL_OBJ)
1449         -@erase $(X2P_OBJ)
1450         -@erase ..\*$(o) ..\*$(a) ..\*.exp *$(o) *$(a) *.exp *.res
1451         -@erase ..\t\*.exe ..\t\*.dll ..\t\*.bat
1452         -@erase ..\x2p\*.exe ..\x2p\*.bat
1453         -@erase *.ilk
1454         -@erase *.pdb
1455         -@erase *.tds
1456         -@erase Extensions_static
1457
1458 clean : Extensions_clean _clean
1459
1460 realclean : Extensions_realclean _clean
1461
1462 # Handy way to run perlbug -ok without having to install and run the
1463 # installed perlbug. We don't re-run the tests here - we trust the user.
1464 # Please *don't* use this unless all tests pass.
1465 # If you want to report test failures, use "dmake nok" instead.
1466 ok: utils
1467         $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)"
1468
1469 okfile: utils
1470         $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)" -F perl.ok
1471
1472 nok: utils
1473         $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)"
1474
1475 nokfile: utils
1476         $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)" -F perl.nok