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