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