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