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