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