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