Revert core fixes for IO-Compress following IO-Compress update
[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#
6f15df47 37#INST_VER *= \5.11.1
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 \
470 version.lib odbc32.lib odbccp32.lib \
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 \
8169a885 538 -lwinmm -lversion -lodbc32 -lodbccp32
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
664# used to allow local linking flags that are not propogated into Config.pm,
665# currently unused
666# -- BKS, 12-12-1999
667PRIV_LINK_FLAGS *=
668BLINK_FLAGS = $(PRIV_LINK_FLAGS) $(LINK_FLAGS)
669
670#################### do not edit below this line #######################
671############# NO USER-SERVICEABLE PARTS BEYOND THIS POINT ##############
672
13631a73 673# Some old dmakes (including Sarathy's one at
674# http://search.cpan.org/CPAN/authors/id/G/GS/GSAR/dmake-4.1pl1-win32.zip)
675# don't support logical OR (||) or logical AND (&&) in conditional
676# expressions and hence don't process this makefile correctly. Determine
677# whether this is the case so that we can give the user an error message.
678.IF 1 == 1 || 1 == 1
679NEWDMAKE = define
66e09d83 680.ELSE
13631a73 681NEWDMAKE = undef
e54e7e92 682.ENDIF
683
1e71036e 684o *= .obj
685a *= .lib
686
687LKPRE = INPUT (
688LKPOST = )
689
690#
691# Rules
692#
693
694.SUFFIXES : .c .i $(o) .dll $(a) .exe .rc .res
695
696.c$(o):
697 $(CC) -c $(null,$(<:d) $(NULL) -I$(<:d)) $(CFLAGS_O) $(OBJOUT_FLAG)$@ $<
698
699.c.i:
700 $(CC) -c $(null,$(<:d) $(NULL) -I$(<:d)) $(CFLAGS_O) -E $< >$@
701
702.y.c:
703 $(NOOP)
704
705$(o).dll:
706.IF "$(CCTYPE)" == "BORLAND"
707 $(LINK32) -Tpd -ap $(BLINK_FLAGS) c0d32$(o) $<,$@,,$(LIBFILES),$(*B).def
708 $(IMPLIB) $(*B).lib $@
709.ELIF "$(CCTYPE)" == "GCC"
710 $(LINK32) -o $@ $(BLINK_FLAGS) $< $(LIBFILES)
711 $(IMPLIB) --input-def $(*B).def --output-lib $(*B).a $@
712.ELSE
713 $(LINK32) -dll -subsystem:windows -implib:$(*B).lib -def:$(*B).def \
714 -out:$@ $(BLINK_FLAGS) $(LIBFILES) $< $(LIBPERL)
c8e599d3 715 $(EMBED_DLL_MANI)
1e71036e 716.ENDIF
717
718.rc.res:
770c139a 719.IF "$(CCTYPE)" == "GCC"
a4a4db2c 720 $(RSC) --use-temp-file --include-dir=. --include-dir=.. -O COFF -i $< -o $@
770c139a 721.ELSE
722 $(RSC) -i.. $<
723.ENDIF
1e71036e 724
725#
726# various targets
727MINIPERL = ..\miniperl.exe
728MINIDIR = .\mini
729PERLEXE = ..\perl.exe
730WPERLEXE = ..\wperl.exe
ed2eab3f 731PERLEXESTATIC = ..\perl-static.exe
1e71036e 732GLOBEXE = ..\perlglob.exe
2d9d8159 733CONFIGPM = ..\lib\Config.pm ..\lib\Config_heavy.pl
1e71036e 734MINIMOD = ..\lib\ExtUtils\Miniperl.pm
735X2P = ..\x2p\a2p.exe
202d1001 736GENUUDMAP = ..\generate_uudmap.exe
ed2eab3f 737.IF "$(BUILD_STATIC)" == "define"
738PERLSTATIC = static
739.ELSE
740PERLSTATIC =
741.ENDIF
1e71036e 742
ca12659b 743# Unicode data files generated by mktables
744UNIDATAFILES = ..\lib\unicore\Canonical.pl ..\lib\unicore\Exact.pl \
745 ..\lib\unicore\Properties ..\lib\unicore\Decomposition.pl \
7ebf06b3 746 ..\lib\unicore\CombiningClass.pl ..\lib\unicore\Name.pl \
747 ..\lib\unicore\PVA.pl
ca12659b 748
749# Directories of Unicode data files generated by mktables
27a8011f 750UNIDATADIR1 = ..\lib\unicore\To
751UNIDATADIR2 = ..\lib\unicore\lib
ca12659b 752
3890b58f 753PERLEXE_ICO = .\perlexe.ico
754PERLEXE_RES = .\perlexe.res
755PERLDLL_RES =
756
1e71036e 757# Nominate a target which causes extensions to be re-built
758# This used to be $(PERLEXE), but at worst it is the .dll that they depend
759# on and really only the interface - i.e. the .def file used to export symbols
760# from the .dll
761PERLDEP = perldll.def
762
763
764PL2BAT = bin\pl2bat.pl
765GLOBBAT = bin\perlglob.bat
766
767UTILS = \
768 ..\utils\h2ph \
769 ..\utils\splain \
770 ..\utils\dprofpp \
771 ..\utils\perlbug \
772 ..\utils\pl2pm \
773 ..\utils\c2ph \
827a599d 774 ..\utils\pstruct \
1e71036e 775 ..\utils\h2xs \
776 ..\utils\perldoc \
1e71036e 777 ..\utils\perlivp \
778 ..\utils\libnetcfg \
827a599d 779 ..\utils\enc2xs \
780 ..\utils\piconv \
bb4e9162 781 ..\utils\config_data \
18a1cebe 782 ..\utils\corelist \
83cd6e83 783 ..\utils\cpan \
ea0e987d 784 ..\utils\xsubpp \
4b618757 785 ..\utils\prove \
291d3373 786 ..\utils\ptar \
b8669316 787 ..\utils\ptardiff \
6aaee015 788 ..\utils\cpanp-run-perl \
789 ..\utils\cpanp \
790 ..\utils\cpan2dist \
3ddf9550 791 ..\utils\shasum \
ea0e987d 792 ..\utils\instmodsh \
1e71036e 793 ..\pod\pod2html \
794 ..\pod\pod2latex \
795 ..\pod\pod2man \
796 ..\pod\pod2text \
797 ..\pod\pod2usage \
798 ..\pod\podchecker \
799 ..\pod\podselect \
800 ..\x2p\find2perl \
827a599d 801 ..\x2p\psed \
1e71036e 802 ..\x2p\s2p \
1e71036e 803 bin\exetype.pl \
804 bin\runperl.pl \
805 bin\pl2bat.pl \
806 bin\perlglob.pl \
807 bin\search.pl
808
809.IF "$(CCTYPE)" == "BORLAND"
810
811CFGSH_TMPL = config.bc
812CFGH_TMPL = config_H.bc
813
814.ELIF "$(CCTYPE)" == "GCC"
815
fa58a56f 816.IF "$(WIN64)" == "define"
817.IF "$(GCCCROSS)" == "define"
818CFGSH_TMPL = config.gc64
819CFGH_TMPL = config_H.gc64
820.ELSE
821CFGSH_TMPL = config.gc64nox
822CFGH_TMPL = config_H.gc64nox
823.ENDIF
824.ELSE
1e71036e 825CFGSH_TMPL = config.gc
826CFGH_TMPL = config_H.gc
fa58a56f 827.ENDIF
95bfaf42 828PERLIMPLIB = ..\libperl511$(a)
829PERLSTATICLIB = ..\libperl511s$(a)
1e71036e 830
831.ELSE
832
c623ac67 833.IF "$(WIN64)" == "define"
834CFGSH_TMPL = config.vc64
835CFGH_TMPL = config_H.vc64
836.ELSE
1e71036e 837CFGSH_TMPL = config.vc
838CFGH_TMPL = config_H.vc
c623ac67 839.ENDIF
1e71036e 840
841.ENDIF
842
843# makedef.pl must be updated if this changes, and this should normally
844# only change when there is an incompatible revision of the public API.
95bfaf42 845PERLIMPLIB *= ..\perl511$(a)
846PERLSTATICLIB *= ..\perl511s$(a)
847PERLDLL = ..\perl511.dll
1e71036e 848
b6ed7314 849XCOPY = xcopy /f /r /i /d /y
850RCOPY = xcopy /f /r /i /e /d /y
65980d94 851NOOP = @rem
1e71036e 852
1e71036e 853MICROCORE_SRC = \
854 ..\av.c \
855 ..\deb.c \
856 ..\doio.c \
857 ..\doop.c \
858 ..\dump.c \
859 ..\globals.c \
860 ..\gv.c \
e1a479c5 861 ..\mro.c \
1e71036e 862 ..\hv.c \
863 ..\locale.c \
a0d89a74 864 ..\mathoms.c \
1e71036e 865 ..\mg.c \
866 ..\numeric.c \
867 ..\op.c \
ff6de8cd 868 ..\pad.c \
1e71036e 869 ..\perl.c \
870 ..\perlapi.c \
871 ..\perly.c \
872 ..\pp.c \
873 ..\pp_ctl.c \
874 ..\pp_hot.c \
875 ..\pp_pack.c \
84d4ea48 876 ..\pp_sort.c \
1e71036e 877 ..\pp_sys.c \
10bc17b6 878 ..\reentr.c \
1e71036e 879 ..\regcomp.c \
880 ..\regexec.c \
881 ..\run.c \
882 ..\scope.c \
883 ..\sv.c \
884 ..\taint.c \
885 ..\toke.c \
886 ..\universal.c \
887 ..\utf8.c \
48462a74 888 ..\util.c
1e71036e 889
890EXTRACORE_SRC += perllib.c
891
892.IF "$(PERL_MALLOC)" == "define"
893EXTRACORE_SRC += ..\malloc.c
894.ENDIF
895
1e71036e 896EXTRACORE_SRC += ..\perlio.c
1e71036e 897
898WIN32_SRC = \
899 .\win32.c \
1e71036e 900 .\win32sck.c \
901 .\win32thread.c
902
b6d604f4 903# We need this for miniperl build unless we override canned
904# config.h #define building mini\*
905#.IF "$(USE_PERLIO)" == "define"
6ea0e807 906WIN32_SRC += .\win32io.c
b6d604f4 907#.ENDIF
6ea0e807 908
1e71036e 909.IF "$(CRYPT_SRC)" != ""
910WIN32_SRC += .\$(CRYPT_SRC)
911.ENDIF
912
1e71036e 913X2P_SRC = \
914 ..\x2p\a2p.c \
915 ..\x2p\hash.c \
916 ..\x2p\str.c \
917 ..\x2p\util.c \
918 ..\x2p\walk.c
919
920CORE_NOCFG_H = \
921 ..\av.h \
922 ..\cop.h \
923 ..\cv.h \
924 ..\dosish.h \
925 ..\embed.h \
926 ..\form.h \
927 ..\gv.h \
928 ..\handy.h \
929 ..\hv.h \
930 ..\iperlsys.h \
931 ..\mg.h \
932 ..\nostdio.h \
933 ..\op.h \
934 ..\opcode.h \
935 ..\perl.h \
936 ..\perlapi.h \
937 ..\perlsdio.h \
938 ..\perlsfio.h \
939 ..\perly.h \
940 ..\pp.h \
941 ..\proto.h \
cdb0f547 942 ..\regcomp.h \
1e71036e 943 ..\regexp.h \
944 ..\scope.h \
945 ..\sv.h \
946 ..\thread.h \
947 ..\unixish.h \
948 ..\utf8.h \
949 ..\util.h \
950 ..\warnings.h \
951 ..\XSUB.h \
952 ..\EXTERN.h \
953 ..\perlvars.h \
954 ..\intrpvar.h \
1e71036e 955 .\include\dirent.h \
956 .\include\netdb.h \
957 .\include\sys\socket.h \
958 .\win32.h
959
a148edb6 960CORE_H = $(CORE_NOCFG_H) .\config.h ..\git_version.h
1e71036e 961
202d1001 962UUDMAP_H = ..\uudmap.h
efa50c51 963BITCOUNT_H = ..\bitcount.h
202d1001 964
1e71036e 965MICROCORE_OBJ = $(MICROCORE_SRC:db:+$(o))
966CORE_OBJ = $(MICROCORE_OBJ) $(EXTRACORE_SRC:db:+$(o))
967WIN32_OBJ = $(WIN32_SRC:db:+$(o))
968MINICORE_OBJ = $(MINIDIR)\{$(MICROCORE_OBJ:f) miniperlmain$(o) perlio$(o)}
ba14dd9a 969MINIWIN32_OBJ = $(MINIDIR)\{$(WIN32_OBJ:f)}
1e71036e 970MINI_OBJ = $(MINICORE_OBJ) $(MINIWIN32_OBJ)
281da5ea 971DLL_OBJ = $(DYNALOADER)
1e71036e 972X2P_OBJ = $(X2P_SRC:db:+$(o))
202d1001 973GENUUDMAP_OBJ = $(GENUUDMAP:db:+$(o))
1e71036e 974
975PERLDLL_OBJ = $(CORE_OBJ)
976PERLEXE_OBJ = perlmain$(o)
ed2eab3f 977PERLEXEST_OBJ = perlmainst$(o)
1e71036e 978
979PERLDLL_OBJ += $(WIN32_OBJ) $(DLL_OBJ)
980
981.IF "$(USE_SETARGV)" != ""
982SETARGV_OBJ = setargv$(o)
983.ENDIF
984
a1f2e719 985.IF "$(ALL_STATIC)" == "define"
986# some exclusions, unfortunately, until fixed:
987# - Win32 extension contains overlapped symbols with win32.c (BUG!)
988# - MakeMaker isn't capable enough for SDBM_File (smaller bug)
989# - Encode (encoding search algorithm relies on shared library?)
9788a75a 990STATIC_EXT = * !Win32 !SDBM_File !Encode
a1f2e719 991.ELSE
992# specify static extensions here, for example:
47ef3394 993#STATIC_EXT = Cwd Compress/Raw/Zlib
78ff2d7b 994STATIC_EXT = Win32CORE
a1f2e719 995.ENDIF
1e71036e 996
281da5ea 997DYNALOADER = ..\DynaLoader$(o)
1e71036e 998
1e71036e 999# vars must be separated by "\t+~\t+", since we're using the tempfile
1000# version of config_sh.pl (we were overflowing someone's buffer by
1001# trying to fit them all on the command line)
1002# -- BKS 10-17-1999
1003CFG_VARS = \
1004 INST_DRV=$(INST_DRV) ~ \
13631a73 1005 INST_TOP=$(INST_TOP) ~ \
1006 INST_VER=$(INST_VER) ~ \
1e71036e 1007 INST_ARCH=$(INST_ARCH) ~ \
1008 archname=$(ARCHNAME) ~ \
1009 cc=$(CC) ~ \
1010 ld=$(LINK32) ~ \
bb275e72 1011 ccflags=$(EXTRACFLAGS) $(OPTIMIZE) $(DEFINES) $(BUILDOPT) ~ \
1e71036e 1012 cf_email=$(EMAIL) ~ \
1013 d_crypt=$(D_CRYPT) ~ \
1014 d_mymalloc=$(PERL_MALLOC) ~ \
1015 libs=$(LIBFILES:f) ~ \
13631a73 1016 incpath=$(CCINCDIR) ~ \
1e71036e 1017 libperl=$(PERLIMPLIB:f) ~ \
13631a73 1018 libpth=$(CCLIBDIR);$(EXTRALIBDIRS) ~ \
1e71036e 1019 libc=$(LIBC) ~ \
1020 make=dmake ~ \
84c322f7 1021 _o=$(o) ~ \
1022 obj_ext=$(o) ~ \
1023 _a=$(a) ~ \
1024 lib_ext=$(a) ~ \
1e71036e 1025 static_ext=$(STATIC_EXT) ~ \
7e0017d3 1026 usethreads=$(USE_ITHREADS) ~ \
1e71036e 1027 useithreads=$(USE_ITHREADS) ~ \
1e71036e 1028 usemultiplicity=$(USE_MULTI) ~ \
1029 useperlio=$(USE_PERLIO) ~ \
c7dd62f6 1030 uselargefiles=$(USE_LARGE_FILES) ~ \
7ada00a0 1031 usesitecustomize=$(USE_SITECUST) ~ \
13631a73 1032 LINK_FLAGS=$(LINK_FLAGS) ~ \
1e71036e 1033 optimize=$(OPTIMIZE)
1034
1035#
1036# set up targets varying between Win95 and WinNT builds
1037#
1038
1039.IF "$(IS_WIN95)" == "define"
1040MK2 = .\makefile.95
1041RIGHTMAKE = __switch_makefiles
1e71036e 1042.ELSE
1043MK2 = __not_needed
1044RIGHTMAKE =
1045.ENDIF
1046
8169a885 1047.IMPORT .IGNORE : SystemRoot windir
1048
1049# Don't just .IMPORT OS from the environment because dmake sets OS itself.
1050ENV_OS=$(subst,OS=, $(shell @set OS))
1051
1052.IF "$(ENV_OS)" == "Windows_NT"
1053ODBCCP32_DLL = $(SystemRoot)\system32\odbccp32.dll
1054.ELSE
1055ODBCCP32_DLL = $(windir)\system\odbccp32.dll
1056.ENDIF
1057
1487a039 1058ICWD = -I..\cpan\Cwd -I..\cpan\Cwd\lib
403f501d 1059
1e71036e 1060#
1061# Top targets
1062#
1063
a148edb6 1064all : CHECKDMAKE .\config.h ..\git_version.h $(GLOBEXE) $(MINIPERL) $(MK2) \
1065 $(RIGHTMAKE) $(MINIMOD) $(CONFIGPM) $(UNIDATAFILES) MakePPPort \
a34ce875 1066 $(PERLEXE) $(X2P) Extensions Extensions_nonxs $(PERLSTATIC)
1e71036e 1067
9ce5b024 1068..\regcharclass.h : ..\Porting\regcharclass.pl
e094b17e 1069 cd .. && miniperl Porting\regcharclass.pl && cd win32
9ce5b024 1070
c900f745 1071regnodes : ..\regnodes.h
1072
9ce5b024 1073..\regcomp$(o) : ..\regnodes.h ..\regcharclass.h
1074
1075..\regexec$(o) : ..\regnodes.h ..\regcharclass.h
1076
a148edb6 1077reonly : regnodes .\config.h ..\git_version.h $(GLOBEXE) $(MINIPERL) $(MK2) \
1078 $(RIGHTMAKE) $(MINIMOD) $(CONFIGPM) $(UNIDATAFILES) $(PERLEXE) \
250c5aad 1079 $(X2P) Extensions_reonly
1080
ed2eab3f 1081static: $(PERLEXESTATIC)
1082
1e71036e 1083#----------------------------------------------------------------
1084
1085#-------------------- BEGIN Win95 SPECIFIC ----------------------
1086
1087# this target is a jump-off point for Win95
1088# 1. it switches to the Win95-specific makefile if it exists
1089# (__do_switch_makefiles)
1090# 2. it prints a message when the Win95-specific one finishes (__done)
1091# 3. it then kills this makefile by trying to make __no_such_target
1092
1093__switch_makefiles: __do_switch_makefiles __done __no_such_target
1094
1095__do_switch_makefiles:
1096.IF "$(NOTFIRST)" != "true"
1097 if exist $(MK2) $(MAKE:s/-S//) -f $(MK2) $(MAKETARGETS) NOTFIRST=true
1098.ELSE
1099 $(NOOP)
1100.ENDIF
1101
1102.IF "$(NOTFIRST)" != "true"
1103__done:
1104 @echo Build process complete. Ignore any errors after this message.
1105 @echo Run "dmake test" to test and "dmake install" to install
1106
1107.ELSE
1108# dummy targets for Win95-specific makefile
1109
1110__done:
1111 $(NOOP)
1112
1113__no_such_target:
1114 $(NOOP)
1115
1116.ENDIF
1117
1118# This target is used to generate the new makefile (.\makefile.95) for Win95
1119
1120.\makefile.95: .\makefile.mk
1121 $(MINIPERL) genmk95.pl makefile.mk $(MK2)
1122
1123#--------------------- END Win95 SPECIFIC ---------------------
1124
1125# a blank target for when builds don't need to do certain things
1126# this target added for Win95 port but used to keep the WinNT port able to
1127# use this file
1128__not_needed:
1129 $(NOOP)
1130
13631a73 1131CHECKDMAKE :
1132.IF "$(NEWDMAKE)" == "define"
1133 $(NOOP)
1134.ELSE
1135 @echo Your dmake doesn't support ^|^| or ^&^& in conditional expressions.
1136 @echo Please get the latest dmake from http://search.cpan.org/dist/dmake/
1137 @exit 1
1138.ENDIF
1139
1e71036e 1140$(GLOBEXE) : perlglob$(o)
1141.IF "$(CCTYPE)" == "BORLAND"
1142 $(CC) -c -w -v -tWM -I"$(CCINCDIR)" perlglob.c
1143 $(LINK32) -Tpe -ap $(BLINK_FLAGS) c0x32$(o) perlglob$(o) \
1144 "$(CCLIBDIR)\32BIT\wildargs$(o)",$@,,import32.lib cw32mt.lib,
1145.ELIF "$(CCTYPE)" == "GCC"
1146 $(LINK32) $(BLINK_FLAGS) -mconsole -o $@ perlglob$(o) $(LIBFILES)
1147.ELSE
1148 $(LINK32) $(BLINK_FLAGS) $(LIBFILES) -out:$@ -subsystem:$(SUBSYS) \
1149 perlglob$(o) setargv$(o)
c8e599d3 1150 $(EMBED_EXE_MANI)
1e71036e 1151.ENDIF
1152
1153perlglob$(o) : perlglob.c
1154
1155config.w32 : $(CFGSH_TMPL)
1156 copy $(CFGSH_TMPL) config.w32
1157
1158.\config.h : $(CFGH_TMPL) $(CORE_NOCFG_H)
1159 -del /f config.h
1160 copy $(CFGH_TMPL) config.h
1161
fcd65f8d 1162..\git_version.h : $(MINIPERL) ..\make_patchnum.pl
16ad9bfa 1163 cd .. && miniperl -Ilib make_patchnum.pl
a148edb6 1164
931482b7 1165# make sure that we recompile perl.c if the git version changes
1166..\perl$(o) : ..\git_version.h
a148edb6 1167
1e71036e 1168..\config.sh : config.w32 $(MINIPERL) config_sh.PL FindExt.pm
1169 $(MINIPERL) -I..\lib config_sh.PL --cfgsh-option-file \
1170 $(mktmp $(CFG_VARS)) config.w32 > ..\config.sh
1171
76febb1c 1172# this target is for when changes to the main config.sh happen.
1173# edit config.gc, then make perl using GCC in a minimal configuration (i.e.
1174# with MULTI, ITHREADS, IMP_SYS, LARGE_FILES, PERLIO and CRYPT off), then make
1175# this target to regenerate config_H.gc.
1176# unfortunately, some further manual editing is also then required to restore all
1177# the special _MSC_VER handling that is otherwise lost.
1178# repeat for config.bc and config_H.bc (using BORLAND), except that there is no
1179# _MSC_VER stuff in that case.
1e71036e 1180regen_config_h:
76febb1c 1181 $(MINIPERL) -I..\lib config_sh.PL --cfgsh-option-file $(mktmp $(CFG_VARS)) \
1e71036e 1182 $(CFGSH_TMPL) > ..\config.sh
4e73d6a4 1183 $(MINIPERL) -I..\lib ..\configpm --chdir=..
1e71036e 1184 -del /f $(CFGH_TMPL)
38cd195c 1185 -$(MINIPERL) -I..\lib $(ICWD) config_h.PL "INST_VER=$(INST_VER)"
1e71036e 1186 rename config.h $(CFGH_TMPL)
1187
1188$(CONFIGPM) : $(MINIPERL) ..\config.sh config_h.PL ..\minimod.pl
4e73d6a4 1189 $(MINIPERL) -I..\lib ..\configpm --chdir=..
1e71036e 1190 if exist lib\* $(RCOPY) lib\*.* ..\lib\$(NULL)
1191 $(XCOPY) ..\*.h $(COREDIR)\*.*
1192 $(XCOPY) *.h $(COREDIR)\*.*
1193 $(XCOPY) ..\ext\re\re.pm $(LIBDIR)\*.*
1194 $(RCOPY) include $(COREDIR)\*.*
38cd195c 1195 $(MINIPERL) -I..\lib $(ICWD) config_h.PL "INST_VER=$(INST_VER)" \
1e71036e 1196 || $(MAKE) $(MAKEMACROS) $(CONFIGPM) $(MAKEFILE)
1197
1198$(MINIPERL) : $(MINIDIR) $(MINI_OBJ) $(CRTIPMLIBS)
1199.IF "$(CCTYPE)" == "BORLAND"
8169a885 1200 if not exist $(CCLIBDIR)\PSDK\odbccp32.lib \
1201 cd $(CCLIBDIR)\PSDK && implib odbccp32.lib $(ODBCCP32_DLL)
1e71036e 1202 $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
13631a73 1203 @$(mktmp c0x32$(o) $(MINI_OBJ),$@,,$(LIBFILES),)
1e71036e 1204.ELIF "$(CCTYPE)" == "GCC"
1205 $(LINK32) -v -mconsole -o $@ $(BLINK_FLAGS) \
13631a73 1206 $(mktmp $(LKPRE) $(MINI_OBJ) $(LIBFILES) $(LKPOST))
1e71036e 1207.ELSE
78d58004 1208 $(LINK32) -subsystem:console -out:$@ $(BLINK_FLAGS) \
13631a73 1209 @$(mktmp $(LIBFILES) $(MINI_OBJ))
c8e599d3 1210 $(EMBED_EXE_MANI)
1e71036e 1211.ENDIF
1212
1213$(MINIDIR) :
1214 if not exist "$(MINIDIR)" mkdir "$(MINIDIR)"
1215
1216$(MINICORE_OBJ) : $(CORE_NOCFG_H)
8c4561fb 1217 $(CC) -c $(CFLAGS) -DPERL_EXTERNAL_GLOB -DPERL_IS_MINIPERL $(OBJOUT_FLAG)$@ ..\$(*B).c
1e71036e 1218
1219$(MINIWIN32_OBJ) : $(CORE_NOCFG_H)
1220 $(CC) -c $(CFLAGS) $(OBJOUT_FLAG)$@ $(*B).c
1221
1222# -DPERL_IMPLICIT_SYS needs C++ for perllib.c
1223# rules wrapped in .IFs break Win9X build (we end up with unbalanced []s unless
1224# unless the .IF is true), so instead we use a .ELSE with the default.
1225# This is the only file that depends on perlhost.h, vmem.h, and vdir.h
1226
1227perllib$(o) : perllib.c .\perlhost.h .\vdir.h .\vmem.h
acfe0abc 1228.IF "$(USE_IMP_SYS)" == "define"
322fd642 1229 $(CC) -c -I. $(CFLAGS_O) $(CXX_FLAG) $(OBJOUT_FLAG)$@ perllib.c
1e71036e 1230.ELSE
322fd642 1231 $(CC) -c -I. $(CFLAGS_O) $(OBJOUT_FLAG)$@ perllib.c
1e71036e 1232.ENDIF
1233
1234# 1. we don't want to rebuild miniperl.exe when config.h changes
1235# 2. we don't want to rebuild miniperl.exe with non-default config.h
931482b7 1236# 3. we can't have miniperl.exe depend on git_version.h, as miniperl creates it
1e71036e 1237$(MINI_OBJ) : $(CORE_NOCFG_H)
1238
1239$(WIN32_OBJ) : $(CORE_H)
9848074e 1240
1e71036e 1241$(CORE_OBJ) : $(CORE_H)
9848074e 1242
1e71036e 1243$(DLL_OBJ) : $(CORE_H)
9848074e 1244
1e71036e 1245$(X2P_OBJ) : $(CORE_H)
1246
c6d234b8 1247perldll.def : $(MINIPERL) $(CONFIGPM) ..\global.sym ..\pp.sym ..\makedef.pl create_perllibst_h.pl
1248 $(MINIPERL) -I..\lib create_perllibst_h.pl
c1effa61 1249 $(MINIPERL) -I..\lib -w ..\makedef.pl PLATFORM=win32 $(OPTIMIZE) $(DEFINES) \
1e71036e 1250 $(BUILDOPT) CCTYPE=$(CCTYPE) > perldll.def
1251
d2b25974 1252$(PERLDLL): perldll.def $(PERLDLL_OBJ) $(PERLDLL_RES) Extensions_static
1e71036e 1253.IF "$(CCTYPE)" == "BORLAND"
1254 $(LINK32) -Tpd -ap $(BLINK_FLAGS) \
13631a73 1255 @$(mktmp c0d32$(o) $(PERLDLL_OBJ),$@,, \
1256 $(shell @type Extensions_static) $(LIBFILES),perldll.def)
1e71036e 1257 $(IMPLIB) $*.lib $@
1258.ELIF "$(CCTYPE)" == "GCC"
1259 $(LINK32) -mdll -o $@ -Wl,--base-file -Wl,perl.base $(BLINK_FLAGS) \
13631a73 1260 $(mktmp $(LKPRE) $(PERLDLL_OBJ) \
1261 $(shell @type Extensions_static) \
1262 $(LIBFILES) $(LKPOST))
fa58a56f 1263 $(IMPLIB) --output-lib $(PERLIMPLIB) \
1e71036e 1264 --dllname $(PERLDLL:b).dll \
1265 --def perldll.def \
1266 --base-file perl.base \
1267 --output-exp perl.exp
1268 $(LINK32) -mdll -o $@ $(BLINK_FLAGS) \
13631a73 1269 $(mktmp $(LKPRE) $(PERLDLL_OBJ) \
1270 $(shell @type Extensions_static) \
1271 $(LIBFILES) perl.exp $(LKPOST))
1e71036e 1272.ELSE
78d58004 1273 $(LINK32) -dll -def:perldll.def -out:$@ $(BLINK_FLAGS) \
9e7cf449 1274 @Extensions_static \
78d58004 1275 @$(mktmp -base:0x28000000 $(DELAYLOAD) $(LIBFILES) \
13631a73 1276 $(PERLDLL_RES) $(PERLDLL_OBJ))
c8e599d3 1277 $(EMBED_DLL_MANI)
1e71036e 1278.ENDIF
1279 $(XCOPY) $(PERLIMPLIB) $(COREDIR)
1280
ed2eab3f 1281$(PERLSTATICLIB): Extensions_static
1282.IF "$(CCTYPE)" == "BORLAND"
1283 $(LIB32) $(LIB_FLAGS) $@ \
13631a73 1284 @$(mktmp $(shell @type Extensions_static) \
1285 $(PERLDLL_OBJ))
ed2eab3f 1286.ELIF "$(CCTYPE)" == "GCC"
df06d623 1287# XXX: It would be nice if MinGW's ar accepted a temporary file, but this
1288# doesn't seem to work:
1289# $(LIB32) $(LIB_FLAGS) $@ \
13631a73 1290# $(mktmp $(LKPRE) $(shell @type Extensions_static) \
1291# $(PERLDLL_OBJ) $(LKPOST))
df06d623 1292 $(LIB32) $(LIB_FLAGS) $@ \
13631a73 1293 $(shell @type Extensions_static) \
1294 $(PERLDLL_OBJ)
ed2eab3f 1295.ELSE
1296 $(LIB32) $(LIB_FLAGS) -out:$@ @Extensions_static \
13631a73 1297 @$(mktmp $(PERLDLL_OBJ))
ed2eab3f 1298.ENDIF
1299 $(XCOPY) $(PERLSTATICLIB) $(COREDIR)
d2b25974 1300
4fe8ccd6 1301$(PERLEXE_RES): perlexe.rc $(PERLEXE_ICO)
e84ac4e2 1302
1e71036e 1303$(MINIMOD) : $(MINIPERL) ..\minimod.pl
1304 cd .. && miniperl minimod.pl > lib\ExtUtils\Miniperl.pm
1305
1306..\x2p\a2p$(o) : ..\x2p\a2p.c
1307 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\a2p.c
1308
1309..\x2p\hash$(o) : ..\x2p\hash.c
1310 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\hash.c
1311
1312..\x2p\str$(o) : ..\x2p\str.c
1313 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\str.c
1314
1315..\x2p\util$(o) : ..\x2p\util.c
1316 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\util.c
1317
1318..\x2p\walk$(o) : ..\x2p\walk.c
1319 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\walk.c
1320
403f501d 1321$(X2P) : $(MINIPERL) $(X2P_OBJ) Extensions
c1effa61 1322 $(MINIPERL) -I..\lib ..\x2p\find2perl.PL
1323 $(MINIPERL) -I..\lib ..\x2p\s2p.PL
1e71036e 1324.IF "$(CCTYPE)" == "BORLAND"
1325 $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
13631a73 1326 @$(mktmp c0x32$(o) $(X2P_OBJ),$@,,$(LIBFILES),)
1e71036e 1327.ELIF "$(CCTYPE)" == "GCC"
1328 $(LINK32) -v -o $@ $(BLINK_FLAGS) \
13631a73 1329 $(mktmp $(LKPRE) $(X2P_OBJ) $(LIBFILES) $(LKPOST))
1e71036e 1330.ELSE
78d58004 1331 $(LINK32) -subsystem:console -out:$@ $(BLINK_FLAGS) \
13631a73 1332 @$(mktmp $(LIBFILES) $(X2P_OBJ))
c8e599d3 1333 $(EMBED_EXE_MANI)
1e71036e 1334.ENDIF
1335
efa50c51 1336$(MINIDIR)\globals$(o) : $(UUDMAP_H) $(BITCOUNT_H)
9444d213 1337
efa50c51 1338$(UUDMAP_H) $(BITCOUNT_H) : $(GENUUDMAP)
1339 $(GENUUDMAP) $(UUDMAP_H) $(BITCOUNT_H)
9444d213 1340
202d1001 1341$(GENUUDMAP) : $(GENUUDMAP_OBJ)
9444d213 1342.IF "$(CCTYPE)" == "BORLAND"
1343 $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
13631a73 1344 @$(mktmp c0x32$(o) $(GENUUDMAP_OBJ),$@,,$(LIBFILES),)
9444d213 1345.ELIF "$(CCTYPE)" == "GCC"
1346 $(LINK32) -v -o $@ $(BLINK_FLAGS) \
13631a73 1347 $(mktmp $(LKPRE) $(GENUUDMAP_OBJ) $(LIBFILES) $(LKPOST))
9444d213 1348.ELSE
1349 $(LINK32) -subsystem:console -out:$@ $(BLINK_FLAGS) \
13631a73 1350 @$(mktmp $(LIBFILES) $(GENUUDMAP_OBJ))
202d1001 1351 $(EMBED_EXE_MANI)
9444d213 1352.ENDIF
1353
1e71036e 1354perlmain.c : runperl.c
1355 copy runperl.c perlmain.c
1356
1357perlmain$(o) : perlmain.c
88c9158a 1358 $(CC) $(CFLAGS_O:s,-DPERLDLL,-UPERLDLL,) $(OBJOUT_FLAG)$@ -c perlmain.c
1e71036e 1359
ed2eab3f 1360perlmainst.c : runperl.c
1361 copy runperl.c perlmainst.c
1362
1363perlmainst$(o) : perlmainst.c
88c9158a 1364 $(CC) $(CFLAGS_O) $(OBJOUT_FLAG)$@ -c perlmainst.c
ed2eab3f 1365
931482b7 1366$(PERLEXE): $(PERLDLL) $(CONFIGPM) $(PERLEXE_OBJ) $(PERLEXE_RES)
1e71036e 1367.IF "$(CCTYPE)" == "BORLAND"
1368 $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
13631a73 1369 @$(mktmp c0x32$(o) $(PERLEXE_OBJ),$@,, \
1370 $(PERLIMPLIB) $(LIBFILES),,$(PERLEXE_RES))
1e71036e 1371.ELIF "$(CCTYPE)" == "GCC"
1372 $(LINK32) -mconsole -o $@ $(BLINK_FLAGS) \
f721bdf3 1373 $(PERLEXE_OBJ) $(PERLEXE_RES) $(PERLIMPLIB) $(LIBFILES)
1e71036e 1374.ELSE
1375 $(LINK32) -subsystem:console -out:$@ -stack:0x1000000 $(BLINK_FLAGS) \
1376 $(LIBFILES) $(PERLEXE_OBJ) $(SETARGV_OBJ) $(PERLIMPLIB) $(PERLEXE_RES)
c8e599d3 1377 $(EMBED_EXE_MANI)
1e71036e 1378.ENDIF
1379 copy $(PERLEXE) $(WPERLEXE)
1380 $(MINIPERL) -I..\lib bin\exetype.pl $(WPERLEXE) WINDOWS
1e71036e 1381
931482b7 1382$(PERLEXESTATIC): $(PERLSTATICLIB) $(CONFIGPM) $(PERLEXEST_OBJ) $(PERLEXE_RES)
ed2eab3f 1383.IF "$(CCTYPE)" == "BORLAND"
1384 $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
13631a73 1385 @$(mktmp c0x32$(o) $(PERLEXEST_OBJ),$@,, \
1386 $(shell @type Extensions_static) $(PERLSTATICLIB) $(LIBFILES),, \
1387 $(PERLEXE_RES))
ed2eab3f 1388.ELIF "$(CCTYPE)" == "GCC"
1389 $(LINK32) -mconsole -o $@ $(BLINK_FLAGS) \
13631a73 1390 $(mktmp $(LKPRE) $(shell @type Extensions_static) \
1391 $(PERLSTATICLIB) $(LIBFILES) $(PERLEXEST_OBJ) \
1392 $(PERLEXE_RES) $(LKPOST))
ed2eab3f 1393.ELSE
1394 $(LINK32) -subsystem:console -out:$@ -stack:0x1000000 $(BLINK_FLAGS) \
a1f2e719 1395 @Extensions_static $(PERLSTATICLIB) /PDB:NONE \
ed2eab3f 1396 $(LIBFILES) $(PERLEXEST_OBJ) $(SETARGV_OBJ) $(PERLEXE_RES)
1397 $(EMBED_EXE_MANI)
1398.ENDIF
1399
d1a21686 1400MakePPPort: $(MINIPERL) $(CONFIGPM) Extensions_nonxs
403f501d 1401 $(MINIPERL) -I..\lib $(ICWD) ..\mkppport
42e07562 1402
9dcb9602 1403#-------------------------------------------------------------------------------
281da5ea 1404# There's no direct way to mark a dependency on
6afd19bc 1405# DynaLoader.pm, so this will have to do
281da5ea 1406Extensions : ..\make_ext.pl $(PERLDEP) $(CONFIGPM) $(DYNALOADER)
250c5aad 1407 $(XCOPY) ..\*.h $(COREDIR)\*.*
a193a2db 1408 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --dynamic
d2b25974 1409
281da5ea 1410Extensions_reonly : ..\make_ext.pl $(PERLDEP) $(CONFIGPM) $(DYNALOADER)
250c5aad 1411 $(XCOPY) ..\*.h $(COREDIR)\*.*
a193a2db 1412 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --dynamic +re
250c5aad 1413
286d62c2 1414Extensions_static : ..\make_ext.pl list_static_libs.pl $(PERLDEP) $(CONFIGPM)
250c5aad 1415 $(XCOPY) ..\*.h $(COREDIR)\*.*
a193a2db 1416 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --static
c6d234b8 1417 $(MINIPERL) -I..\lib list_static_libs.pl > Extensions_static
1e71036e 1418
9ddff148 1419Extensions_nonxs : ..\make_ext.pl $(PERLDEP) $(CONFIGPM)
a34ce875 1420 $(XCOPY) ..\*.h $(COREDIR)\*.*
a193a2db 1421 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --nonxs
a34ce875 1422
281da5ea 1423$(DYNALOADER) : ..\make_ext.pl $(PERLDEP) $(CONFIGPM) Extensions_nonxs
1424 $(XCOPY) ..\*.h $(COREDIR)\*.*
1425 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(EXTDIR) --dynaloader
1426
ba14dd9a 1427Extensions_clean :
a193a2db 1428 -if exist $(MINIPERL) $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --all --target=clean
1e71036e 1429
b4dc1df6 1430Extensions_realclean :
a193a2db 1431 -if exist $(MINIPERL) $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --all --target=realclean
b4dc1df6 1432
9dcb9602 1433#-------------------------------------------------------------------------------
1e71036e 1434
1435
0195b144 1436doc: $(PERLEXE) ..\pod\perltoc.pod
b4a41557 1437 $(PERLEXE) -I..\lib ..\installhtml --podroot=.. --htmldir=$(HTMLDIR) \
1e71036e 1438 --podpath=pod:lib:ext:utils --htmlroot="file://$(INST_HTML:s,:,|,)"\
1439 --libpod=perlfunc:perlguts:perlvar:perlrun:perlop --recurse
1440
b0b6bf2b 1441# Note that this next section is parsed (and regenerated) by pod/buildtoc
1442# so please check that script before making structural changes here
9ddff148 1443utils: $(PERLEXE) $(X2P)
1e71036e 1444 cd ..\utils && $(MAKE) PERL=$(MINIPERL)
b0b6bf2b 1445 copy ..\README.aix ..\pod\perlaix.pod
1446 copy ..\README.amiga ..\pod\perlamiga.pod
1447 copy ..\README.apollo ..\pod\perlapollo.pod
1448 copy ..\README.beos ..\pod\perlbeos.pod
1449 copy ..\README.bs2000 ..\pod\perlbs2000.pod
1450 copy ..\README.ce ..\pod\perlce.pod
1451 copy ..\README.cn ..\pod\perlcn.pod
1452 copy ..\README.cygwin ..\pod\perlcygwin.pod
1453 copy ..\README.dgux ..\pod\perldgux.pod
1454 copy ..\README.dos ..\pod\perldos.pod
1455 copy ..\README.epoc ..\pod\perlepoc.pod
1456 copy ..\README.freebsd ..\pod\perlfreebsd.pod
9f968a8d 1457 copy ..\README.haiku ..\pod\perlhaiku.pod
b0b6bf2b 1458 copy ..\README.hpux ..\pod\perlhpux.pod
1459 copy ..\README.hurd ..\pod\perlhurd.pod
1460 copy ..\README.irix ..\pod\perlirix.pod
1461 copy ..\README.jp ..\pod\perljp.pod
1462 copy ..\README.ko ..\pod\perlko.pod
6477b319 1463 copy ..\README.linux ..\pod\perllinux.pod
b0b6bf2b 1464 copy ..\README.macos ..\pod\perlmacos.pod
1465 copy ..\README.macosx ..\pod\perlmacosx.pod
b0b6bf2b 1466 copy ..\README.mpeix ..\pod\perlmpeix.pod
1467 copy ..\README.netware ..\pod\perlnetware.pod
b0846812 1468 copy ..\README.openbsd ..\pod\perlopenbsd.pod
b0b6bf2b 1469 copy ..\README.os2 ..\pod\perlos2.pod
1470 copy ..\README.os390 ..\pod\perlos390.pod
1471 copy ..\README.os400 ..\pod\perlos400.pod
1472 copy ..\README.plan9 ..\pod\perlplan9.pod
1473 copy ..\README.qnx ..\pod\perlqnx.pod
2f08ed66 1474 copy ..\README.riscos ..\pod\perlriscos.pod
b0b6bf2b 1475 copy ..\README.solaris ..\pod\perlsolaris.pod
27da23d5 1476 copy ..\README.symbian ..\pod\perlsymbian.pod
b0b6bf2b 1477 copy ..\README.tru64 ..\pod\perltru64.pod
1478 copy ..\README.tw ..\pod\perltw.pod
1479 copy ..\README.uts ..\pod\perluts.pod
1480 copy ..\README.vmesa ..\pod\perlvmesa.pod
b0b6bf2b 1481 copy ..\README.vos ..\pod\perlvos.pod
1482 copy ..\README.win32 ..\pod\perlwin32.pod
d5114285 1483 copy ..\pod\perl5112delta.pod ..\pod\perldelta.pod
b0b6bf2b 1484 cd ..\pod && $(MAKE) -f ..\win32\pod.mak converters
1e71036e 1485 $(PERLEXE) $(PL2BAT) $(UTILS)
403f501d 1486 $(PERLEXE) $(ICWD) ..\autodoc.pl ..
1487 $(PERLEXE) $(ICWD) ..\pod\perlmodlib.pl -q
0195b144 1488
1489..\pod\perltoc.pod: $(PERLEXE) Extensions Extensions_nonxs
87e06404 1490 $(PERLEXE) -f ..\pod\buildtoc --build-toc -q
1e71036e 1491
b0b6bf2b 1492# Note that the pod cleanup in this next section is parsed (and regenerated
1493# by pod/buildtoc so please check that script before making changes here
1494
b4dc1df6 1495distclean: realclean
1e71036e 1496 -del /f $(MINIPERL) $(PERLEXE) $(PERLDLL) $(GLOBEXE) \
ed2eab3f 1497 $(PERLIMPLIB) ..\miniperl$(a) $(MINIMOD) \
1498 $(PERLEXESTATIC) $(PERLSTATICLIB)
1e71036e 1499 -del /f *.def *.map
ca67812f 1500 -del /f $(LIBDIR)\Encode.pm $(LIBDIR)\encoding.pm $(LIBDIR)\Errno.pm
1501 -del /f $(LIBDIR)\Config.pod $(LIBDIR)\POSIX.pod $(LIBDIR)\threads.pm
48462a74 1502 -del /f $(LIBDIR)\.exists $(LIBDIR)\attributes.pm $(LIBDIR)\DynaLoader.pm
1e71036e 1503 -del /f $(LIBDIR)\Fcntl.pm $(LIBDIR)\IO.pm $(LIBDIR)\Opcode.pm
a9bf183d 1504 -del /f $(LIBDIR)\ops.pm $(LIBDIR)\Safe.pm
1e71036e 1505 -del /f $(LIBDIR)\SDBM_File.pm $(LIBDIR)\Socket.pm $(LIBDIR)\POSIX.pm
1506 -del /f $(LIBDIR)\B.pm $(LIBDIR)\O.pm $(LIBDIR)\re.pm
1e71036e 1507 -del /f $(LIBDIR)\Devel\Peek.pm $(LIBDIR)\Devel\DProf.pm
ca67812f 1508 -del /f $(LIBDIR)\Devel\PPPort.pm
1e71036e 1509 -del /f $(LIBDIR)\File\Glob.pm
1510 -del /f $(LIBDIR)\Storable.pm
1e71036e 1511 -del /f $(LIBDIR)\Digest\MD5.pm
59717686 1512 -del /f $(LIBDIR)\Digest\SHA.pm
ca67812f 1513 -del /f $(LIBDIR)\PerlIO\encoding.pm
1514 -del /f $(LIBDIR)\PerlIO\scalar.pm
1515 -del /f $(LIBDIR)\PerlIO\via.pm
1516 -del /f $(LIBDIR)\Sys\Hostname.pm
ca67812f 1517 -del /f $(LIBDIR)\threads\shared.pm
1e71036e 1518 -del /f $(LIBDIR)\Time\HiRes.pm
ac5ea531 1519 -del /f $(LIBDIR)\Unicode\Normalize.pm
4e74047c 1520 -del /f $(LIBDIR)\Math\BigInt\FastCalc.pm
b4ad57f4 1521 -del /f $(LIBDIR)\Win32.pm
37ca3c28 1522 -del /f $(LIBDIR)\Win32CORE.pm
00701878 1523 -del /f $(LIBDIR)\Win32API\File.pm
1524 -del /f $(LIBDIR)\Win32API\File\cFile.pc
a85e0e8c 1525 -del /f $(DISTDIR)\XSLoader\XSLoader.pm
522078af 1526 -if exist $(LIBDIR)\B rmdir /s /q $(LIBDIR)\B
46ffdcf0 1527 -if exist $(LIBDIR)\Compress rmdir /s /q $(LIBDIR)\Compress
522078af 1528 -if exist $(LIBDIR)\Data rmdir /s /q $(LIBDIR)\Data
ca67812f 1529 -if exist $(LIBDIR)\Encode rmdir /s /q $(LIBDIR)\Encode
522078af 1530 -if exist $(LIBDIR)\Filter\Util rmdir /s /q $(LIBDIR)\Filter\Util
96c33d98 1531 -if exist $(LIBDIR)\Hash rmdir /s /q $(LIBDIR)\Hash
c146e560 1532 -if exist $(LIBDIR)\App rmdir /s /q $(LIBDIR)\App
1533 -if exist $(LIBDIR)\Module\Pluggable rmdir /s /q $(LIBDIR)\Module\Pluggable
1534 -if exist $(LIBDIR)\TAP rmdir /s /q $(LIBDIR)\TAP
b2685f0c 1535 -if exist $(LIBDIR)\mro rmdir /s /q $(LIBDIR)\mro
69f57184 1536 -if exist $(LIBDIR)\IO\Compress rmdir /s /q $(LIBDIR)\IO\Compress
69f57184 1537 -if exist $(LIBDIR)\IO\Socket rmdir /s /q $(LIBDIR)\IO\Socket
69f57184 1538 -if exist $(LIBDIR)\IO\Uncompress rmdir /s /q $(LIBDIR)\IO\Uncompress
69f57184 1539 -if exist $(LIBDIR)\List rmdir /s /q $(LIBDIR)\List
69f57184 1540 -if exist $(LIBDIR)\MIME rmdir /s /q $(LIBDIR)\MIME
849a608a 1541 -if exist $(LIBDIR)\re rmdir /s /q $(LIBDIR)\re
522078af 1542 -if exist $(LIBDIR)\Scalar rmdir /s /q $(LIBDIR)\Scalar
6c4b87ea 1543 -if exist $(LIBDIR)\Sys rmdir /s /q $(LIBDIR)\Sys
6c4b87ea 1544 -if exist $(LIBDIR)\threads rmdir /s /q $(LIBDIR)\threads
522078af 1545 -if exist $(LIBDIR)\XS rmdir /s /q $(LIBDIR)\XS
00701878 1546 -if exist $(LIBDIR)\Win32API rmdir /s /q $(LIBDIR)\Win32API
64ab118f 1547 -cd $(PODDIR) && del /f *.html *.bat podchecker \
9e64a656 1548 perlaix.pod perlamiga.pod perlapi.pod perlapollo.pod \
1549 perlbeos.pod perlbs2000.pod perlce.pod perlcn.pod \
1550 perlcygwin.pod perldelta.pod perldgux.pod perldos.pod \
1551 perlepoc.pod perlfreebsd.pod perlhaiku.pod perlhpux.pod \
1552 perlhurd.pod perlintern.pod perlirix.pod perljp.pod perlko.pod \
7cdf958d 1553 perllinux.pod perlmacos.pod perlmacosx.pod perlmodlib.pod \
1554 perlmpeix.pod perlnetware.pod perlopenbsd.pod perlos2.pod \
1555 perlos390.pod perlos400.pod perlplan9.pod perlqnx.pod \
1556 perlriscos.pod perlsolaris.pod perlsymbian.pod perltoc.pod \
1557 perltru64.pod perltw.pod perluts.pod perlvmesa.pod perlvos.pod \
1558 perlwin32.pod \
4cb44f92 1559 pod2html pod2latex pod2man pod2text pod2usage \
94442a1e 1560 podselect
827a599d 1561 -cd ..\utils && del /f h2ph splain perlbug pl2pm c2ph pstruct h2xs \
de125441 1562 perldoc perlivp dprofpp libnetcfg enc2xs piconv cpan *.bat \
6aaee015 1563 xsubpp instmodsh prove ptar ptardiff cpanp-run-perl cpanp cpan2dist shasum corelist config_data
827a599d 1564 -cd ..\x2p && del /f find2perl s2p psed *.bat
19ec6f53 1565 -del /f ..\config.sh perlmain.c dlutils.c config.h.new \
ed2eab3f 1566 perlmainst.c
1e71036e 1567 -del /f $(CONFIGPM)
a148edb6 1568 -del /f ..\lib\Config_git.pl
1e71036e 1569 -del /f bin\*.bat
d2b25974 1570 -del /f perllibst.h
f281036e 1571 -del /f perl.base
85741d00 1572 -cd .. && del /s *$(a) *.map *.pdb *.ilk *.tds *.bs *$(o) .exists pm_to_blib ppport.h
827a599d 1573 -cd $(EXTDIR) && del /s *.def Makefile Makefile.old
a193a2db 1574 -cd $(DISTDIR) && del /s *.def Makefile Makefile.old
83d5895a 1575 -cd $(CPANDIR) && del /s *.def Makefile Makefile.old
522078af 1576 -if exist $(AUTODIR) rmdir /s /q $(AUTODIR)
522078af 1577 -if exist $(COREDIR) rmdir /s /q $(COREDIR)
b4a41557 1578 -if exist pod2htmd.tmp del pod2htmd.tmp
1579 -if exist pod2htmi.tmp del pod2htmi.tmp
1580 -if exist $(HTMLDIR) rmdir /s /q $(HTMLDIR)
0279961e 1581 -del /f ..\t\test_state
1e71036e 1582
1583install : all installbare installhtml
1584
0195b144 1585installbare : $(RIGHTMAKE) utils ..\pod\perltoc.pod
1e71036e 1586 $(PERLEXE) ..\installperl
1587 if exist $(WPERLEXE) $(XCOPY) $(WPERLEXE) $(INST_BIN)\*.*
5548433c 1588 if exist $(PERLEXESTATIC) $(XCOPY) $(PERLEXESTATIC) $(INST_BIN)\*.*
1e71036e 1589 $(XCOPY) $(GLOBEXE) $(INST_BIN)\*.*
ec25c072 1590 if exist ..\perl*.pdb $(XCOPY) ..\perl*.pdb $(INST_BIN)\*.*
1591 if exist ..\x2p\a2p.pdb $(XCOPY) ..\x2p\a2p.pdb $(INST_BIN)\*.*
1e71036e 1592 $(XCOPY) bin\*.bat $(INST_SCRIPT)\*.*
1593
1594installhtml : doc
b4a41557 1595 $(RCOPY) $(HTMLDIR)\*.* $(INST_HTML)\*.*
1e71036e 1596
1597inst_lib : $(CONFIGPM)
1e71036e 1598 $(RCOPY) ..\lib $(INST_LIB)\*.*
1599
3dc3a597 1600$(UNIDATAFILES) .UPDATEALL : $(MINIPERL) $(CONFIGPM) ..\lib\unicore\mktables Extensions_nonxs
27a8011f 1601 cd ..\lib\unicore && \
1487a039 1602 ..\$(MINIPERL) -I.. -I..\..\cpan\Cwd\lib mktables
ca12659b 1603
1604minitest : $(MINIPERL) $(GLOBEXE) $(CONFIGPM) $(UNIDATAFILES) utils
6c85d12e 1605 $(XCOPY) $(MINIPERL) ..\t\$(NULL)
1606 if exist ..\t\perl.exe del /f ..\t\perl.exe
1607 rename ..\t\miniperl.exe perl.exe
1e71036e 1608.IF "$(CCTYPE)" == "BORLAND"
1609 $(XCOPY) $(GLOBBAT) ..\t\$(NULL)
1610.ELSE
1611 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1612.ENDIF
1613 attrib -r ..\t\*.*
1e71036e 1614 cd ..\t && \
6c85d12e 1615 $(MINIPERL) -I..\lib harness base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t
1e71036e 1616
6e2cec71 1617test-prep : all utils
1e71036e 1618 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1619 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1620.IF "$(CCTYPE)" == "BORLAND"
1621 $(XCOPY) $(GLOBBAT) ..\t\$(NULL)
1622.ELSE
1623 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1624.ENDIF
fa58a56f 1625.IF "$(CCTYPE)" == "GCC"
1626.IF "$(GCC_4XX)" == "define"
1627 $(XCOPY) $(GCCHELPERDLL) ..\t\$(NULL)
1628.ENDIF
1629.ENDIF
1e71036e 1630
1631test : $(RIGHTMAKE) test-prep
89087c85 1632 cd ..\t && $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES)
1e71036e 1633
250c5aad 1634test-reonly : reonly utils
1635 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1636 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1637 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1638 cd ..\t && \
a4499558 1639 $(PERLEXE) -I..\lib harness $(OPT) -re \bpat\\/ $(EXTRA) && \
250c5aad 1640 cd ..\win32
1641
1642regen :
1643 cd .. && regen.pl && cd win32
1644
1e71036e 1645test-notty : test-prep
1646 set PERL_SKIP_TTY_TEST=1 && \
89087c85 1647 cd ..\t && $(PERLEXE) -I.\lib harness $(TEST_SWITCHES) $(TEST_FILES)
1e71036e 1648
b4a93add 1649_test : $(RIGHTMAKE)
a01cf021 1650 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1651 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
b4a93add 1652.IF "$(CCTYPE)" == "BORLAND"
a01cf021 1653 $(XCOPY) $(GLOBBAT) ..\t\$(NULL)
b4a93add 1654.ELSE
a01cf021 1655 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
b4a93add 1656.ENDIF
89087c85 1657 cd ..\t && $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES)
b4a93add 1658
b4dc1df6 1659_clean :
1e71036e 1660 -@erase miniperlmain$(o)
1661 -@erase $(MINIPERL)
1662 -@erase perlglob$(o)
1663 -@erase perlmain$(o)
ed2eab3f 1664 -@erase perlmainst$(o)
1e71036e 1665 -@erase config.w32
1666 -@erase /f config.h
a148edb6 1667 -@erase /f ..\git_version.h
1e71036e 1668 -@erase $(GLOBEXE)
1669 -@erase $(PERLEXE)
1670 -@erase $(WPERLEXE)
ed2eab3f 1671 -@erase $(PERLEXESTATIC)
1672 -@erase $(PERLSTATICLIB)
1e71036e 1673 -@erase $(PERLDLL)
1674 -@erase $(CORE_OBJ)
efa50c51 1675 -@erase $(GENUUDMAP) $(GENUUDMAP_OBJ) $(UUDMAP_H) $(BITCOUNT_H)
522078af 1676 -if exist $(MINIDIR) rmdir /s /q $(MINIDIR)
27a8011f 1677 -if exist $(UNIDATADIR1) rmdir /s /q $(UNIDATADIR1)
27a8011f 1678 -if exist $(UNIDATADIR2) rmdir /s /q $(UNIDATADIR2)
ca12659b 1679 -@erase $(UNIDATAFILES)
1e71036e 1680 -@erase $(WIN32_OBJ)
1681 -@erase $(DLL_OBJ)
1682 -@erase $(X2P_OBJ)
1683 -@erase ..\*$(o) ..\*$(a) ..\*.exp *$(o) *$(a) *.exp *.res
1684 -@erase ..\t\*.exe ..\t\*.dll ..\t\*.bat
1685 -@erase ..\x2p\*.exe ..\x2p\*.bat
1686 -@erase *.ilk
1687 -@erase *.pdb
44ba898b 1688 -@erase *.tds
9e7cf449 1689 -@erase Extensions_static
1e71036e 1690
b4dc1df6 1691
1266ad8f 1692
6e2cec71 1693clean : Extensions_clean _clean
1266ad8f 1694
85741d00 1695realclean : Extensions_realclean _clean
b4dc1df6 1696
1e71036e 1697# Handy way to run perlbug -ok without having to install and run the
1698# installed perlbug. We don't re-run the tests here - we trust the user.
1699# Please *don't* use this unless all tests pass.
1700# If you want to report test failures, use "dmake nok" instead.
1701ok: utils
1702 $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)"
1703
1704okfile: utils
1705 $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)" -F perl.ok
1706
1707nok: utils
1708 $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)"
1709
1710nokfile: utils
1711 $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)" -F perl.nok