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