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