This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Add references to perl5143delta
[perl5.git] / win32 / makefile.mk
... / ...
CommitLineData
1#
2# Makefile to build perl on Windows using DMAKE.
3# Supported compilers:
4# Microsoft Visual C++ 6.0 or later
5# MinGW with gcc-3.2 or later
6# Windows SDK 64-bit compiler and tools
7#
8# This is set up to build a perl.exe that runs off a shared library
9# (perl517.dll). Also makes individual DLLs for the XS extensions.
10#
11
12##
13## Make sure you read README.win32 *before* you mess with anything here!
14##
15
16##
17## Build configuration. Edit the values below to suit your needs.
18##
19
20#
21# Set these to wherever you want "dmake install" to put your
22# newly built perl.
23#
24INST_DRV *= c:
25INST_TOP *= $(INST_DRV)\perl
26
27#
28# Uncomment if you want to build a 32-bit Perl using a 32-bit compiler
29# on a 64-bit version of Windows.
30#WIN64 *= undef
31
32#
33# Comment this out if you DON'T want your perl installation to be versioned.
34# This means that the new installation will overwrite any files from the
35# old installation at the same INST_TOP location. Leaving it enabled is
36# the safest route, as perl adds the extra version directory to all the
37# locations it installs files to. If you disable it, an alternative
38# versioned installation can be obtained by setting INST_TOP above to a
39# path that includes an arbitrary version string.
40#
41#INST_VER *= \5.17.5
42
43#
44# Comment this out if you DON'T want your perl installation to have
45# architecture specific components. This means that architecture-
46# specific files will be installed along with the architecture-neutral
47# files. Leaving it enabled is safer and more flexible, in case you
48# want to build multiple flavors of perl and install them together in
49# the same location. Commenting it out gives you a simpler
50# installation that is easier to understand for beginners.
51#
52#INST_ARCH *= \$(ARCHNAME)
53
54#
55# Uncomment this if you want perl to run
56# $Config{sitelibexp}\sitecustomize.pl
57# before anything else. This script can then be set up, for example,
58# to add additional entries to @INC.
59#
60#USE_SITECUST *= define
61
62#
63# uncomment to enable multiple interpreters. This is need for fork()
64# emulation and for thread support.
65#
66USE_MULTI *= define
67
68#
69# Interpreter cloning/threads; now reasonably complete.
70# This should be enabled to get the fork() emulation.
71# This needs USE_MULTI above.
72#
73USE_ITHREADS *= define
74
75#
76# uncomment to enable the implicit "host" layer for all system calls
77# made by perl. This needs USE_MULTI above.
78# This is also needed to get fork().
79#
80USE_IMP_SYS *= define
81
82#
83# Comment out next assign to disable perl's I/O subsystem and use compiler's
84# stdio for IO - depending on your compiler vendor and run time library you may
85# then get a number of fails from make test i.e. bugs - complain to them not us ;-).
86# You will also be unable to take full advantage of perl5.8's support for multiple
87# encodings and may see lower IO performance. You have been warned.
88USE_PERLIO *= define
89
90#
91# Comment this out if you don't want to enable large file support for
92# some reason. Should normally only be changed to maintain compatibility
93# with an older release of perl.
94USE_LARGE_FILES *= define
95
96#
97# Uncomment this if you're building a 32-bit perl and want 64-bit integers.
98# (If you're building a 64-bit perl then you will have 64-bit integers whether
99# or not this is uncommented.)
100#USE_64_BIT_INT *= define
101
102#
103# uncomment exactly one of the following
104#
105# Visual C++ 6.x (aka Visual C++ 98)
106#CCTYPE *= MSVC60
107# Visual C++ Toolkit 2003 (aka Visual C++ 7.x) (free command-line tools)
108#CCTYPE *= MSVC70FREE
109# Visual C++ .NET 2003 (aka Visual C++ 7.x) (full version)
110#CCTYPE *= MSVC70
111# Windows Server 2003 SP1 Platform SDK (April 2005)
112#CCTYPE = SDK2003SP1
113# Visual C++ 2005 Express Edition (aka Visual C++ 8.x) (free version)
114#CCTYPE *= MSVC80FREE
115# Visual C++ 2005 (aka Visual C++ 8.x) (full version)
116#CCTYPE *= MSVC80
117# Visual C++ 2008 Express Edition (aka Visual C++ 9.x) (free version)
118#CCTYPE *= MSVC90FREE
119# Visual C++ 2008 (aka Visual C++ 9.x) (full version)
120#CCTYPE *= MSVC90
121# Visual C++ 2010 Express Edition (aka Visual C++ 10.x) (free version)
122#CCTYPE = MSVC100FREE
123# Visual C++ 2010 (aka Visual C++ 10.x) (full version)
124#CCTYPE = MSVC100
125# MinGW or mingw-w64 with gcc-3.2 or later
126CCTYPE *= GCC
127
128#
129# uncomment next line if you want debug version of perl (big,slow)
130# If not enabled, we automatically try to use maximum optimization
131# with all compilers that are known to have a working optimizer.
132#
133#CFG *= Debug
134
135#
136# uncomment to enable linking with setargv.obj under the Visual C
137# compiler. Setting this options enables perl to expand wildcards in
138# arguments, but it may be harder to use alternate methods like
139# File::DosGlob that are more powerful. This option is supported only with
140# Visual C.
141#
142#USE_SETARGV *= define
143
144#
145# set this if you wish to use perl's malloc
146# WARNING: Turning this on/off WILL break binary compatibility with extensions
147# you may have compiled with/without it. Be prepared to recompile all
148# extensions if you change the default. Currently, this cannot be enabled
149# if you ask for USE_IMP_SYS above.
150#
151#PERL_MALLOC *= define
152
153#
154# set this to enable debugging mstats
155# This must be enabled to use the Devel::Peek::mstat() function. This cannot
156# be enabled without PERL_MALLOC as well.
157#
158#DEBUG_MSTATS *= define
159
160#
161# set this to additionally provide a statically linked perl-static.exe.
162# Note that dynamic loading will not work with this perl, so you must
163# include required modules statically using the STATIC_EXT or ALL_STATIC
164# variables below. A static library perl517s.lib will also be created.
165# Ordinary perl.exe is not affected by this option.
166#
167#BUILD_STATIC *= define
168
169#
170# in addition to BUILD_STATIC the option ALL_STATIC makes *every*
171# extension get statically built
172# This will result in a very large perl executable, but the main purpose
173# is to have proper linking set so as to be able to create miscellaneous
174# executables with different built-in extensions
175#
176#ALL_STATIC *= define
177
178#
179# set the install locations of the compiler include/libraries
180# Running VCVARS32.BAT is *required* when using Visual C.
181# Some versions of Visual C don't define MSVCDIR in the environment,
182# so you may have to set CCHOME explicitly (spaces in the path name should
183# not be quoted)
184#
185.IF "$(CCTYPE)" == "GCC"
186CCHOME *= C:\MinGW
187.ELSE
188CCHOME *= $(MSVCDIR)
189.ENDIF
190
191#
192# uncomment this if you are using x86_64-w64-mingw32 cross-compiler
193# ie if your gcc executable is called 'x86_64-w64-mingw32-gcc'
194# instead of the usual 'gcc'.
195#
196#GCCCROSS *= define
197
198#
199# Following sets $Config{incpath} and $Config{libpth}
200#
201
202.IF "$(GCCCROSS)" == "define"
203CCINCDIR *= $(CCHOME)\x86_64-w64-mingw32\include
204CCLIBDIR *= $(CCHOME)\x86_64-w64-mingw32\lib
205CCDLLDIR *= $(CCLIBDIR)
206.ELSE
207CCINCDIR *= $(CCHOME)\include
208CCLIBDIR *= $(CCHOME)\lib
209CCDLLDIR *= $(CCHOME)\bin
210.ENDIF
211
212#
213# Additional compiler flags can be specified here.
214#
215BUILDOPT *= $(BUILDOPTEXTRA)
216
217#
218# This should normally be disabled. Enabling it will disable the File::Glob
219# implementation of CORE::glob.
220#
221#BUILDOPT += -DPERL_EXTERNAL_GLOB
222
223#
224# Perl needs to read scripts in text mode so that the DATA filehandle
225# works correctly with seek() and tell(), or around auto-flushes of
226# all filehandles (e.g. by system(), backticks, fork(), etc).
227#
228# The current version on the ByteLoader module on CPAN however only
229# works if scripts are read in binary mode. But before you disable text
230# mode script reading (and break some DATA filehandle functionality)
231# please check first if an updated ByteLoader isn't available on CPAN.
232#
233BUILDOPT += -DPERL_TEXTMODE_SCRIPTS
234
235#
236# specify semicolon-separated list of extra directories that modules will
237# look for libraries (spaces in path names need not be quoted)
238#
239EXTRALIBDIRS *=
240
241#
242# set this to point to cmd.exe (only needed if you use some
243# alternate shell that doesn't grok cmd.exe style commands)
244#
245#SHELL *= g:\winnt\system32\cmd.exe
246
247#
248# set this to your email address (perl will guess a value from
249# from your loginname and your hostname, which may not be right)
250#
251#EMAIL *=
252
253##
254## Build configuration ends.
255##
256
257##################### CHANGE THESE ONLY IF YOU MUST #####################
258
259PERL_MALLOC *= undef
260DEBUG_MSTATS *= undef
261
262USE_SITECUST *= undef
263USE_MULTI *= undef
264USE_ITHREADS *= undef
265USE_IMP_SYS *= undef
266USE_PERLIO *= undef
267USE_LARGE_FILES *= undef
268USE_64_BIT_INT *= undef
269
270.IF "$(USE_IMP_SYS)" == "define"
271PERL_MALLOC = undef
272.ENDIF
273
274.IF "$(PERL_MALLOC)" == "undef"
275DEBUG_MSTATS = undef
276.ENDIF
277
278.IF "$(DEBUG_MSTATS)" == "define"
279BUILDOPT += -DPERL_DEBUGGING_MSTATS
280.ENDIF
281
282.IF "$(USE_IMP_SYS) $(USE_MULTI)" == "define undef"
283USE_MULTI != define
284.ENDIF
285
286.IF "$(USE_ITHREADS) $(USE_MULTI)" == "define undef"
287USE_MULTI != define
288.ENDIF
289
290.IF "$(USE_SITECUST)" == "define"
291BUILDOPT += -DUSE_SITECUSTOMIZE
292.ENDIF
293
294.IF "$(USE_MULTI)" != "undef"
295BUILDOPT += -DPERL_IMPLICIT_CONTEXT
296.ENDIF
297
298.IF "$(USE_IMP_SYS)" != "undef"
299BUILDOPT += -DPERL_IMPLICIT_SYS
300.ENDIF
301
302.IMPORT .IGNORE : PROCESSOR_ARCHITECTURE PROCESSOR_ARCHITEW6432 WIN64 CCHOME
303
304PROCESSOR_ARCHITECTURE *= x86
305
306.IF "$(WIN64)" == ""
307# When we are running from a 32bit cmd.exe on AMD64 then
308# PROCESSOR_ARCHITECTURE is set to x86 and PROCESSOR_ARCHITEW6432
309# is set to AMD64
310.IF "$(PROCESSOR_ARCHITEW6432)" != ""
311PROCESSOR_ARCHITECTURE != $(PROCESSOR_ARCHITEW6432)
312WIN64 = define
313.ELIF "$(PROCESSOR_ARCHITECTURE)" == "AMD64" || "$(PROCESSOR_ARCHITECTURE)" == "IA64"
314WIN64 = define
315.ELSE
316WIN64 = undef
317.ENDIF
318.ENDIF
319
320.IF "$(WIN64)" == "define"
321USE_64_BIT_INT = define
322.ENDIF
323
324# Treat 64-bit MSVC60 (doesn't really exist) as SDK2003SP1 because
325# both link against MSVCRT.dll (which is part of Windows itself) and
326# not against a compiler specific versioned runtime.
327.IF "$(WIN64)" == "define" && "$(CCTYPE)" == "MSVC60"
328CCTYPE = SDK2003SP1
329.ENDIF
330
331ARCHITECTURE = $(PROCESSOR_ARCHITECTURE)
332.IF "$(ARCHITECTURE)" == "AMD64"
333ARCHITECTURE = x64
334.ENDIF
335.IF "$(ARCHITECTURE)" == "IA64"
336ARCHITECTURE = ia64
337.ENDIF
338
339.IF "$(USE_MULTI)" == "define"
340ARCHNAME = MSWin32-$(ARCHITECTURE)-multi
341.ELSE
342.IF "$(USE_PERLIO)" == "define"
343ARCHNAME = MSWin32-$(ARCHITECTURE)-perlio
344.ELSE
345ARCHNAME = MSWin32-$(ARCHITECTURE)
346.ENDIF
347.ENDIF
348
349.IF "$(USE_ITHREADS)" == "define"
350ARCHNAME !:= $(ARCHNAME)-thread
351.ENDIF
352
353.IF "$(WIN64)" != "define"
354.IF "$(USE_64_BIT_INT)" == "define"
355ARCHNAME !:= $(ARCHNAME)-64int
356.ENDIF
357.ENDIF
358
359# Visual C++ 98, .NET 2003, 2005/2008/2010 specific.
360# VC++ 6/7/8/9/10.x can load DLLs on demand. Makes the test suite run
361# in about 10% less time. (The free version of 7.x can't do this, but the free
362# versions of 8/9/10.x can.)
363.IF "$(CCTYPE)" == "MSVC60" || "$(CCTYPE)" == "MSVC70" || \
364 "$(CCTYPE)" == "MSVC80" || "$(CCTYPE)" == "MSVC80FREE" || \
365 "$(CCTYPE)" == "MSVC90" || "$(CCTYPE)" == "MSVC90FREE" || \
366 "$(CCTYPE)" == "MSVC100" || "$(CCTYPE)" == "MSVC100FREE"
367DELAYLOAD *= -DELAYLOAD:ws2_32.dll delayimp.lib
368.ENDIF
369
370# Visual C++ 2005 and 2008 (VC++ 8.x and 9.x) create manifest files for EXEs and
371# DLLs. These either need copying everywhere with the binaries, or else need
372# embedding in them otherwise MSVCR80.dll or MSVCR90.dll won't be found. For
373# simplicity, embed them if they exist (and delete them afterwards so that they
374# don't get installed too).
375EMBED_EXE_MANI = if exist $@.manifest mt -nologo -manifest $@.manifest -outputresource:$@;1 && \
376 if exist $@.manifest del $@.manifest
377EMBED_DLL_MANI = if exist $@.manifest mt -nologo -manifest $@.manifest -outputresource:$@;2 && \
378 if exist $@.manifest del $@.manifest
379
380ARCHDIR = ..\lib\$(ARCHNAME)
381COREDIR = ..\lib\CORE
382AUTODIR = ..\lib\auto
383LIBDIR = ..\lib
384EXTDIR = ..\ext
385DISTDIR = ..\dist
386CPANDIR = ..\cpan
387PODDIR = ..\pod
388EXTUTILSDIR = $(LIBDIR)\ExtUtils
389HTMLDIR = .\html
390
391#
392INST_SCRIPT = $(INST_TOP)$(INST_VER)\bin
393INST_BIN = $(INST_SCRIPT)$(INST_ARCH)
394INST_LIB = $(INST_TOP)$(INST_VER)\lib
395INST_ARCHLIB = $(INST_LIB)$(INST_ARCH)
396INST_COREDIR = $(INST_ARCHLIB)\CORE
397INST_HTML = $(INST_TOP)$(INST_VER)\html
398
399#
400# Programs to compile, build .lib files and link
401#
402
403.USESHELL :
404
405.IF "$(CCTYPE)" == "GCC"
406
407.IF "$(GCCCROSS)" == "define"
408ARCHPREFIX = x86_64-w64-mingw32-
409.ENDIF
410
411CC = $(ARCHPREFIX)gcc
412LINK32 = $(ARCHPREFIX)g++
413LIB32 = $(ARCHPREFIX)ar rc
414IMPLIB = $(ARCHPREFIX)dlltool
415RSC = $(ARCHPREFIX)windres
416
417i = .i
418o = .o
419a = .a
420
421#
422# Options
423#
424
425INCLUDES = -I.\include -I. -I.. -I$(COREDIR)
426DEFINES = -DWIN32
427.IF "$(WIN64)" == "define"
428DEFINES += -DWIN64 -DCONSERVATIVE
429.ENDIF
430LOCDEFS = -DPERLDLL -DPERL_CORE
431SUBSYS = console
432CXX_FLAG = -xc++
433
434# Current releases of MinGW 5.1.4 (as of 11-Aug-2009) will fail to link
435# correctly if -lmsvcrt is specified explicitly.
436LIBC =
437#LIBC = -lmsvcrt
438
439# same libs as MSVC
440LIBFILES = $(LIBC) \
441 -lmoldname -lkernel32 -luser32 -lgdi32 \
442 -lwinspool -lcomdlg32 -ladvapi32 -lshell32 -lole32 \
443 -loleaut32 -lnetapi32 -luuid -lws2_32 -lmpr \
444 -lwinmm -lversion -lodbc32 -lodbccp32 -lcomctl32
445
446.IF "$(CFG)" == "Debug"
447OPTIMIZE = -g -O2 -DDEBUGGING
448LINK_DBG = -g
449.ELSE
450OPTIMIZE = -s -O2
451LINK_DBG = -s
452.ENDIF
453
454EXTRACFLAGS =
455CFLAGS = $(EXTRACFLAGS) $(INCLUDES) $(DEFINES) $(LOCDEFS) $(OPTIMIZE)
456LINK_FLAGS = $(LINK_DBG) -L"$(INST_COREDIR)" -L"$(CCLIBDIR)"
457OBJOUT_FLAG = -o
458EXEOUT_FLAG = -o
459LIBOUT_FLAG =
460
461BUILDOPT += -fno-strict-aliasing -mms-bitfields
462
463.ELSE
464
465CC = cl
466LINK32 = link
467LIB32 = $(LINK32) -lib
468RSC = rc
469
470#
471# Options
472#
473
474INCLUDES = -I$(COREDIR) -I.\include -I. -I..
475#PCHFLAGS = -Fpc:\temp\vcmoduls.pch -YX
476DEFINES = -DWIN32 -D_CONSOLE -DNO_STRICT
477LOCDEFS = -DPERLDLL -DPERL_CORE
478SUBSYS = console
479CXX_FLAG = -TP -EHsc
480
481LIBC = msvcrt.lib
482
483.IF "$(CFG)" == "Debug"
484OPTIMIZE = -Od -MD -Zi -DDEBUGGING
485LINK_DBG = -debug
486.ELSE
487OPTIMIZE = -MD -Zi -DNDEBUG
488# we enable debug symbols in release builds also
489LINK_DBG = -debug -opt:ref,icf
490# you may want to enable this if you want COFF symbols in the executables
491# in addition to the PDB symbols. The default Dr. Watson that ships with
492# Windows can use the the former but not latter. The free WinDbg can be
493# installed to get better stack traces from just the PDB symbols, so we
494# avoid the bloat of COFF symbols by default.
495#LINK_DBG = $(LINK_DBG) -debugtype:both
496.IF "$(WIN64)" == "define"
497# enable Whole Program Optimizations (WPO) and Link Time Code Generation (LTCG)
498OPTIMIZE += -Ox -GL
499LINK_DBG += -ltcg
500.ELSE
501# -O1 yields smaller code, which turns out to be faster than -O2 on x86
502OPTIMIZE += -O1
503#OPTIMIZE += -O2
504.ENDIF
505.ENDIF
506
507.IF "$(WIN64)" == "define"
508DEFINES += -DWIN64 -DCONSERVATIVE
509OPTIMIZE += -fp:precise
510.ENDIF
511
512# For now, silence VC++ 8/9/10.x's warnings about "unsafe" CRT functions
513# and POSIX CRT function names being deprecated.
514.IF "$(CCTYPE)" == "MSVC80" || "$(CCTYPE)" == "MSVC80FREE" || \
515 "$(CCTYPE)" == "MSVC90" || "$(CCTYPE)" == "MSVC90FREE" || \
516 "$(CCTYPE)" == "MSVC100" || "$(CCTYPE)" == "MSVC100FREE"
517DEFINES += -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE
518.ENDIF
519
520# In VS 2005 (VC++ 8.0) Microsoft changes time_t from 32-bit to
521# 64-bit, even in 32-bit mode. It also provides the _USE_32BIT_TIME_T
522# preprocessor option to revert back to the old functionality for
523# backward compatibility. We define this symbol here for older 32-bit
524# compilers only (which aren't using it at all) for the sole purpose
525# of getting it into $Config{ccflags}. That way if someone builds
526# Perl itself with e.g. VC6 but later installs an XS module using VC8
527# the time_t types will still be compatible.
528.IF "$(WIN64)" == "undef"
529.IF "$(CCTYPE)" == "MSVC60" || \
530 "$(CCTYPE)" == "MSVC70" || "$(CCTYPE)" == "MSVC70FREE"
531BUILDOPT += -D_USE_32BIT_TIME_T
532.ENDIF
533.ENDIF
534
535LIBBASEFILES = \
536 oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.lib \
537 comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \
538 netapi32.lib uuid.lib ws2_32.lib mpr.lib winmm.lib \
539 version.lib odbc32.lib odbccp32.lib comctl32.lib
540
541# The 64 bit Windows Server 2003 SP1 SDK compilers link against MSVCRT.dll, which
542# doesn't include the buffer overrun verification code used by the /GS switch.
543# Since the code links against libraries that are compiled with /GS, this
544# "security cookie verification" code must be included via bufferoverflow.lib.
545.IF "$(WIN64)" == "define" && "$(CCTYPE)" == "SDK2003SP1"
546LIBBASEFILES += bufferoverflowU.lib
547.ENDIF
548
549LIBFILES = $(LIBBASEFILES) $(LIBC)
550
551EXTRACFLAGS = -nologo -GF -W3
552CFLAGS = $(EXTRACFLAGS) $(INCLUDES) $(DEFINES) $(LOCDEFS) \
553 $(PCHFLAGS) $(OPTIMIZE)
554LINK_FLAGS = -nologo -nodefaultlib $(LINK_DBG) \
555 -libpath:"$(INST_COREDIR)" \
556 -machine:$(PROCESSOR_ARCHITECTURE)
557LIB_FLAGS = -nologo
558OBJOUT_FLAG = -Fo
559EXEOUT_FLAG = -Fe
560LIBOUT_FLAG = /out:
561
562.ENDIF
563
564CFLAGS_O = $(CFLAGS) $(BUILDOPT)
565
566.IF "$(CCTYPE)" == "MSVC80" || "$(CCTYPE)" == "MSVC80FREE" || \
567 "$(CCTYPE)" == "MSVC90" || "$(CCTYPE)" == "MSVC90FREE" || \
568 "$(CCTYPE)" == "MSVC100" || "$(CCTYPE)" == "MSVC100FREE"
569LINK_FLAGS += "/manifestdependency:type='Win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'"
570.ELSE
571RSC_FLAGS = -DINCLUDE_MANIFEST
572.ENDIF
573
574
575# used to allow local linking flags that are not propogated into Config.pm,
576# currently unused
577# -- BKS, 12-12-1999
578PRIV_LINK_FLAGS *=
579BLINK_FLAGS = $(PRIV_LINK_FLAGS) $(LINK_FLAGS)
580
581#################### do not edit below this line #######################
582############# NO USER-SERVICEABLE PARTS BEYOND THIS POINT ##############
583
584# Some old dmakes (including Sarathy's one at
585# http://search.cpan.org/CPAN/authors/id/G/GS/GSAR/dmake-4.1pl1-win32.zip)
586# don't support logical OR (||) or logical AND (&&) in conditional
587# expressions and hence don't process this makefile correctly. Determine
588# whether this is the case so that we can give the user an error message.
589.IF 1 == 1 || 1 == 1
590NEWDMAKE = define
591.ELSE
592NEWDMAKE = undef
593.ENDIF
594
595o *= .obj
596a *= .lib
597
598LKPRE = INPUT (
599LKPOST = )
600
601#
602# Rules
603#
604
605.SUFFIXES : .c .i $(o) .dll $(a) .exe .rc .res
606
607.c$(o):
608 $(CC) -c $(null,$(<:d) $(NULL) -I$(<:d)) $(CFLAGS_O) $(OBJOUT_FLAG)$@ $<
609
610.c.i:
611 $(CC) -c $(null,$(<:d) $(NULL) -I$(<:d)) $(CFLAGS_O) -E $< >$@
612
613.y.c:
614 $(NOOP)
615
616$(o).dll:
617.IF "$(CCTYPE)" == "GCC"
618 $(LINK32) -o $@ $(BLINK_FLAGS) $< $(LIBFILES)
619 $(IMPLIB) --input-def $(*B).def --output-lib $(*B).a $@
620.ELSE
621 $(LINK32) -dll -subsystem:windows -implib:$(*B).lib -def:$(*B).def \
622 -out:$@ $(BLINK_FLAGS) $(LIBFILES) $< $(LIBPERL)
623 $(EMBED_DLL_MANI)
624.ENDIF
625
626.rc.res:
627.IF "$(CCTYPE)" == "GCC"
628 $(RSC) --use-temp-file --include-dir=. --include-dir=.. -O COFF -D INCLUDE_MANIFEST -i $< -o $@
629.ELSE
630 $(RSC) -i.. -DINCLUDE_MANIFEST $<
631.ENDIF
632
633#
634# various targets
635MINIPERL = ..\miniperl.exe
636MINIDIR = .\mini
637PERLEXE = ..\perl.exe
638WPERLEXE = ..\wperl.exe
639PERLEXESTATIC = ..\perl-static.exe
640GLOBEXE = ..\perlglob.exe
641CONFIGPM = ..\lib\Config.pm ..\lib\Config_heavy.pl
642MINIMOD = ..\lib\ExtUtils\Miniperl.pm
643X2P = ..\x2p\a2p.exe
644GENUUDMAP = ..\generate_uudmap.exe
645.IF "$(BUILD_STATIC)" == "define"
646PERLSTATIC = static
647.ELSE
648PERLSTATIC =
649.ENDIF
650
651# Unicode data files generated by mktables
652UNIDATAFILES = ..\lib\unicore\Decomposition.pl ..\lib\unicore\TestProp.pl \
653 ..\lib\unicore\CombiningClass.pl ..\lib\unicore\Name.pl \
654 ..\lib\unicore\UCD.pl ..\lib\unicore\Name.pm \
655 ..\lib\unicore\Heavy.pl ..\lib\unicore\mktables.lst
656
657# Directories of Unicode data files generated by mktables
658UNIDATADIR1 = ..\lib\unicore\To
659UNIDATADIR2 = ..\lib\unicore\lib
660
661PERLEXE_MANIFEST= .\perlexe.manifest
662PERLEXE_ICO = .\perlexe.ico
663PERLEXE_RES = .\perlexe.res
664PERLDLL_RES =
665
666# Nominate a target which causes extensions to be re-built
667# This used to be $(PERLEXE), but at worst it is the .dll that they depend
668# on and really only the interface - i.e. the .def file used to export symbols
669# from the .dll
670PERLDEP = perldll.def
671
672
673PL2BAT = bin\pl2bat.pl
674
675UTILS = \
676 ..\utils\h2ph \
677 ..\utils\splain \
678 ..\utils\perlbug \
679 ..\utils\pl2pm \
680 ..\utils\c2ph \
681 ..\utils\pstruct \
682 ..\utils\h2xs \
683 ..\utils\perldoc \
684 ..\utils\perlivp \
685 ..\utils\libnetcfg \
686 ..\utils\enc2xs \
687 ..\utils\piconv \
688 ..\utils\config_data \
689 ..\utils\corelist \
690 ..\utils\cpan \
691 ..\utils\xsubpp \
692 ..\utils\pod2html \
693 ..\utils\prove \
694 ..\utils\ptar \
695 ..\utils\ptardiff \
696 ..\utils\ptargrep \
697 ..\utils\zipdetails \
698 ..\utils\cpanp-run-perl \
699 ..\utils\cpanp \
700 ..\utils\cpan2dist \
701 ..\utils\shasum \
702 ..\utils\instmodsh \
703 ..\utils\json_pp \
704 ..\x2p\find2perl \
705 ..\x2p\psed \
706 ..\x2p\s2p \
707 bin\exetype.pl \
708 bin\runperl.pl \
709 bin\pl2bat.pl \
710 bin\perlglob.pl \
711 bin\search.pl
712
713.IF "$(CCTYPE)" == "GCC"
714
715CFGSH_TMPL = config.gc
716CFGH_TMPL = config_H.gc
717PERLIMPLIB = ..\libperl517$(a)
718PERLSTATICLIB = ..\libperl517s$(a)
719INT64 = long long
720INT64f = ll
721
722.ELSE
723
724CFGSH_TMPL = config.vc
725CFGH_TMPL = config_H.vc
726INT64 = __int64
727INT64f = I64
728
729.ENDIF
730
731# makedef.pl must be updated if this changes, and this should normally
732# only change when there is an incompatible revision of the public API.
733PERLIMPLIB *= ..\perl517$(a)
734PERLSTATICLIB *= ..\perl517s$(a)
735PERLDLL = ..\perl517.dll
736
737XCOPY = xcopy /f /r /i /d /y
738RCOPY = xcopy /f /r /i /e /d /y
739NOOP = @rem
740
741MICROCORE_SRC = \
742 ..\av.c \
743 ..\deb.c \
744 ..\doio.c \
745 ..\doop.c \
746 ..\dump.c \
747 ..\globals.c \
748 ..\gv.c \
749 ..\mro.c \
750 ..\hv.c \
751 ..\locale.c \
752 ..\keywords.c \
753 ..\mathoms.c \
754 ..\mg.c \
755 ..\numeric.c \
756 ..\op.c \
757 ..\pad.c \
758 ..\perl.c \
759 ..\perlapi.c \
760 ..\perly.c \
761 ..\pp.c \
762 ..\pp_ctl.c \
763 ..\pp_hot.c \
764 ..\pp_pack.c \
765 ..\pp_sort.c \
766 ..\pp_sys.c \
767 ..\reentr.c \
768 ..\regcomp.c \
769 ..\regexec.c \
770 ..\run.c \
771 ..\scope.c \
772 ..\sv.c \
773 ..\taint.c \
774 ..\toke.c \
775 ..\universal.c \
776 ..\utf8.c \
777 ..\util.c
778
779EXTRACORE_SRC += perllib.c
780
781.IF "$(PERL_MALLOC)" == "define"
782EXTRACORE_SRC += ..\malloc.c
783.ENDIF
784
785EXTRACORE_SRC += ..\perlio.c
786
787WIN32_SRC = \
788 .\win32.c \
789 .\win32sck.c \
790 .\win32thread.c \
791 .\fcrypt.c
792
793# We need this for miniperl build unless we override canned
794# config.h #define building mini\*
795#.IF "$(USE_PERLIO)" == "define"
796WIN32_SRC += .\win32io.c
797#.ENDIF
798
799X2P_SRC = \
800 ..\x2p\a2p.c \
801 ..\x2p\hash.c \
802 ..\x2p\str.c \
803 ..\x2p\util.c \
804 ..\x2p\walk.c
805
806CORE_NOCFG_H = \
807 ..\av.h \
808 ..\cop.h \
809 ..\cv.h \
810 ..\dosish.h \
811 ..\embed.h \
812 ..\form.h \
813 ..\gv.h \
814 ..\handy.h \
815 ..\hv.h \
816 ..\iperlsys.h \
817 ..\mg.h \
818 ..\nostdio.h \
819 ..\op.h \
820 ..\opcode.h \
821 ..\perl.h \
822 ..\perlapi.h \
823 ..\perlsdio.h \
824 ..\perlsfio.h \
825 ..\perly.h \
826 ..\pp.h \
827 ..\proto.h \
828 ..\regcomp.h \
829 ..\regexp.h \
830 ..\scope.h \
831 ..\sv.h \
832 ..\thread.h \
833 ..\unixish.h \
834 ..\utf8.h \
835 ..\util.h \
836 ..\warnings.h \
837 ..\XSUB.h \
838 ..\EXTERN.h \
839 ..\perlvars.h \
840 ..\intrpvar.h \
841 .\include\dirent.h \
842 .\include\netdb.h \
843 .\include\sys\socket.h \
844 .\win32.h
845
846CORE_H = $(CORE_NOCFG_H) .\config.h ..\git_version.h
847
848UUDMAP_H = ..\uudmap.h
849BITCOUNT_H = ..\bitcount.h
850MG_DATA_H = ..\mg_data.h
851GENERATED_HEADERS = $(UUDMAP_H) $(BITCOUNT_H) $(MG_DATA_H)
852
853MICROCORE_OBJ = $(MICROCORE_SRC:db:+$(o))
854CORE_OBJ = $(MICROCORE_OBJ) $(EXTRACORE_SRC:db:+$(o))
855WIN32_OBJ = $(WIN32_SRC:db:+$(o))
856MINICORE_OBJ = $(MINIDIR)\{$(MICROCORE_OBJ:f) miniperlmain$(o) perlio$(o)}
857MINIWIN32_OBJ = $(MINIDIR)\{$(WIN32_OBJ:f)}
858MINI_OBJ = $(MINICORE_OBJ) $(MINIWIN32_OBJ)
859DLL_OBJ = $(DYNALOADER)
860X2P_OBJ = $(X2P_SRC:db:+$(o))
861GENUUDMAP_OBJ = $(GENUUDMAP:db:+$(o))
862
863PERLDLL_OBJ = $(CORE_OBJ)
864PERLEXE_OBJ = perlmain$(o)
865PERLEXEST_OBJ = perlmainst$(o)
866
867PERLDLL_OBJ += $(WIN32_OBJ) $(DLL_OBJ)
868
869.IF "$(USE_SETARGV)" != ""
870SETARGV_OBJ = setargv$(o)
871.ENDIF
872
873.IF "$(ALL_STATIC)" == "define"
874# some exclusions, unfortunately, until fixed:
875# - Win32 extension contains overlapped symbols with win32.c (BUG!)
876# - MakeMaker isn't capable enough for SDBM_File (smaller bug)
877# - Encode (encoding search algorithm relies on shared library?)
878STATIC_EXT = * !Win32 !SDBM_File !Encode
879.ELSE
880# specify static extensions here, for example:
881#STATIC_EXT = Cwd Compress/Raw/Zlib
882STATIC_EXT = Win32CORE
883.ENDIF
884
885DYNALOADER = ..\DynaLoader$(o)
886
887# vars must be separated by "\t+~\t+", since we're using the tempfile
888# version of config_sh.pl (we were overflowing someone's buffer by
889# trying to fit them all on the command line)
890# -- BKS 10-17-1999
891CFG_VARS = \
892 INST_TOP=$(INST_TOP) ~ \
893 INST_VER=$(INST_VER) ~ \
894 INST_ARCH=$(INST_ARCH) ~ \
895 archname=$(ARCHNAME) ~ \
896 cc=$(CC) ~ \
897 ld=$(LINK32) ~ \
898 ccflags=$(EXTRACFLAGS) $(OPTIMIZE) $(DEFINES) $(BUILDOPT) ~ \
899 cf_email=$(EMAIL) ~ \
900 d_mymalloc=$(PERL_MALLOC) ~ \
901 libs=$(LIBFILES:f) ~ \
902 incpath=$(CCINCDIR) ~ \
903 libperl=$(PERLIMPLIB:f) ~ \
904 libpth=$(CCLIBDIR);$(EXTRALIBDIRS) ~ \
905 libc=$(LIBC) ~ \
906 make=dmake ~ \
907 _o=$(o) ~ \
908 obj_ext=$(o) ~ \
909 _a=$(a) ~ \
910 lib_ext=$(a) ~ \
911 static_ext=$(STATIC_EXT) ~ \
912 usethreads=$(USE_ITHREADS) ~ \
913 useithreads=$(USE_ITHREADS) ~ \
914 usemultiplicity=$(USE_MULTI) ~ \
915 useperlio=$(USE_PERLIO) ~ \
916 use64bitint=$(USE_64_BIT_INT) ~ \
917 uselargefiles=$(USE_LARGE_FILES) ~ \
918 usesitecustomize=$(USE_SITECUST) ~ \
919 LINK_FLAGS=$(LINK_FLAGS) ~ \
920 optimize=$(OPTIMIZE) ~ \
921 ARCHPREFIX=$(ARCHPREFIX) ~ \
922 WIN64=$(WIN64)
923
924ICWD = -I..\dist\Cwd -I..\dist\Cwd\lib
925
926#
927# Top targets
928#
929
930all : CHECKDMAKE .\config.h ..\git_version.h $(GLOBEXE) $(MINIPERL) \
931 $(MINIMOD) $(CONFIGPM) $(UNIDATAFILES) MakePPPort \
932 $(PERLEXE) $(X2P) Extensions Extensions_nonxs $(PERLSTATIC)
933
934regnodes : ..\regnodes.h
935
936..\regcomp$(o) : ..\regnodes.h ..\regcharclass.h
937
938..\regexec$(o) : ..\regnodes.h ..\regcharclass.h
939
940reonly : regnodes .\config.h ..\git_version.h $(GLOBEXE) $(MINIPERL) \
941 $(MINIMOD) $(CONFIGPM) $(UNIDATAFILES) $(PERLEXE) \
942 $(X2P) Extensions_reonly
943
944static: $(PERLEXESTATIC)
945
946#----------------------------------------------------------------
947
948CHECKDMAKE :
949.IF "$(NEWDMAKE)" == "define"
950 $(NOOP)
951.ELSE
952 @echo Your dmake doesn't support ^|^| or ^&^& in conditional expressions.
953 @echo Please get the latest dmake from http://search.cpan.org/dist/dmake/
954 @exit 1
955.ENDIF
956
957$(GLOBEXE) : perlglob$(o)
958.IF "$(CCTYPE)" == "GCC"
959 $(LINK32) $(BLINK_FLAGS) -mconsole -o $@ perlglob$(o) $(LIBFILES)
960.ELSE
961 $(LINK32) $(BLINK_FLAGS) $(LIBFILES) -out:$@ -subsystem:$(SUBSYS) \
962 perlglob$(o) setargv$(o)
963 $(EMBED_EXE_MANI)
964.ENDIF
965
966perlglob$(o) : perlglob.c
967
968config.w32 : $(CFGSH_TMPL)
969 copy $(CFGSH_TMPL) config.w32
970
971#
972# Copy the template config.h and set configurables at the end of it
973# as per the options chosen and compiler used.
974# Note: This config.h is only used to build miniperl.exe anyway, but
975# it's as well to have its options correct to be sure that it builds
976# and so that it's "-V" options are correct for use by makedef.pl. The
977# real config.h used to build perl.exe is generated from the top-level
978# config_h.SH by config_h.PL (run by miniperl.exe).
979#
980.\config.h : $(CFGH_TMPL) $(CORE_NOCFG_H)
981 -del /f config.h
982 copy $(CFGH_TMPL) config.h
983 @echo.>>$@
984 @echo #ifndef _config_h_footer_>>$@
985 @echo #define _config_h_footer_>>$@
986 @echo #undef PTRSIZE>>$@
987 @echo #undef SSize_t>>$@
988 @echo #undef HAS_ATOLL>>$@
989 @echo #undef HAS_STRTOLL>>$@
990 @echo #undef HAS_STRTOULL>>$@
991 @echo #undef IVTYPE>>$@
992 @echo #undef UVTYPE>>$@
993 @echo #undef IVSIZE>>$@
994 @echo #undef UVSIZE>>$@
995 @echo #undef NV_PRESERVES_UV>>$@
996 @echo #undef NV_PRESERVES_UV_BITS>>$@
997 @echo #undef IVdf>>$@
998 @echo #undef UVuf>>$@
999 @echo #undef UVof>>$@
1000 @echo #undef UVxf>>$@
1001 @echo #undef UVXf>>$@
1002 @echo #undef USE_64_BIT_INT>>$@
1003 @echo #undef Size_t_size>>$@
1004.IF "$(WIN64)"=="define"
1005 @echo #define PTRSIZE ^8>>$@
1006 @echo #define SSize_t $(INT64)>>$@
1007 @echo #define HAS_ATOLL>>$@
1008 @echo #define HAS_STRTOLL>>$@
1009 @echo #define HAS_STRTOULL>>$@
1010 @echo #define Size_t_size ^8>>$@
1011.ELSE
1012 @echo #define PTRSIZE ^4>>$@
1013 @echo #define SSize_t int>>$@
1014 @echo #undef HAS_ATOLL>>$@
1015 @echo #undef HAS_STRTOLL>>$@
1016 @echo #undef HAS_STRTOULL>>$@
1017 @echo #define Size_t_size ^4>>$@
1018.ENDIF
1019.IF "$(USE_64_BIT_INT)"=="define"
1020 @echo #define IVTYPE $(INT64)>>$@
1021 @echo #define UVTYPE unsigned $(INT64)>>$@
1022 @echo #define IVSIZE ^8>>$@
1023 @echo #define UVSIZE ^8>>$@
1024 @echo #undef NV_PRESERVES_UV>>$@
1025 @echo #define NV_PRESERVES_UV_BITS 53>>$@
1026 @echo #define IVdf "$(INT64f)d">>$@
1027 @echo #define UVuf "$(INT64f)u">>$@
1028 @echo #define UVof "$(INT64f)o">>$@
1029 @echo #define UVxf "$(INT64f)x">>$@
1030 @echo #define UVXf "$(INT64f)X">>$@
1031 @echo #define USE_64_BIT_INT>>$@
1032.ELSE
1033 @echo #define IVTYPE long>>$@
1034 @echo #define UVTYPE unsigned long>>$@
1035 @echo #define IVSIZE ^4>>$@
1036 @echo #define UVSIZE ^4>>$@
1037 @echo #define NV_PRESERVES_UV>>$@
1038 @echo #define NV_PRESERVES_UV_BITS 32>>$@
1039 @echo #define IVdf "ld">>$@
1040 @echo #define UVuf "lu">>$@
1041 @echo #define UVof "lo">>$@
1042 @echo #define UVxf "lx">>$@
1043 @echo #define UVXf "lX">>$@
1044 @echo #undef USE_64_BIT_INT>>$@
1045.ENDIF
1046 @echo #endif>>$@
1047
1048..\git_version.h : $(MINIPERL) ..\make_patchnum.pl
1049 cd .. && miniperl -Ilib make_patchnum.pl
1050
1051# make sure that we recompile perl.c if the git version changes
1052..\perl$(o) : ..\git_version.h
1053
1054..\config.sh : config.w32 $(MINIPERL) config_sh.PL FindExt.pm
1055 $(MINIPERL) -I..\lib config_sh.PL --cfgsh-option-file \
1056 $(mktmp $(CFG_VARS)) config.w32 > ..\config.sh
1057
1058# This target is for when changes to the main config.sh happen.
1059# Edit config.gc, then make perl using GCC in a minimal configuration (i.e.
1060# with MULTI, ITHREADS, IMP_SYS, LARGE_FILES and PERLIO off), then make
1061# this target to regenerate config_H.gc.
1062regen_config_h:
1063 $(MINIPERL) -I..\lib config_sh.PL --cfgsh-option-file $(mktmp $(CFG_VARS)) \
1064 $(CFGSH_TMPL) > ..\config.sh
1065 $(MINIPERL) -I..\lib ..\configpm --chdir=..
1066 -del /f $(CFGH_TMPL)
1067 -$(MINIPERL) -I..\lib $(ICWD) config_h.PL "ARCHPREFIX=$(ARCHPREFIX)"
1068 rename config.h $(CFGH_TMPL)
1069
1070$(CONFIGPM) : $(MINIPERL) ..\config.sh config_h.PL ..\minimod.pl
1071 $(MINIPERL) -I..\lib ..\configpm --chdir=..
1072 if exist lib\* $(RCOPY) lib\*.* ..\lib\$(NULL)
1073 $(XCOPY) ..\*.h $(COREDIR)\*.*
1074 $(XCOPY) *.h $(COREDIR)\*.*
1075 $(RCOPY) include $(COREDIR)\*.*
1076 $(MINIPERL) -I..\lib $(ICWD) config_h.PL "ARCHPREFIX=$(ARCHPREFIX)" \
1077 || $(MAKE) $(MAKEMACROS) $(CONFIGPM) $(MAKEFILE)
1078
1079..\lib\buildcustomize.pl: $(MINIPERL) ..\write_buildcustomize.pl
1080 $(MINIPERL) -I..\lib ..\write_buildcustomize.pl .. >..\lib\buildcustomize.pl
1081
1082
1083$(MINIPERL) : $(MINIDIR) $(MINI_OBJ) $(CRTIPMLIBS)
1084.IF "$(CCTYPE)" == "GCC"
1085 $(LINK32) -v -mconsole -o $@ $(BLINK_FLAGS) \
1086 $(mktmp $(LKPRE) $(MINI_OBJ) $(LIBFILES) $(LKPOST))
1087.ELSE
1088 $(LINK32) -subsystem:console -out:$@ $(BLINK_FLAGS) \
1089 @$(mktmp $(LIBFILES) $(MINI_OBJ))
1090 $(EMBED_EXE_MANI)
1091.ENDIF
1092
1093$(MINIDIR) :
1094 if not exist "$(MINIDIR)" mkdir "$(MINIDIR)"
1095
1096$(MINICORE_OBJ) : $(CORE_NOCFG_H)
1097 $(CC) -c $(CFLAGS) -DPERL_EXTERNAL_GLOB -DPERL_IS_MINIPERL $(OBJOUT_FLAG)$@ ..\$(*B).c
1098
1099$(MINIWIN32_OBJ) : $(CORE_NOCFG_H)
1100 $(CC) -c $(CFLAGS) -DPERL_IS_MINIPERL $(OBJOUT_FLAG)$@ $(*B).c
1101
1102# -DPERL_IMPLICIT_SYS needs C++ for perllib.c
1103# rules wrapped in .IFs break Win9X build (we end up with unbalanced []s unless
1104# unless the .IF is true), so instead we use a .ELSE with the default.
1105# This is the only file that depends on perlhost.h, vmem.h, and vdir.h
1106
1107perllib$(o) : perllib.c .\perlhost.h .\vdir.h .\vmem.h
1108.IF "$(USE_IMP_SYS)" == "define"
1109 $(CC) -c -I. $(CFLAGS_O) $(CXX_FLAG) $(OBJOUT_FLAG)$@ perllib.c
1110.ELSE
1111 $(CC) -c -I. $(CFLAGS_O) $(OBJOUT_FLAG)$@ perllib.c
1112.ENDIF
1113
1114# 1. we don't want to rebuild miniperl.exe when config.h changes
1115# 2. we don't want to rebuild miniperl.exe with non-default config.h
1116# 3. we can't have miniperl.exe depend on git_version.h, as miniperl creates it
1117$(MINI_OBJ) : $(CORE_NOCFG_H)
1118
1119$(WIN32_OBJ) : $(CORE_H)
1120
1121$(CORE_OBJ) : $(CORE_H)
1122
1123$(DLL_OBJ) : $(CORE_H)
1124
1125$(X2P_OBJ) : $(CORE_H)
1126
1127perldll.def : $(MINIPERL) $(CONFIGPM) ..\embed.fnc ..\makedef.pl create_perllibst_h.pl
1128 $(MINIPERL) -I..\lib create_perllibst_h.pl
1129 $(MINIPERL) -I..\lib -w ..\makedef.pl PLATFORM=win32 $(OPTIMIZE) $(DEFINES) \
1130 $(BUILDOPT) CCTYPE=$(CCTYPE) TARG_DIR=..\ > perldll.def
1131
1132$(PERLDLL): perldll.def $(PERLDLL_OBJ) $(PERLDLL_RES) Extensions_static
1133.IF "$(CCTYPE)" == "GCC"
1134 $(LINK32) -mdll -o $@ -Wl,--base-file -Wl,perl.base $(BLINK_FLAGS) \
1135 $(mktmp $(LKPRE) $(PERLDLL_OBJ) \
1136 $(shell @type Extensions_static) \
1137 $(LIBFILES) $(LKPOST))
1138 $(IMPLIB) --output-lib $(PERLIMPLIB) \
1139 --dllname $(PERLDLL:b).dll \
1140 --def perldll.def \
1141 --base-file perl.base \
1142 --output-exp perl.exp
1143 $(LINK32) -mdll -o $@ $(BLINK_FLAGS) \
1144 $(mktmp $(LKPRE) $(PERLDLL_OBJ) \
1145 $(shell @type Extensions_static) \
1146 $(LIBFILES) perl.exp $(LKPOST))
1147.ELSE
1148 $(LINK32) -dll -def:perldll.def -out:$@ $(BLINK_FLAGS) \
1149 @Extensions_static \
1150 @$(mktmp -base:0x28000000 $(DELAYLOAD) $(LIBFILES) \
1151 $(PERLDLL_RES) $(PERLDLL_OBJ))
1152 $(EMBED_DLL_MANI)
1153.ENDIF
1154 $(XCOPY) $(PERLIMPLIB) $(COREDIR)
1155
1156$(PERLSTATICLIB): Extensions_static
1157.IF "$(CCTYPE)" == "GCC"
1158# XXX: It would be nice if MinGW's ar accepted a temporary file, but this
1159# doesn't seem to work:
1160# $(LIB32) $(LIB_FLAGS) $@ \
1161# $(mktmp $(LKPRE) $(shell @type Extensions_static) \
1162# $(PERLDLL_OBJ) $(LKPOST))
1163 $(LIB32) $(LIB_FLAGS) $@ \
1164 $(shell @type Extensions_static) \
1165 $(PERLDLL_OBJ)
1166.ELSE
1167 $(LIB32) $(LIB_FLAGS) -out:$@ @Extensions_static \
1168 @$(mktmp $(PERLDLL_OBJ))
1169.ENDIF
1170 $(XCOPY) $(PERLSTATICLIB) $(COREDIR)
1171
1172$(PERLEXE_RES): perlexe.rc $(PERLEXE_MANIFEST) $(PERLEXE_ICO)
1173
1174$(MINIMOD) : $(MINIPERL) ..\minimod.pl
1175 cd .. && miniperl minimod.pl > lib\ExtUtils\Miniperl.pm
1176
1177..\x2p\a2p$(o) : ..\x2p\a2p.c
1178 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\a2p.c
1179
1180..\x2p\hash$(o) : ..\x2p\hash.c
1181 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\hash.c
1182
1183..\x2p\str$(o) : ..\x2p\str.c
1184 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\str.c
1185
1186..\x2p\util$(o) : ..\x2p\util.c
1187 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\util.c
1188
1189..\x2p\walk$(o) : ..\x2p\walk.c
1190 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\walk.c
1191
1192$(X2P) : $(MINIPERL) $(X2P_OBJ) Extensions
1193 $(MINIPERL) -I..\lib ..\x2p\find2perl.PL
1194 $(MINIPERL) -I..\lib ..\x2p\s2p.PL
1195.IF "$(CCTYPE)" == "GCC"
1196 $(LINK32) -v -o $@ $(BLINK_FLAGS) \
1197 $(mktmp $(LKPRE) $(X2P_OBJ) $(LIBFILES) $(LKPOST))
1198.ELSE
1199 $(LINK32) -subsystem:console -out:$@ $(BLINK_FLAGS) \
1200 @$(mktmp $(LIBFILES) $(X2P_OBJ))
1201 $(EMBED_EXE_MANI)
1202.ENDIF
1203
1204$(MINIDIR)\globals$(o) : $(GENERATED_HEADERS)
1205
1206$(UUDMAP_H) $(MG_DATA_H) : $(BITCOUNT_H)
1207
1208$(BITCOUNT_H) : $(GENUUDMAP)
1209 $(GENUUDMAP) $(GENERATED_HEADERS)
1210
1211$(GENUUDMAP_OBJ) : ..\mg_raw.h
1212
1213$(GENUUDMAP) : $(GENUUDMAP_OBJ)
1214.IF "$(CCTYPE)" == "GCC"
1215 $(LINK32) -v -o $@ $(BLINK_FLAGS) \
1216 $(mktmp $(LKPRE) $(GENUUDMAP_OBJ) $(LIBFILES) $(LKPOST))
1217.ELSE
1218 $(LINK32) -subsystem:console -out:$@ $(BLINK_FLAGS) \
1219 @$(mktmp $(LIBFILES) $(GENUUDMAP_OBJ))
1220 $(EMBED_EXE_MANI)
1221.ENDIF
1222
1223perlmain.c : runperl.c
1224 copy runperl.c perlmain.c
1225
1226perlmain$(o) : perlmain.c
1227 $(CC) $(CFLAGS_O:s,-DPERLDLL,-UPERLDLL,) $(OBJOUT_FLAG)$@ -c perlmain.c
1228
1229perlmainst.c : runperl.c
1230 copy runperl.c perlmainst.c
1231
1232perlmainst$(o) : perlmainst.c
1233 $(CC) $(CFLAGS_O) $(OBJOUT_FLAG)$@ -c perlmainst.c
1234
1235$(PERLEXE): $(PERLDLL) $(CONFIGPM) $(PERLEXE_OBJ) $(PERLEXE_RES)
1236.IF "$(CCTYPE)" == "GCC"
1237 $(LINK32) -mconsole -o $@ $(BLINK_FLAGS) \
1238 $(PERLEXE_OBJ) $(PERLEXE_RES) $(PERLIMPLIB) $(LIBFILES)
1239.ELSE
1240 $(LINK32) -subsystem:console -out:$@ $(BLINK_FLAGS) \
1241 $(LIBFILES) $(PERLEXE_OBJ) $(SETARGV_OBJ) $(PERLIMPLIB) $(PERLEXE_RES)
1242 $(EMBED_EXE_MANI)
1243.ENDIF
1244 copy $(PERLEXE) $(WPERLEXE)
1245 $(MINIPERL) -I..\lib bin\exetype.pl $(WPERLEXE) WINDOWS
1246
1247$(PERLEXESTATIC): $(PERLSTATICLIB) $(CONFIGPM) $(PERLEXEST_OBJ) $(PERLEXE_RES)
1248.IF "$(CCTYPE)" == "GCC"
1249 $(LINK32) -mconsole -o $@ $(BLINK_FLAGS) \
1250 $(mktmp $(LKPRE) $(shell @type Extensions_static) \
1251 $(PERLSTATICLIB) $(LIBFILES) $(PERLEXEST_OBJ) \
1252 $(PERLEXE_RES) $(LKPOST))
1253.ELSE
1254 $(LINK32) -subsystem:console -out:$@ $(BLINK_FLAGS) \
1255 @Extensions_static $(PERLSTATICLIB) /PDB:NONE \
1256 $(LIBFILES) $(PERLEXEST_OBJ) $(SETARGV_OBJ) $(PERLEXE_RES)
1257 $(EMBED_EXE_MANI)
1258.ENDIF
1259
1260MakePPPort: $(MINIPERL) $(CONFIGPM) Extensions_nonxs
1261 $(MINIPERL) -I..\lib $(ICWD) ..\mkppport
1262
1263#-------------------------------------------------------------------------------
1264# There's no direct way to mark a dependency on
1265# DynaLoader.pm, so this will have to do
1266Extensions : ..\make_ext.pl ..\lib\buildcustomize.pl $(PERLDEP) $(CONFIGPM) $(DYNALOADER)
1267 $(XCOPY) ..\*.h $(COREDIR)\*.*
1268 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --dynamic
1269
1270Extensions_reonly : ..\make_ext.pl ..\lib\buildcustomize.pl $(PERLDEP) $(CONFIGPM) $(DYNALOADER)
1271 $(XCOPY) ..\*.h $(COREDIR)\*.*
1272 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --dynamic +re
1273
1274Extensions_static : ..\make_ext.pl ..\lib\buildcustomize.pl list_static_libs.pl $(PERLDEP) $(CONFIGPM)
1275 $(XCOPY) ..\*.h $(COREDIR)\*.*
1276 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --static
1277 $(MINIPERL) -I..\lib list_static_libs.pl > Extensions_static
1278
1279Extensions_nonxs : ..\make_ext.pl ..\lib\buildcustomize.pl $(PERLDEP) $(CONFIGPM) ..\pod\perlfunc.pod
1280 $(XCOPY) ..\*.h $(COREDIR)\*.*
1281 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --nonxs
1282
1283$(DYNALOADER) : ..\make_ext.pl ..\lib\buildcustomize.pl $(PERLDEP) $(CONFIGPM) Extensions_nonxs
1284 $(XCOPY) ..\*.h $(COREDIR)\*.*
1285 $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(EXTDIR) --dynaloader
1286
1287Extensions_clean :
1288 -if exist $(MINIPERL) $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --all --target=clean
1289
1290Extensions_realclean :
1291 -if exist $(MINIPERL) $(MINIPERL) -I..\lib ..\make_ext.pl "MAKE=$(MAKE)" --dir=$(CPANDIR) --dir=$(DISTDIR) --dir=$(EXTDIR) --all --target=realclean
1292
1293#-------------------------------------------------------------------------------
1294
1295
1296doc: $(PERLEXE) ..\pod\perltoc.pod
1297 $(PERLEXE) -I..\lib ..\installhtml --podroot=.. --htmldir=$(HTMLDIR) \
1298 --podpath=pod:lib:utils --htmlroot="file://$(INST_HTML:s,:,|,)"\
1299 --recurse
1300
1301# Note that this next section is parsed (and regenerated) by pod/buildtoc
1302# so please check that script before making structural changes here
1303utils: $(PERLEXE) $(X2P)
1304 cd ..\utils && $(MAKE) PERL=$(MINIPERL)
1305 copy ..\README.aix ..\pod\perlaix.pod
1306 copy ..\README.amiga ..\pod\perlamiga.pod
1307 copy ..\README.beos ..\pod\perlbeos.pod
1308 copy ..\README.bs2000 ..\pod\perlbs2000.pod
1309 copy ..\README.ce ..\pod\perlce.pod
1310 copy ..\README.cn ..\pod\perlcn.pod
1311 copy ..\README.cygwin ..\pod\perlcygwin.pod
1312 copy ..\README.dgux ..\pod\perldgux.pod
1313 copy ..\README.dos ..\pod\perldos.pod
1314 copy ..\README.epoc ..\pod\perlepoc.pod
1315 copy ..\README.freebsd ..\pod\perlfreebsd.pod
1316 copy ..\README.haiku ..\pod\perlhaiku.pod
1317 copy ..\README.hpux ..\pod\perlhpux.pod
1318 copy ..\README.hurd ..\pod\perlhurd.pod
1319 copy ..\README.irix ..\pod\perlirix.pod
1320 copy ..\README.jp ..\pod\perljp.pod
1321 copy ..\README.ko ..\pod\perlko.pod
1322 copy ..\README.linux ..\pod\perllinux.pod
1323 copy ..\README.macos ..\pod\perlmacos.pod
1324 copy ..\README.macosx ..\pod\perlmacosx.pod
1325 copy ..\README.netware ..\pod\perlnetware.pod
1326 copy ..\README.openbsd ..\pod\perlopenbsd.pod
1327 copy ..\README.os2 ..\pod\perlos2.pod
1328 copy ..\README.os390 ..\pod\perlos390.pod
1329 copy ..\README.os400 ..\pod\perlos400.pod
1330 copy ..\README.plan9 ..\pod\perlplan9.pod
1331 copy ..\README.qnx ..\pod\perlqnx.pod
1332 copy ..\README.riscos ..\pod\perlriscos.pod
1333 copy ..\README.solaris ..\pod\perlsolaris.pod
1334 copy ..\README.symbian ..\pod\perlsymbian.pod
1335 copy ..\README.tru64 ..\pod\perltru64.pod
1336 copy ..\README.tw ..\pod\perltw.pod
1337 copy ..\README.vos ..\pod\perlvos.pod
1338 copy ..\README.win32 ..\pod\perlwin32.pod
1339 copy ..\pod\perldelta.pod ..\pod\perl5175delta.pod
1340 $(PERLEXE) $(PL2BAT) $(UTILS)
1341 $(PERLEXE) $(ICWD) ..\autodoc.pl ..
1342 $(PERLEXE) $(ICWD) ..\pod\perlmodlib.pl -q
1343
1344..\pod\perltoc.pod: $(PERLEXE) Extensions Extensions_nonxs
1345 $(PERLEXE) -f ..\pod\buildtoc -q
1346
1347# Note that the pod cleanup in this next section is parsed (and regenerated
1348# by pod/buildtoc so please check that script before making changes here
1349
1350distclean: realclean
1351 -del /f $(MINIPERL) $(PERLEXE) $(PERLDLL) $(GLOBEXE) \
1352 $(PERLIMPLIB) ..\miniperl$(a) $(MINIMOD) \
1353 $(PERLEXESTATIC) $(PERLSTATICLIB)
1354 -del /f *.def *.map
1355 -del /f $(LIBDIR)\Encode.pm $(LIBDIR)\encoding.pm $(LIBDIR)\Errno.pm
1356 -del /f $(LIBDIR)\Config.pod $(LIBDIR)\POSIX.pod $(LIBDIR)\threads.pm
1357 -del /f $(LIBDIR)\.exists $(LIBDIR)\attributes.pm $(LIBDIR)\DynaLoader.pm
1358 -del /f $(LIBDIR)\Fcntl.pm $(LIBDIR)\IO.pm $(LIBDIR)\Opcode.pm
1359 -del /f $(LIBDIR)\ops.pm $(LIBDIR)\Safe.pm
1360 -del /f $(LIBDIR)\SDBM_File.pm $(LIBDIR)\Socket.pm $(LIBDIR)\POSIX.pm
1361 -del /f $(LIBDIR)\B.pm $(LIBDIR)\O.pm $(LIBDIR)\re.pm
1362 -del /f $(LIBDIR)\File\Glob.pm
1363 -del /f $(LIBDIR)\Storable.pm
1364 -del /f $(LIBDIR)\Sys\Hostname.pm
1365 -del /f $(LIBDIR)\Time\HiRes.pm
1366 -del /f $(LIBDIR)\Unicode\Normalize.pm
1367 -del /f $(LIBDIR)\Math\BigInt\FastCalc.pm
1368 -del /f $(LIBDIR)\Win32.pm
1369 -del /f $(LIBDIR)\Win32CORE.pm
1370 -del /f $(LIBDIR)\Win32API\File.pm
1371 -del /f $(LIBDIR)\Win32API\File\cFile.pc
1372 -del /f $(LIBDIR)\buildcustomize.pl
1373 -del /f $(DISTDIR)\XSLoader\XSLoader.pm
1374 -if exist $(LIBDIR)\App rmdir /s /q $(LIBDIR)\App
1375 -if exist $(LIBDIR)\Archive rmdir /s /q $(LIBDIR)\Archive
1376 -if exist $(LIBDIR)\Attribute rmdir /s /q $(LIBDIR)\Attribute
1377 -if exist $(LIBDIR)\autodie rmdir /s /q $(LIBDIR)\autodie
1378 -if exist $(LIBDIR)\B rmdir /s /q $(LIBDIR)\B
1379 -if exist $(LIBDIR)\CGI rmdir /s /q $(LIBDIR)\CGI
1380 -if exist $(LIBDIR)\CPAN rmdir /s /q $(LIBDIR)\CPAN
1381 -if exist $(LIBDIR)\CPANPLUS rmdir /s /q $(LIBDIR)\CPANPLUS
1382 -if exist $(LIBDIR)\Compress rmdir /s /q $(LIBDIR)\Compress
1383 -if exist $(LIBDIR)\Data rmdir /s /q $(LIBDIR)\Data
1384 -if exist $(LIBDIR)\Devel rmdir /s /q $(LIBDIR)\Devel
1385 -if exist $(LIBDIR)\Digest rmdir /s /q $(LIBDIR)\Digest
1386 -if exist $(LIBDIR)\Encode rmdir /s /q $(LIBDIR)\Encode
1387 -if exist $(LIBDIR)\encoding rmdir /s /q $(LIBDIR)\encoding
1388 -if exist $(LIBDIR)\ExtUtils\CBuilder rmdir /s /q $(LIBDIR)\ExtUtils\CBuilder
1389 -if exist $(LIBDIR)\ExtUtils\Command rmdir /s /q $(LIBDIR)\ExtUtils\Command
1390 -if exist $(LIBDIR)\ExtUtils\Constant rmdir /s /q $(LIBDIR)\ExtUtils\Constant
1391 -if exist $(LIBDIR)\ExtUtils\Liblist rmdir /s /q $(LIBDIR)\ExtUtils\Liblist
1392 -if exist $(LIBDIR)\ExtUtils\MakeMaker rmdir /s /q $(LIBDIR)\ExtUtils\MakeMaker
1393 -if exist $(LIBDIR)\File\Spec rmdir /s /q $(LIBDIR)\File\Spec
1394 -if exist $(LIBDIR)\Filter rmdir /s /q $(LIBDIR)\Filter
1395 -if exist $(LIBDIR)\Hash rmdir /s /q $(LIBDIR)\Hash
1396 -if exist $(LIBDIR)\I18N\LangTags rmdir /s /q $(LIBDIR)\I18N\LangTags
1397 -if exist $(LIBDIR)\inc rmdir /s /q $(LIBDIR)\inc
1398 -if exist $(LIBDIR)\Module\Pluggable rmdir /s /q $(LIBDIR)\Module\Pluggable
1399 -if exist $(LIBDIR)\IO rmdir /s /q $(LIBDIR)\IO
1400 -if exist $(LIBDIR)\IPC rmdir /s /q $(LIBDIR)\IPC
1401 -if exist $(LIBDIR)\List rmdir /s /q $(LIBDIR)\List
1402 -if exist $(LIBDIR)\Locale rmdir /s /q $(LIBDIR)\Locale
1403 -if exist $(LIBDIR)\Log rmdir /s /q $(LIBDIR)\Log
1404 -if exist $(LIBDIR)\Math rmdir /s /q $(LIBDIR)\Math
1405 -if exist $(LIBDIR)\Memoize rmdir /s /q $(LIBDIR)\Memoize
1406 -if exist $(LIBDIR)\MIME rmdir /s /q $(LIBDIR)\MIME
1407 -if exist $(LIBDIR)\Module rmdir /s /q $(LIBDIR)\Module
1408 -if exist $(LIBDIR)\mro rmdir /s /q $(LIBDIR)\mro
1409 -if exist $(LIBDIR)\Net\FTP rmdir /s /q $(LIBDIR)\Net\FTP
1410 -if exist $(LIBDIR)\Object rmdir /s /q $(LIBDIR)\Object
1411 -if exist $(LIBDIR)\Package rmdir /s /q $(LIBDIR)\Package
1412 -if exist $(LIBDIR)\Params rmdir /s /q $(LIBDIR)\Params
1413 -if exist $(LIBDIR)\Parse rmdir /s /q $(LIBDIR)\Parse
1414 -if exist $(LIBDIR)\PerlIO rmdir /s /q $(LIBDIR)\PerlIO
1415 -if exist $(LIBDIR)\Pod\Perldoc rmdir /s /q $(LIBDIR)\Pod\Perldoc
1416 -if exist $(LIBDIR)\Pod\Simple rmdir /s /q $(LIBDIR)\Pod\Simple
1417 -if exist $(LIBDIR)\Pod\Text rmdir /s /q $(LIBDIR)\Pod\Text
1418 -if exist $(LIBDIR)\re rmdir /s /q $(LIBDIR)\re
1419 -if exist $(LIBDIR)\Scalar rmdir /s /q $(LIBDIR)\Scalar
1420 -if exist $(LIBDIR)\Sys rmdir /s /q $(LIBDIR)\Sys
1421 -if exist $(LIBDIR)\TAP rmdir /s /q $(LIBDIR)\TAP
1422 -if exist $(LIBDIR)\Term\UI rmdir /s /q $(LIBDIR)\Term\UI
1423 -if exist $(LIBDIR)\Test rmdir /s /q $(LIBDIR)\Test
1424 -if exist $(LIBDIR)\Thread rmdir /s /q $(LIBDIR)\Thread
1425 -if exist $(LIBDIR)\threads rmdir /s /q $(LIBDIR)\threads
1426 -if exist $(LIBDIR)\Tie\Hash rmdir /s /q $(LIBDIR)\Tie\Hash
1427 -if exist $(LIBDIR)\Unicode\Collate rmdir /s /q $(LIBDIR)\Unicode\Collate
1428 -if exist $(LIBDIR)\XS rmdir /s /q $(LIBDIR)\XS
1429 -if exist $(LIBDIR)\Win32API rmdir /s /q $(LIBDIR)\Win32API
1430 -cd $(PODDIR) && del /f *.html *.bat roffitall \
1431 perl5175delta.pod perlaix.pod perlamiga.pod perlapi.pod \
1432 perlbeos.pod perlbs2000.pod perlce.pod perlcn.pod \
1433 perlcygwin.pod perldgux.pod perldos.pod perlepoc.pod \
1434 perlfreebsd.pod perlhaiku.pod perlhpux.pod perlhurd.pod \
1435 perlintern.pod perlirix.pod perljp.pod perlko.pod perllinux.pod \
1436 perlmacos.pod perlmacosx.pod perlmodlib.pod perlnetware.pod \
1437 perlopenbsd.pod perlos2.pod perlos390.pod perlos400.pod \
1438 perlplan9.pod perlqnx.pod perlriscos.pod perlsolaris.pod \
1439 perlsymbian.pod perltoc.pod perltru64.pod perltw.pod \
1440 perluniprops.pod perlvos.pod perlwin32.pod
1441 -cd ..\utils && del /f h2ph splain perlbug pl2pm c2ph pstruct h2xs \
1442 perldoc perlivp libnetcfg enc2xs piconv cpan *.bat \
1443 xsubpp pod2html instmodsh json_pp prove ptar ptardiff ptargrep cpanp-run-perl cpanp cpan2dist shasum corelist config_data zipdetails
1444 -cd ..\x2p && del /f find2perl s2p psed *.bat
1445 -del /f ..\config.sh perlmain.c dlutils.c config.h.new \
1446 perlmainst.c
1447 -del /f $(CONFIGPM)
1448 -del /f ..\lib\Config_git.pl
1449 -del /f bin\*.bat
1450 -del /f perllibst.h
1451 -del /f $(PERLEXE_RES) perl.base
1452 -cd .. && del /s *$(a) *.map *.pdb *.ilk *.tds *.bs *$(o) .exists pm_to_blib ppport.h
1453 -cd $(EXTDIR) && del /s *.def Makefile Makefile.old
1454 -cd $(DISTDIR) && del /s *.def Makefile Makefile.old
1455 -cd $(CPANDIR) && del /s *.def Makefile Makefile.old
1456 -if exist $(AUTODIR) rmdir /s /q $(AUTODIR)
1457 -if exist $(COREDIR) rmdir /s /q $(COREDIR)
1458 -if exist pod2htmd.tmp del pod2htmd.tmp
1459 -if exist $(HTMLDIR) rmdir /s /q $(HTMLDIR)
1460 -del /f ..\t\test_state
1461
1462install : all installbare installhtml
1463
1464installbare : utils ..\pod\perltoc.pod
1465 $(PERLEXE) ..\installperl
1466 if exist $(WPERLEXE) $(XCOPY) $(WPERLEXE) $(INST_BIN)\*.*
1467 if exist $(PERLEXESTATIC) $(XCOPY) $(PERLEXESTATIC) $(INST_BIN)\*.*
1468 $(XCOPY) $(GLOBEXE) $(INST_BIN)\*.*
1469 if exist ..\perl*.pdb $(XCOPY) ..\perl*.pdb $(INST_BIN)\*.*
1470 if exist ..\x2p\a2p.pdb $(XCOPY) ..\x2p\a2p.pdb $(INST_BIN)\*.*
1471 $(XCOPY) bin\*.bat $(INST_SCRIPT)\*.*
1472
1473installhtml : doc
1474 $(RCOPY) $(HTMLDIR)\*.* $(INST_HTML)\*.*
1475
1476inst_lib : $(CONFIGPM)
1477 $(RCOPY) ..\lib $(INST_LIB)\*.*
1478
1479$(UNIDATAFILES) ..\pod\perluniprops.pod .UPDATEALL : $(MINIPERL) $(CONFIGPM) ..\lib\unicore\mktables Extensions_nonxs
1480 cd ..\lib\unicore && \
1481 ..\$(MINIPERL) -I.. -I..\..\dist\Cwd\lib -I..\..\dist\Cwd mktables -P ..\..\pod -maketest -makelist -p
1482
1483minitest : $(MINIPERL) $(GLOBEXE) $(CONFIGPM) $(UNIDATAFILES) utils
1484 $(XCOPY) $(MINIPERL) ..\t\$(NULL)
1485 if exist ..\t\perl.exe del /f ..\t\perl.exe
1486 rename ..\t\miniperl.exe perl.exe
1487 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1488 attrib -r ..\t\*.*
1489 cd ..\t && \
1490 $(MINIPERL) -I..\lib harness base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t
1491
1492test-prep : all utils ..\pod\perltoc.pod
1493 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1494 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1495 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1496.IF "$(CCTYPE)" == "GCC"
1497# If building with gcc versions 4.x.x or greater, then
1498# the GCC helper DLL will also need copied to the test directory.
1499# The name of the dll can change, depending upon which vendor has supplied
1500# your compiler, and upon the values of "x".
1501# libstdc++-6.dll is copied if it exists as it, too, may then be needed.
1502# Without this copying, the op/taint.t test script will fail.
1503 if exist $(CCDLLDIR)\libgcc_s_sjlj-1.dll $(XCOPY) $(CCDLLDIR)\libgcc_s_sjlj-1.dll ..\t\$(NULL)
1504 if exist $(CCDLLDIR)\libgcc_s_dw2-1.dll $(XCOPY) $(CCDLLDIR)\libgcc_s_dw2-1.dll ..\t\$(NULL)
1505 if exist $(CCDLLDIR)\libstdc++-6.dll $(XCOPY) $(CCDLLDIR)\libstdc++-6.dll ..\t\$(NULL)
1506.ENDIF
1507
1508test : test-prep
1509 set PERL_STATIC_EXT=$(STATIC_EXT) && \
1510 cd ..\t && $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES)
1511
1512test_porting : test-prep
1513 set PERL_STATIC_EXT=$(STATIC_EXT) && \
1514 cd ..\t && $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) porting\*.t ..\lib\diagnostics.t
1515
1516test-reonly : reonly utils
1517 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1518 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1519 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1520 cd ..\t && \
1521 $(PERLEXE) -I..\lib harness $(OPT) -re \bpat\\/ $(EXTRA) && \
1522 cd ..\win32
1523
1524regen :
1525 cd .. && regen.pl && cd win32
1526
1527test-notty : test-prep
1528 set PERL_STATIC_EXT=$(STATIC_EXT) && \
1529 set PERL_SKIP_TTY_TEST=1 && \
1530 cd ..\t && $(PERLEXE) -I.\lib harness $(TEST_SWITCHES) $(TEST_FILES)
1531
1532_test :
1533 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1534 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1535 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1536 set PERL_STATIC_EXT=$(STATIC_EXT) && \
1537 cd ..\t && $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES)
1538
1539_clean :
1540 -@erase miniperlmain$(o)
1541 -@erase $(MINIPERL)
1542 -@erase perlglob$(o)
1543 -@erase perlmain$(o)
1544 -@erase perlmainst$(o)
1545 -@erase config.w32
1546 -@erase /f config.h
1547 -@erase /f ..\git_version.h
1548 -@erase $(GLOBEXE)
1549 -@erase $(PERLEXE)
1550 -@erase $(WPERLEXE)
1551 -@erase $(PERLEXESTATIC)
1552 -@erase $(PERLSTATICLIB)
1553 -@erase $(PERLDLL)
1554 -@erase $(CORE_OBJ)
1555 -@erase $(GENUUDMAP) $(GENUUDMAP_OBJ) $(GENERATED_HEADERS)
1556 -if exist $(MINIDIR) rmdir /s /q $(MINIDIR)
1557 -if exist $(UNIDATADIR1) rmdir /s /q $(UNIDATADIR1)
1558 -if exist $(UNIDATADIR2) rmdir /s /q $(UNIDATADIR2)
1559 -@erase $(UNIDATAFILES)
1560 -@erase $(WIN32_OBJ)
1561 -@erase $(DLL_OBJ)
1562 -@erase $(X2P_OBJ)
1563 -@erase ..\*$(o) ..\*$(a) ..\*.exp *$(o) *$(a) *.exp *.res
1564 -@erase ..\t\*.exe ..\t\*.dll ..\t\*.bat
1565 -@erase ..\x2p\*.exe ..\x2p\*.bat
1566 -@erase *.ilk
1567 -@erase *.pdb
1568 -@erase *.tds
1569 -@erase Extensions_static
1570
1571
1572
1573clean : Extensions_clean _clean
1574
1575realclean : Extensions_realclean _clean
1576
1577# Handy way to run perlbug -ok without having to install and run the
1578# installed perlbug. We don't re-run the tests here - we trust the user.
1579# Please *don't* use this unless all tests pass.
1580# If you want to report test failures, use "dmake nok" instead.
1581ok: utils
1582 $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)"
1583
1584okfile: utils
1585 $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)" -F perl.ok
1586
1587nok: utils
1588 $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)"
1589
1590nokfile: utils
1591 $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)" -F perl.nok