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