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