Given that @optype and @specialsv_name are hard coded tables, it seems
[p5sagit/p5-mst-13.2.git] / win32 / Makefile
CommitLineData
9e42cd94 1#
2# Makefile to build perl on Windows NT using Microsoft NMAKE.
3# Supported compilers:
a7d225ec 4# Visual C++ 2.0 or later
9453ddcd 5# MS Platform SDK 64-bit compiler and tools
9e42cd94 6#
7# This is set up to build a perl.exe that runs off a shared library
78a7c709 8# (perl59.dll). Also makes individual DLLs for the XS extensions.
9e42cd94 9#
10
11##
12## Make sure you read README.win32 *before* you mess with anything here!
13##
14
15##
16## Build configuration. Edit the values below to suit your needs.
17##
18
19#
20# Set these to wherever you want "nmake install" to put your
21# newly built perl.
22#
23INST_DRV = c:
24INST_TOP = $(INST_DRV)\perl
25
26#
27# Comment this out if you DON'T want your perl installation to be versioned.
28# This means that the new installation will overwrite any files from the
29# old installation at the same INST_TOP location. Leaving it enabled is
30# the safest route, as perl adds the extra version directory to all the
31# locations it installs files to. If you disable it, an alternative
32# versioned installation can be obtained by setting INST_TOP above to a
33# path that includes an arbitrary version string.
34#
56a89353 35#INST_VER = \5.9.5
9e42cd94 36
37#
38# Comment this out if you DON'T want your perl installation to have
39# architecture specific components. This means that architecture-
40# specific files will be installed along with the architecture-neutral
41# files. Leaving it enabled is safer and more flexible, in case you
42# want to build multiple flavors of perl and install them together in
43# the same location. Commenting it out gives you a simpler
44# installation that is easier to understand for beginners.
45#
bdb4cb88 46#INST_ARCH = \$(ARCHNAME)
9e42cd94 47
48#
7ada00a0 49# Uncomment this if you want perl to run
50# $Config{sitelibexp}\sitecustomize.pl
51# before anything else. This script can then be set up, for example,
52# to add additional entries to @INC.
53#
54#USE_SITECUST = define
55
56#
9e42cd94 57# uncomment to enable multiple interpreters. This is need for fork()
f7d585d3 58# emulation and for thread support.
9e42cd94 59#
bdb4cb88 60USE_MULTI = define
9e42cd94 61
62#
f7d585d3 63# Beginnings of interpreter cloning/threads; now reasonably complete.
9e42cd94 64# This should be enabled to get the fork() emulation. This needs
65# USE_MULTI as well.
66#
bdb4cb88 67USE_ITHREADS = define
9e42cd94 68
69#
70# uncomment to enable the implicit "host" layer for all system calls
71# made by perl. This needs USE_MULTI above. This is also needed to
72# get fork().
73#
bdb4cb88 74USE_IMP_SYS = define
9e42cd94 75
76#
f7d585d3 77# Comment out next assign to disable perl's I/O subsystem and use compiler's
78# stdio for IO - depending on your compiler vendor and run time library you may
79# then get a number of fails from make test i.e. bugs - complain to them not us ;-).
80# You will also be unable to take full advantage of perl5.8's support for multiple
81# encodings and may see lower IO performance. You have been warned.
9e42cd94 82USE_PERLIO = define
83
84#
4a9d6100 85# Comment this out if you don't want to enable large file support for
86# some reason. Should normally only be changed to maintain compatibility
87# with an older release of perl.
bdb4cb88 88USE_LARGE_FILES = define
4a9d6100 89
90#
da2c7419 91# uncomment exactly one of the following
9e42cd94 92#
da2c7419 93# Visual C++ 2.x
9e42cd94 94#CCTYPE = MSVC20
da2c7419 95# Visual C++ > 2.x and < 6.x
96#CCTYPE = MSVC
1c847d4b 97# Visual C++ 6.x (aka Visual C++ 98)
4a9d6100 98CCTYPE = MSVC60
1c847d4b 99# Visual C++ Toolkit 2003 (aka Visual C++ 7.x) (free command-line tools)
da2c7419 100#CCTYPE = MSVC70FREE
1c847d4b 101# Visual C++ .NET 2003 (aka Visual C++ 7.x) (full version)
da2c7419 102#CCTYPE = MSVC70
1c847d4b 103# Visual C++ 2005 Express Edition (aka Visual C++ 8.x) (free version)
73c9ebc7 104#CCTYPE = MSVC80FREE
1c847d4b 105# Visual C++ 2005 (aka Visual C++ 8.x) (full version)
73c9ebc7 106#CCTYPE = MSVC80
9e42cd94 107
108#
109# uncomment next line if you want debug version of perl (big,slow)
f7d585d3 110# If not enabled, we automatically try to use maximum optimization
111# with all compilers that are known to have a working optimizer.
9e42cd94 112#
113#CFG = Debug
114
115#
116# uncomment to enable use of PerlCRT.DLL when using the Visual C compiler.
117# It has patches that fix known bugs in older versions of MSVCRT.DLL.
118# This currently requires VC 5.0 with Service Pack 3 or later.
119# Get it from CPAN at http://www.cpan.org/authors/id/D/DO/DOUGL/
120# and follow the directions in the package to install.
121#
122# Not recommended if you have VC 6.x and you're not running Windows 9x.
123#
124#USE_PERLCRT = define
125
126#
127# uncomment to enable linking with setargv.obj under the Visual C
128# compiler. Setting this options enables perl to expand wildcards in
129# arguments, but it may be harder to use alternate methods like
130# File::DosGlob that are more powerful. This option is supported only with
131# Visual C.
132#
133#USE_SETARGV = define
134
135#
4ace4afb 136# if you want to have the crypt() builtin function implemented, leave this or
137# CRYPT_LIB uncommented. The fcrypt.c file named here contains a suitable
138# version of des_fcrypt().
9e42cd94 139#
4ace4afb 140CRYPT_SRC = fcrypt.c
9e42cd94 141
142#
143# if you didn't set CRYPT_SRC and if you have des_fcrypt() available in a
144# library, uncomment this, and make sure the library exists (see README.win32)
145# Specify the full pathname of the library.
146#
147#CRYPT_LIB = fcrypt.lib
148
149#
150# set this if you wish to use perl's malloc
151# WARNING: Turning this on/off WILL break binary compatibility with extensions
152# you may have compiled with/without it. Be prepared to recompile all
153# extensions if you change the default. Currently, this cannot be enabled
154# if you ask for USE_IMP_SYS above.
155#
156#PERL_MALLOC = define
157
158#
06c896bb 159# set this to enable debugging mstats
160# This must be enabled to use the Devel::Peek::mstat() function. This cannot
161# be enabled without PERL_MALLOC as well.
162#
bdb4cb88 163#DEBUG_MSTATS = define
06c896bb 164
165#
4e036e4b 166# set this to additionally provide a statically linked perl-static.exe.
167# Note that dynamic loading will not work with this perl, so you must
168# include required modules statically using STATIC_EXT variable below.
169# A static library perl59s.lib will also be created.
170# Ordinary perl.exe is not affected by this option.
171#
172#BUILD_STATIC = define
173
174#
06c896bb 175#
9e42cd94 176# set the install locations of the compiler include/libraries
177# Running VCVARS32.BAT is *required* when using Visual C.
178# Some versions of Visual C don't define MSVCDIR in the environment,
179# so you may have to set CCHOME explicitly (spaces in the path name should
180# not be quoted)
181#
182#CCHOME = f:\msvc20
183CCHOME = $(MSVCDIR)
184CCINCDIR = $(CCHOME)\include
185CCLIBDIR = $(CCHOME)\lib
186
187#
188# Additional compiler flags can be specified here.
189#
2e30e1e1 190BUILDOPT = $(BUILDOPTEXTRA)
9e42cd94 191
7ada00a0 192#
2eb87578 193# Adding -DPERL_HASH_SEED_EXPLICIT will disable randomization of Perl's
194# internal hash function unless the PERL_HASH_SEED environment variable is set.
195# Alternatively, adding -DNO_HASH_SEED will completely disable the
196# randomization feature.
197# The latter is required to maintain binary compatibility with Perl 5.8.0.
198#
199#BUILDOPT = $(BUILDOPT) -DPERL_HASH_SEED_EXPLICIT
200#BUILDOPT = $(BUILDOPT) -DNO_HASH_SEED
201
9e42cd94 202#
203# This should normally be disabled. Adding -DPERL_POLLUTE enables support
204# for old symbols by default, at the expense of extreme pollution. You most
205# probably just want to build modules that won't compile with
206# perl Makefile.PL POLLUTE=1
207# instead of enabling this. Please report such modules to the respective
208# authors.
209#
210#BUILDOPT = $(BUILDOPT) -DPERL_POLLUTE
211
212#
213# This should normally be disabled. Enabling it will disable the File::Glob
214# implementation of CORE::glob.
215#
216#BUILDOPT = $(BUILDOPT) -DPERL_EXTERNAL_GLOB
217
218#
219# This should normally be disabled. Enabling it causes perl to read scripts
220# in text mode (which is the 5.005 behavior) and will break ByteLoader.
bdb4cb88 221#
9e42cd94 222#BUILDOPT = $(BUILDOPT) -DPERL_TEXTMODE_SCRIPTS
223
224#
225# specify semicolon-separated list of extra directories that modules will
226# look for libraries (spaces in path names need not be quoted)
227#
228EXTRALIBDIRS =
229
230#
231# set this to your email address (perl will guess a value from
232# from your loginname and your hostname, which may not be right)
233#
234#EMAIL =
235
236##
237## Build configuration ends.
238##
239
240##################### CHANGE THESE ONLY IF YOU MUST #####################
241
242!IF "$(CRYPT_SRC)$(CRYPT_LIB)" == ""
243D_CRYPT = undef
244!ELSE
245D_CRYPT = define
246CRYPT_FLAG = -DHAVE_DES_FCRYPT
247!ENDIF
248
646e33b6 249!IF "$(USE_IMP_SYS)" == "define"
250PERL_MALLOC = undef
251DEBUG_MSTATS = undef
252!ENDIF
253
9e42cd94 254!IF "$(PERL_MALLOC)" == ""
255PERL_MALLOC = undef
646e33b6 256DEBUG_MSTATS = undef
06c896bb 257!ENDIF
258
259!IF "$(DEBUG_MSTATS)" == ""
646e33b6 260DEBUG_MSTATS = undef
06c896bb 261!ENDIF
262
263!IF "$(DEBUG_MSTATS)" == "define"
646e33b6 264BUILDOPT = $(BUILDOPT) -DPERL_DEBUGGING_MSTATS
9e42cd94 265!ENDIF
266
7ada00a0 267!IF "$(USE_SITECUST)" == ""
268USE_SITECUST = undef
269!ENDIF
270
9e42cd94 271!IF "$(USE_MULTI)" == ""
272USE_MULTI = undef
273!ENDIF
274
275!IF "$(USE_ITHREADS)" == ""
276USE_ITHREADS = undef
277!ENDIF
278
279!IF "$(USE_IMP_SYS)" == ""
280USE_IMP_SYS = undef
281!ENDIF
282
283!IF "$(USE_PERLIO)" == ""
284USE_PERLIO = undef
285!ENDIF
286
4a9d6100 287!IF "$(USE_LARGE_FILES)" == ""
288USE_LARGE_FILES = undef
289!ENDIF
290
9e42cd94 291!IF "$(USE_PERLCRT)" == ""
292USE_PERLCRT = undef
293!ENDIF
294
3db8f154 295!IF "$(USE_IMP_SYS)$(USE_MULTI)" == "defineundef"
9e42cd94 296USE_MULTI = define
297!ENDIF
298
299!IF "$(USE_ITHREADS)$(USE_MULTI)" == "defineundef"
300USE_MULTI = define
9e42cd94 301!ENDIF
302
7ada00a0 303!IF "$(USE_SITECUST)" == "define"
304BUILDOPT = $(BUILDOPT) -DUSE_SITECUSTOMIZE
305!ENDIF
306
3db8f154 307!IF "$(USE_MULTI)" != "undef"
9e42cd94 308BUILDOPT = $(BUILDOPT) -DPERL_IMPLICIT_CONTEXT
309!ENDIF
310
311!IF "$(USE_IMP_SYS)" != "undef"
312BUILDOPT = $(BUILDOPT) -DPERL_IMPLICIT_SYS
313!ENDIF
314
315!IF "$(PROCESSOR_ARCHITECTURE)" == ""
316PROCESSOR_ARCHITECTURE = x86
317!ENDIF
318
c623ac67 319!IF "$(WIN64)" == ""
bf2a35e5 320# When we are running from a 32bit cmd.exe on AMD64 then
321# PROCESSOR_ARCHITECTURE is set to x86 and PROCESSOR_ARCHITEW6432
322# is set to AMD64
c623ac67 323!IF "$(PROCESSOR_ARCHITEW6432)" != ""
324PROCESSOR_ARCHITECTURE = $(PROCESSOR_ARCHITEW6432)
325WIN64 = define
326!ELSE
bf2a35e5 327!IF "$(PROCESSOR_ARCHITECTURE)" == "AMD64" || "$(PROCESSOR_ARCHITECTURE)" == "IA64"
c623ac67 328WIN64 = define
329!ELSE
330WIN64 = undef
331!ENDIF
332!ENDIF
333!ENDIF
334
bf2a35e5 335ARCHITECTURE = $(PROCESSOR_ARCHITECTURE)
336!IF "$(ARCHITECTURE)" == "AMD64"
337ARCHITECTURE = x64
9453ddcd 338!ENDIF
bf2a35e5 339!IF "$(ARCHITECTURE)" == "IA64"
340ARCHITECTURE = ia64
9453ddcd 341!ENDIF
342
9e42cd94 343!IF "$(USE_MULTI)" == "define"
bf2a35e5 344ARCHNAME = MSWin32-$(ARCHITECTURE)-multi
9e42cd94 345!ELSE
346!IF "$(USE_PERLIO)" == "define"
bf2a35e5 347ARCHNAME = MSWin32-$(ARCHITECTURE)-perlio
9e42cd94 348!ELSE
bf2a35e5 349ARCHNAME = MSWin32-$(ARCHITECTURE)
9e42cd94 350!ENDIF
351!ENDIF
9e42cd94 352
353!IF "$(USE_PERLIO)" == "define"
354BUILDOPT = $(BUILDOPT) -DUSE_PERLIO
355!ENDIF
356
357!IF "$(USE_ITHREADS)" == "define"
358ARCHNAME = $(ARCHNAME)-thread
359!ENDIF
360
1c847d4b 361# Visual C++ 98, .NET 2003 and 2005 specific.
362# VC++ 6.x, 7.x and 8.x can load DLL's on demand. Makes the test suite run in
363# about 10% less time. (The free version of 7.x can't do this, but the free
364# version of 8.x can.)
365!IF "$(CCTYPE)" == "MSVC60" || "$(CCTYPE)" == "MSVC70" || \
366 "$(CCTYPE)" == "MSVC80" || "$(CCTYPE)" == "MSVC80FREE"
036c1c1e 367DELAYLOAD = -DELAYLOAD:ws2_32.dll -DELAYLOAD:shell32.dll delayimp.lib
9e42cd94 368!ENDIF
369
c8e599d3 370# Visual C++ 2005 (VC++ 8.x) creates manifest files for EXEs and DLLs. These
371# either need copying everywhere with the binaries, or else need embedding in
372# them otherwise MSVCR80.dll won't be found. Embed them for simplicity, and
373# delete them afterwards so that they don't get installed too.
374!IF "$(CCTYPE)" == "MSVC80" || "$(CCTYPE)" == "MSVC80FREE"
375EMBED_EXE_MANI = mt -nologo -manifest $@.manifest -outputresource:$@;1 && \
376 del $@.manifest
377EMBED_DLL_MANI = mt -nologo -manifest $@.manifest -outputresource:$@;2 && \
378 del $@.manifest
379!ENDIF
380
9e42cd94 381ARCHDIR = ..\lib\$(ARCHNAME)
382COREDIR = ..\lib\CORE
383AUTODIR = ..\lib\auto
384LIBDIR = ..\lib
385EXTDIR = ..\ext
386PODDIR = ..\pod
387EXTUTILSDIR = $(LIBDIR)\ExtUtils
b4a41557 388HTMLDIR = .\html
9e42cd94 389
390#
391INST_SCRIPT = $(INST_TOP)$(INST_VER)\bin
392INST_BIN = $(INST_SCRIPT)$(INST_ARCH)
393INST_LIB = $(INST_TOP)$(INST_VER)\lib
394INST_ARCHLIB = $(INST_LIB)$(INST_ARCH)
395INST_COREDIR = $(INST_ARCHLIB)\CORE
9e42cd94 396INST_HTML = $(INST_TOP)$(INST_VER)\html
397
398#
399# Programs to compile, build .lib files and link
400#
401
402CC = cl
403LINK32 = link
404LIB32 = $(LINK32) -lib
405RSC = rc
406
407#
408# Options
409#
410
411INCLUDES = -I$(COREDIR) -I.\include -I. -I..
412#PCHFLAGS = -Fpc:\temp\vcmoduls.pch -YX
413DEFINES = -DWIN32 -D_CONSOLE -DNO_STRICT $(CRYPT_FLAG)
414LOCDEFS = -DPERLDLL -DPERL_CORE
415SUBSYS = console
a7d225ec 416CXX_FLAG = -TP -EHsc
9e42cd94 417
418!IF "$(USE_PERLCRT)" != "define"
419LIBC = msvcrt.lib
420!ELSE
421LIBC = PerlCRT.lib
422!ENDIF
423
9e42cd94 424!IF "$(CFG)" == "Debug"
425! IF "$(CCTYPE)" == "MSVC20"
426OPTIMIZE = -Od -MD -Z7 -DDEBUGGING
427! ELSE
428OPTIMIZE = -Od -MD -Zi -DDEBUGGING
429! ENDIF
c623ac67 430LINK_DBG = -debug
9e42cd94 431!ELSE
ec25c072 432OPTIMIZE = -MD -Zi -DNDEBUG
433# we enable debug symbols in release builds also
434LINK_DBG = -debug -opt:ref,icf
435# you may want to enable this if you want COFF symbols in the executables
436# in addition to the PDB symbols. The default Dr. Watson that ships with
437# Windows can use the the former but not latter. The free WinDbg can be
438# installed to get better stack traces from just the PDB symbols, so we
439# avoid the bloat of COFF symbols by default.
440#LINK_DBG = $(LINK_DBG) -debugtype:both
d921a5fb 441! IF "$(WIN64)" == "define"
442# enable Whole Program Optimizations (WPO) and Link Time Code Generation (LTCG)
443OPTIMIZE = $(OPTIMIZE) -Ox -GL
444LINK_DBG = $(LINK_DBG) -ltcg
445! ELSE
446# -O1 yields smaller code, which turns out to be faster than -O2 on x86
447OPTIMIZE = $(OPTIMIZE) -O1
448#OPTIMIZE = $(OPTIMIZE) -O2
449! ENDIF
9e42cd94 450!ENDIF
451
c623ac67 452!IF "$(WIN64)" == "define"
453DEFINES = $(DEFINES) -DWIN64 -DCONSERVATIVE
9453ddcd 454OPTIMIZE = $(OPTIMIZE) -Wp64 -fp:precise
da2c7419 455!ENDIF
456
c5b31784 457# For now, silence VC++ 8.x's warnings about "unsafe" CRT functions and POSIX
458# CRT function names being deprecated.
459!IF "$(CCTYPE)" == "MSVC80" || "$(CCTYPE)" == "MSVC80FREE"
460DEFINES = $(DEFINES) -D_CRT_SECURE_NO_DEPRECATE -wd4996
461!ENDIF
462
46e77f11 463# Use the MSVCRT read() fix if the PerlCRT was not chosen, but only when using
464# VC++ 6.x or earlier. Later versions use MSVCR70.dll, MSVCR71.dll, etc, which
465# do not require the fix.
466!IF "$(CCTYPE)" == "MSVC20" || "$(CCTYPE)" == "MSVC" || "$(CCTYPE)" == "MSVC60"
467! IF "$(USE_PERLCRT)" != "define"
9e42cd94 468BUILDOPT = $(BUILDOPT) -DPERL_MSVCRT_READFIX
46e77f11 469! ENDIF
9e42cd94 470!ENDIF
471
472LIBBASEFILES = $(CRYPT_LIB) \
473 oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.lib \
474 comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \
036c1c1e 475 netapi32.lib uuid.lib ws2_32.lib mpr.lib winmm.lib \
9453ddcd 476 version.lib odbc32.lib odbccp32.lib
c623ac67 477
9453ddcd 478# The 64 bit Platform SDK compilers contain a runtime library that doesn't
479# include the buffer overrun verification code used by the /GS switch.
480# Since the code links against libraries that are compiled with /GS, this
481# "security cookie verification" must be included via bufferoverlow.lib.
482!IF "$(WIN64)" == "define"
483LIBBASEFILES = $(LIBBASEFILES) bufferoverflowU.lib
c623ac67 484!ENDIF
9e42cd94 485
486# we add LIBC here, since we may be using PerlCRT.dll
487LIBFILES = $(LIBBASEFILES) $(LIBC)
488
a5ca303d 489#EXTRACFLAGS = -nologo -GF -W4 -wd4127 -wd4706
9453ddcd 490EXTRACFLAGS = -nologo -GF -W3
bb275e72 491CFLAGS = $(EXTRACFLAGS) $(INCLUDES) $(DEFINES) $(LOCDEFS) \
9e42cd94 492 $(PCHFLAGS) $(OPTIMIZE)
493LINK_FLAGS = -nologo -nodefaultlib $(LINK_DBG) \
494 -libpath:"$(INST_COREDIR)" \
495 -machine:$(PROCESSOR_ARCHITECTURE)
4e036e4b 496LIB_FLAGS = -nologo
9e42cd94 497OBJOUT_FLAG = -Fo
498EXEOUT_FLAG = -Fe
499
500CFLAGS_O = $(CFLAGS) $(BUILDOPT)
501
502#################### do not edit below this line #######################
503############# NO USER-SERVICEABLE PARTS BEYOND THIS POINT ##############
504
505o = .obj
506
507#
508# Rules
509#
510
511.SUFFIXES : .c $(o) .dll .lib .exe .rc .res
512
513.c$(o):
514 $(CC) -c -I$(<D) $(CFLAGS_O) $(OBJOUT_FLAG)$@ $<
515
516.y.c:
517 $(NOOP)
518
519$(o).dll:
520 $(LINK32) -dll -subsystem:windows -implib:$(*B).lib -def:$(*B).def \
521 -out:$@ $(LINK_FLAGS) $(LIBFILES) $< $(LIBPERL)
c8e599d3 522 $(EMBED_DLL_MANI)
9e42cd94 523
524.rc.res:
525 $(RSC) -i.. $<
526
527#
528# various targets
529
530# makedef.pl must be updated if this changes, and this should normally
531# only change when there is an incompatible revision of the public API.
78a7c709 532PERLIMPLIB = ..\perl59.lib
4e036e4b 533PERLSTATICLIB = ..\perl59s.lib
78a7c709 534PERLDLL = ..\perl59.dll
9e42cd94 535
536MINIPERL = ..\miniperl.exe
537MINIDIR = .\mini
538PERLEXE = ..\perl.exe
539WPERLEXE = ..\wperl.exe
4e036e4b 540PERLEXESTATIC = ..\perl-static.exe
9e42cd94 541GLOBEXE = ..\perlglob.exe
04bae4fb 542CONFIGPM = ..\lib\Config.pm ..\lib\Config_heavy.pl
9e42cd94 543MINIMOD = ..\lib\ExtUtils\Miniperl.pm
544X2P = ..\x2p\a2p.exe
202d1001 545GENUUDMAP = ..\generate_uudmap.exe
4e036e4b 546!IF "$(BUILD_STATIC)" == "define"
547PERLSTATIC = static
548!ELSE
549PERLSTATIC =
550!ENDIF
73c9ebc7 551
ca12659b 552# Unicode data files generated by mktables
6ae7e459 553FIRSTUNIFILE = ..\lib\unicore\Canonical.pl
ca12659b 554UNIDATAFILES = ..\lib\unicore\Canonical.pl ..\lib\unicore\Exact.pl \
555 ..\lib\unicore\Properties ..\lib\unicore\Decomposition.pl \
7ebf06b3 556 ..\lib\unicore\CombiningClass.pl ..\lib\unicore\Name.pl \
557 ..\lib\unicore\PVA.pl
ca12659b 558
559# Directories of Unicode data files generated by mktables
27a8011f 560UNIDATADIR1 = ..\lib\unicore\To
561UNIDATADIR2 = ..\lib\unicore\lib
ca12659b 562
3890b58f 563PERLEXE_ICO = .\perlexe.ico
564PERLEXE_RES = .\perlexe.res
565PERLDLL_RES =
566
9e42cd94 567# Nominate a target which causes extensions to be re-built
568# This used to be $(PERLEXE), but at worst it is the .dll that they depend
569# on and really only the interface - i.e. the .def file used to export symbols
570# from the .dll
571PERLDEP = perldll.def
572
573PL2BAT = bin\pl2bat.pl
574GLOBBAT = bin\perlglob.bat
575
576UTILS = \
577 ..\utils\h2ph \
578 ..\utils\splain \
579 ..\utils\dprofpp \
580 ..\utils\perlbug \
581 ..\utils\pl2pm \
582 ..\utils\c2ph \
827a599d 583 ..\utils\pstruct \
9e42cd94 584 ..\utils\h2xs \
585 ..\utils\perldoc \
9e42cd94 586 ..\utils\perlivp \
587 ..\utils\libnetcfg \
827a599d 588 ..\utils\enc2xs \
589 ..\utils\piconv \
bb4e9162 590 ..\utils\config_data \
18a1cebe 591 ..\utils\corelist \
83cd6e83 592 ..\utils\cpan \
ea0e987d 593 ..\utils\xsubpp \
4b618757 594 ..\utils\prove \
291d3373 595 ..\utils\ptar \
b8669316 596 ..\utils\ptardiff \
6aaee015 597 ..\utils\cpanp-run-perl \
598 ..\utils\cpanp \
599 ..\utils\cpan2dist \
3ddf9550 600 ..\utils\shasum \
ea0e987d 601 ..\utils\instmodsh \
9e42cd94 602 ..\pod\checkpods \
603 ..\pod\pod2html \
604 ..\pod\pod2latex \
605 ..\pod\pod2man \
606 ..\pod\pod2text \
607 ..\pod\pod2usage \
608 ..\pod\podchecker \
609 ..\pod\podselect \
610 ..\x2p\find2perl \
827a599d 611 ..\x2p\psed \
9e42cd94 612 ..\x2p\s2p \
9e42cd94 613 bin\exetype.pl \
614 bin\runperl.pl \
615 bin\pl2bat.pl \
616 bin\perlglob.pl \
617 bin\search.pl
618
619MAKE = nmake -nologo
620MAKE_BARE = nmake
621
c623ac67 622!IF "$(WIN64)" == "define"
623CFGSH_TMPL = config.vc64
624CFGH_TMPL = config_H.vc64
625!ELSE
9e42cd94 626CFGSH_TMPL = config.vc
627CFGH_TMPL = config_H.vc
c623ac67 628!ENDIF
9e42cd94 629
b6ed7314 630XCOPY = xcopy /f /r /i /d /y
631RCOPY = xcopy /f /r /i /e /d /y
65980d94 632NOOP = @rem
9e42cd94 633NULL =
634
635DEL = del
636
637#
638# filenames given to xsubpp must have forward slashes (since it puts
639# full pathnames in #line strings)
640XSUBPP = ..\$(MINIPERL) -I..\..\lib ..\$(EXTUTILSDIR)\xsubpp \
641 -C++ -prototypes
642
643MICROCORE_SRC = \
644 ..\av.c \
645 ..\deb.c \
646 ..\doio.c \
647 ..\doop.c \
648 ..\dump.c \
649 ..\globals.c \
650 ..\gv.c \
e1a479c5 651 ..\mro.c \
9e42cd94 652 ..\hv.c \
653 ..\locale.c \
a0d89a74 654 ..\mathoms.c \
9e42cd94 655 ..\mg.c \
656 ..\numeric.c \
657 ..\op.c \
295f0f84 658 ..\pad.c \
9e42cd94 659 ..\perl.c \
660 ..\perlapi.c \
661 ..\perly.c \
662 ..\pp.c \
663 ..\pp_ctl.c \
664 ..\pp_hot.c \
665 ..\pp_pack.c \
666 ..\pp_sort.c \
667 ..\pp_sys.c \
10bc17b6 668 ..\reentr.c \
9e42cd94 669 ..\regcomp.c \
670 ..\regexec.c \
671 ..\run.c \
672 ..\scope.c \
673 ..\sv.c \
674 ..\taint.c \
675 ..\toke.c \
676 ..\universal.c \
677 ..\utf8.c \
678 ..\util.c \
679 ..\xsutils.c
680
681EXTRACORE_SRC = $(EXTRACORE_SRC) perllib.c
682
683!IF "$(PERL_MALLOC)" == "define"
684EXTRACORE_SRC = $(EXTRACORE_SRC) ..\malloc.c
685!ENDIF
686
687EXTRACORE_SRC = $(EXTRACORE_SRC) ..\perlio.c
688
689WIN32_SRC = \
690 .\win32.c \
691 .\win32sck.c \
692 .\win32thread.c
693
f7d585d3 694# We need this for miniperl build unless we override canned
695# config.h #define building mini\*
696#!IF "$(USE_PERLIO)" == "define"
9e42cd94 697WIN32_SRC = $(WIN32_SRC) .\win32io.c
f7d585d3 698#!ENDIF
9e42cd94 699
700!IF "$(CRYPT_SRC)" != ""
701WIN32_SRC = $(WIN32_SRC) .\$(CRYPT_SRC)
702!ENDIF
703
704DLL_SRC = $(DYNALOADER).c
705
706X2P_SRC = \
707 ..\x2p\a2p.c \
708 ..\x2p\hash.c \
709 ..\x2p\str.c \
710 ..\x2p\util.c \
711 ..\x2p\walk.c
712
713CORE_NOCFG_H = \
714 ..\av.h \
715 ..\cop.h \
716 ..\cv.h \
717 ..\dosish.h \
718 ..\embed.h \
719 ..\form.h \
720 ..\gv.h \
721 ..\handy.h \
722 ..\hv.h \
723 ..\iperlsys.h \
724 ..\mg.h \
725 ..\nostdio.h \
726 ..\op.h \
727 ..\opcode.h \
728 ..\perl.h \
729 ..\perlapi.h \
730 ..\perlsdio.h \
731 ..\perlsfio.h \
732 ..\perly.h \
733 ..\pp.h \
734 ..\proto.h \
cdb0f547 735 ..\regcomp.h \
9e42cd94 736 ..\regexp.h \
737 ..\scope.h \
738 ..\sv.h \
739 ..\thread.h \
740 ..\unixish.h \
741 ..\utf8.h \
742 ..\util.h \
743 ..\warnings.h \
744 ..\XSUB.h \
745 ..\EXTERN.h \
746 ..\perlvars.h \
747 ..\intrpvar.h \
748 ..\thrdvar.h \
749 .\include\dirent.h \
750 .\include\netdb.h \
751 .\include\sys\socket.h \
752 .\win32.h
753
754CORE_H = $(CORE_NOCFG_H) .\config.h
755
202d1001 756UUDMAP_H = ..\uudmap.h
757
9e42cd94 758MICROCORE_OBJ = $(MICROCORE_SRC:.c=.obj)
759CORE_OBJ = $(MICROCORE_OBJ) $(EXTRACORE_SRC:.c=.obj)
760WIN32_OBJ = $(WIN32_SRC:.c=.obj)
761MINICORE_OBJ = $(MICROCORE_OBJ:..\=.\mini\) \
762 $(MINIDIR)\miniperlmain$(o) \
763 $(MINIDIR)\perlio$(o)
764MINIWIN32_OBJ = $(WIN32_OBJ:.\=.\mini\)
765MINI_OBJ = $(MINICORE_OBJ) $(MINIWIN32_OBJ)
766DLL_OBJ = $(DLL_SRC:.c=.obj)
767X2P_OBJ = $(X2P_SRC:.c=.obj)
202d1001 768GENUUDMAP_OBJ = $(GENUUDMAP:.exe=.obj)
9e42cd94 769
770PERLDLL_OBJ = $(CORE_OBJ)
771PERLEXE_OBJ = perlmain$(o)
4e036e4b 772PERLEXEST_OBJ = perlmainst$(o)
9e42cd94 773
774PERLDLL_OBJ = $(PERLDLL_OBJ) $(WIN32_OBJ) $(DLL_OBJ)
9e42cd94 775
776!IF "$(USE_SETARGV)" != ""
777SETARGV_OBJ = setargv$(o)
778!ENDIF
779
595589fa 780# specify static extensions here
4e036e4b 781#STATIC_EXT = Cwd Compress/Raw/Zlib
78ff2d7b 782STATIC_EXT = Win32CORE
595589fa 783
47ef3394 784DYNALOADER = $(EXTDIR)\DynaLoader\DynaLoader
9e42cd94 785
9e42cd94 786CFG_VARS = \
787 "INST_DRV=$(INST_DRV)" \
788 "INST_TOP=$(INST_TOP)" \
789 "INST_VER=$(INST_VER)" \
790 "INST_ARCH=$(INST_ARCH)" \
791 "archname=$(ARCHNAME)" \
792 "cc=$(CC)" \
793 "ld=$(LINK32)" \
bb275e72 794 "ccflags=$(EXTRACFLAGS) $(OPTIMIZE:"=\") $(DEFINES) $(BUILDOPT)" \
9e42cd94 795 "cf_email=$(EMAIL)" \
796 "d_crypt=$(D_CRYPT)" \
797 "d_mymalloc=$(PERL_MALLOC)" \
798 "libs=$(LIBFILES)" \
799 "incpath=$(CCINCDIR:"=\")" \
800 "libperl=$(PERLIMPLIB:..\=)" \
801 "libpth=$(CCLIBDIR:"=\");$(EXTRALIBDIRS:"=\")" \
802 "libc=$(LIBC)" \
803 "make=$(MAKE_BARE)" \
d2b25974 804 "static_ext=$(STATIC_EXT)" \
7e0017d3 805 "usethreads=$(USE_ITHREADS)" \
9e42cd94 806 "useithreads=$(USE_ITHREADS)" \
9e42cd94 807 "usemultiplicity=$(USE_MULTI)" \
808 "useperlio=$(USE_PERLIO)" \
4a9d6100 809 "uselargefiles=$(USE_LARGE_FILES)" \
7ada00a0 810 "usesitecustomize=$(USE_SITECUST)" \
9e42cd94 811 "LINK_FLAGS=$(LINK_FLAGS:"=\")" \
812 "optimize=$(OPTIMIZE:"=\")"
813
814#
815# Top targets
816#
817
ca12659b 818all : .\config.h $(GLOBEXE) $(MINIMOD) $(CONFIGPM) $(UNIDATAFILES) $(PERLEXE) \
4e036e4b 819 $(X2P) MakePPPort Extensions $(PERLSTATIC)
9e42cd94 820 @echo Everything is up to date. '$(MAKE_BARE) test' to run test suite.
821
5d458dd8 822..\regnodes.h : ..\regcomp.sym
823 cd ..
824 regcomp.pl
825 cd win32
e64b1bd1 826
827..\regcharclass.h : ..\Porting\regcharclass.pl
828 cd ..
829 Porting\regcharclass.pl
830 cd win32
5d458dd8 831
c900f745 832regnodes : ..\regnodes.h
5d458dd8 833
e64b1bd1 834..\regcomp$(o) : ..\regnodes.h ..\regcharclass.h
835
836..\regexec$(o) : ..\regnodes.h ..\regcharclass.h
837
c900f745 838reonly : regnodes .\config.h $(GLOBEXE) $(MINIMOD) $(CONFIGPM) $(UNIDATAFILES) \
839 $(PERLEXE) $(X2P) Extensions_reonly
a24cc0c0 840 @echo Perl and 're' are up to date.
841
9e42cd94 842$(DYNALOADER)$(o) : $(DYNALOADER).c $(CORE_H) $(EXTDIR)\DynaLoader\dlutils.c
843
4e036e4b 844static: $(PERLEXESTATIC)
845
9e42cd94 846#------------------------------------------------------------
847
848$(GLOBEXE) : perlglob$(o)
849 $(LINK32) $(LINK_FLAGS) $(LIBFILES) -out:$@ -subsystem:$(SUBSYS) \
850 perlglob$(o) setargv$(o)
c8e599d3 851 $(EMBED_EXE_MANI)
9e42cd94 852
853perlglob$(o) : perlglob.c
854
855config.w32 : $(CFGSH_TMPL)
856 copy $(CFGSH_TMPL) config.w32
857
858.\config.h : $(CFGH_TMPL)
859 -del /f config.h
860 copy $(CFGH_TMPL) config.h
861
862..\config.sh : config.w32 $(MINIPERL) config_sh.PL
863 $(MINIPERL) -I..\lib config_sh.PL $(CFG_VARS) config.w32 > ..\config.sh
864
865# this target is for when changes to the main config.sh happen
866# edit config.{b,v,g}c and make this target once for each supported
867# compiler (e.g. `nmake CCTYPE=BORLAND regen_config_h`)
868regen_config_h:
869 perl config_sh.PL $(CFG_VARS) $(CFGSH_TMPL) > ..\config.sh
870 cd ..
8839b9e4 871 -del /f perl.exe perl*.dll
9e42cd94 872 perl configpm
873 cd win32
874 -del /f $(CFGH_TMPL)
875 -mkdir $(COREDIR)
8839b9e4 876 -perl config_h.PL "INST_VER=$(INST_VER)"
9e42cd94 877 rename config.h $(CFGH_TMPL)
878
879$(CONFIGPM) : $(MINIPERL) ..\config.sh config_h.PL ..\minimod.pl
880 cd ..
881 miniperl configpm
882 cd win32
883 if exist lib\* $(RCOPY) lib\*.* ..\lib\$(NULL)
884 $(XCOPY) ..\*.h $(COREDIR)\*.*
885 $(XCOPY) *.h $(COREDIR)\*.*
886 $(XCOPY) ..\ext\re\re.pm $(LIBDIR)\*.*
887 $(RCOPY) include $(COREDIR)\*.*
888 -$(MINIPERL) -I..\lib config_h.PL "INST_VER=$(INST_VER)"
889 if errorlevel 1 $(MAKE) /$(MAKEFLAGS) $(CONFIGPM)
890
891$(MINIPERL) : $(MINIDIR) $(MINI_OBJ)
892 $(LINK32) -subsystem:console -out:$@ @<<
893 $(LINK_FLAGS) $(LIBFILES) $(MINI_OBJ)
894<<
c8e599d3 895 $(EMBED_EXE_MANI)
9e42cd94 896
897$(MINIDIR) :
898 if not exist "$(MINIDIR)" mkdir "$(MINIDIR)"
899
900$(MINICORE_OBJ) : $(CORE_NOCFG_H)
901 $(CC) -c $(CFLAGS) -DPERL_EXTERNAL_GLOB $(OBJOUT_FLAG)$@ ..\$(*F).c
902
903$(MINIWIN32_OBJ) : $(CORE_NOCFG_H)
904 $(CC) -c $(CFLAGS) $(OBJOUT_FLAG)$@ $(*F).c
905
906# -DPERL_IMPLICIT_SYS needs C++ for perllib.c
907# This is the only file that depends on perlhost.h, vmem.h, and vdir.h
908!IF "$(USE_IMP_SYS)" == "define"
909perllib$(o) : perllib.c .\perlhost.h .\vdir.h .\vmem.h
910 $(CC) -c -I. $(CFLAGS_O) $(CXX_FLAG) $(OBJOUT_FLAG)$@ perllib.c
911!ENDIF
912
913# 1. we don't want to rebuild miniperl.exe when config.h changes
914# 2. we don't want to rebuild miniperl.exe with non-default config.h
915$(MINI_OBJ) : $(CORE_NOCFG_H)
916
917$(WIN32_OBJ) : $(CORE_H)
918$(CORE_OBJ) : $(CORE_H)
919$(DLL_OBJ) : $(CORE_H)
920$(X2P_OBJ) : $(CORE_H)
921
922perldll.def : $(MINIPERL) $(CONFIGPM) ..\global.sym ..\pp.sym ..\makedef.pl
595589fa 923 $(MINIPERL) -I..\lib buildext.pl --create-perllibst-h
9e42cd94 924 $(MINIPERL) -w ..\makedef.pl PLATFORM=win32 $(OPTIMIZE) $(DEFINES) $(BUILDOPT) \
925 CCTYPE=$(CCTYPE) > perldll.def
926
595589fa 927$(PERLDLL): perldll.def $(PERLDLL_OBJ) $(PERLDLL_RES) Extensions_static
9e7cf449 928 $(LINK32) -dll -def:perldll.def -base:0x28000000 -out:$@ @Extensions_static @<<
9e42cd94 929 $(LINK_FLAGS) $(DELAYLOAD) $(LIBFILES) $(PERLDLL_OBJ) $(PERLDLL_RES)
930<<
c8e599d3 931 $(EMBED_DLL_MANI)
9e42cd94 932 $(XCOPY) $(PERLIMPLIB) $(COREDIR)
933
4e036e4b 934$(PERLSTATICLIB): Extensions_static
935 $(LIB32) $(LIB_FLAGS) -out:$@ @Extensions_static @<<
936 $(PERLDLL_OBJ)
937<<
938 $(XCOPY) $(PERLSTATICLIB) $(COREDIR)
939
1266ad8f 940$(PERLEXE_ICO): $(MINIPERL) ..\uupacktool.pl $(PERLEXE_ICO).packd
941 $(MINIPERL) -I..\lib ..\uupacktool.pl -u $(PERLEXE_ICO).packd $(PERLEXE_ICO)
e84ac4e2 942
943$(PERLEXE_RES): perlexe.rc $(PERLEXE_ICO)
944
9e42cd94 945$(MINIMOD) : $(MINIPERL) ..\minimod.pl
946 cd ..
947 miniperl minimod.pl > lib\ExtUtils\Miniperl.pm
948 cd win32
949
950..\x2p\a2p$(o) : ..\x2p\a2p.c
951 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\a2p.c
952
953..\x2p\hash$(o) : ..\x2p\hash.c
954 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\hash.c
955
956..\x2p\str$(o) : ..\x2p\str.c
957 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\str.c
958
959..\x2p\util$(o) : ..\x2p\util.c
960 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\util.c
961
962..\x2p\walk$(o) : ..\x2p\walk.c
963 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\walk.c
964
965$(X2P) : $(MINIPERL) $(X2P_OBJ)
966 $(MINIPERL) ..\x2p\find2perl.PL
967 $(MINIPERL) ..\x2p\s2p.PL
968 $(LINK32) -subsystem:console -out:$@ @<<
969 $(LINK_FLAGS) $(LIBFILES) $(X2P_OBJ)
970<<
c8e599d3 971 $(EMBED_EXE_MANI)
9e42cd94 972
202d1001 973$(MINIDIR)\globals$(o) : $(UUDMAP_H)
9444d213 974
202d1001 975$(UUDMAP_H) : $(GENUUDMAP)
976 $(GENUUDMAP) >$(UUDMAP_H)
9444d213 977
202d1001 978$(GENUUDMAP) : $(GENUUDMAP_OBJ)
9444d213 979 $(LINK32) -subsystem:console -out:$@ @<<
202d1001 980 $(LINK_FLAGS) $(LIBFILES) $(GENUUDMAP_OBJ)
981<<
982 $(EMBED_EXE_MANI)
9444d213 983
9e42cd94 984perlmain.c : runperl.c
985 copy runperl.c perlmain.c
986
987perlmain$(o) : perlmain.c
988 $(CC) $(CFLAGS_O) -UPERLDLL $(OBJOUT_FLAG)$@ -c perlmain.c
989
4e036e4b 990perlmainst.c : runperl.c
991 copy runperl.c perlmainst.c
992
993perlmainst$(o) : perlmainst.c
994 $(CC) $(CFLAGS_O) -DPERLDLL $(OBJOUT_FLAG)$@ -c perlmainst.c
995
9e42cd94 996$(PERLEXE): $(PERLDLL) $(CONFIGPM) $(PERLEXE_OBJ) $(PERLEXE_RES)
997 $(LINK32) -subsystem:console -out:$@ -stack:0x1000000 $(LINK_FLAGS) \
998 $(LIBFILES) $(PERLEXE_OBJ) $(SETARGV_OBJ) $(PERLIMPLIB) $(PERLEXE_RES)
c8e599d3 999 $(EMBED_EXE_MANI)
9e42cd94 1000 copy $(PERLEXE) $(WPERLEXE)
1001 $(MINIPERL) -I..\lib bin\exetype.pl $(WPERLEXE) WINDOWS
1002 copy splittree.pl ..
1003 $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR)
1004
4e036e4b 1005$(PERLEXESTATIC): $(PERLSTATICLIB) $(CONFIGPM) $(PERLEXEST_OBJ) $(PERLEXE_RES)
1006 $(LINK32) -subsystem:console -out:$@ -stack:0x1000000 $(LINK_FLAGS) \
1007 @Extensions_static $(PERLSTATICLIB) \
1008 $(LIBFILES) $(PERLEXEST_OBJ) $(SETARGV_OBJ) $(PERLEXE_RES)
1009 $(EMBED_EXE_MANI)
1010
9e42cd94 1011$(DYNALOADER).c: $(MINIPERL) $(EXTDIR)\DynaLoader\dl_win32.xs $(CONFIGPM)
1012 if not exist $(AUTODIR) mkdir $(AUTODIR)
1013 cd $(EXTDIR)\$(*B)
1014 ..\$(MINIPERL) -I..\..\lib $(*B)_pm.PL
1015 ..\$(MINIPERL) -I..\..\lib XSLoader_pm.PL
1016 cd ..\..\win32
1017 $(XCOPY) $(EXTDIR)\$(*B)\$(*B).pm $(LIBDIR)\$(NULL)
1018 $(XCOPY) $(EXTDIR)\$(*B)\XSLoader.pm $(LIBDIR)\$(NULL)
1019 cd $(EXTDIR)\$(*B)
1020 $(XSUBPP) dl_win32.xs > $(*B).c
1021 cd ..\..\win32
1022
1023$(EXTDIR)\DynaLoader\dl_win32.xs: dl_win32.xs
1024 copy dl_win32.xs $(EXTDIR)\DynaLoader\dl_win32.xs
1025
42e07562 1026MakePPPort: $(MINIPERL) $(CONFIGPM)
1027 $(MINIPERL) -I..\lib ..\mkppport
1028
1029MakePPPort_clean:
1030 -if exist $(MINIPERL) $(MINIPERL) -I..\lib ..\mkppport --clean
1031
9dcb9602 1032#-------------------------------------------------------------------------------
9e42cd94 1033Extensions: buildext.pl $(PERLDEP) $(CONFIGPM)
a5ca303d 1034 $(XCOPY) ..\*.h $(COREDIR)\*.*
595589fa 1035 $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) --dynamic
78ff2d7b 1036 -if exist ext $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext --dynamic
595589fa 1037
a24cc0c0 1038Extensions_reonly: buildext.pl $(PERLDEP) $(CONFIGPM)
a5ca303d 1039 $(XCOPY) ..\*.h $(COREDIR)\*.*
a24cc0c0 1040 $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) --dynamic +re
78ff2d7b 1041 -if exist ext $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext --dynamic +re
a24cc0c0 1042
50a9d373 1043Extensions_static : buildext.pl $(PERLDEP) $(CONFIGPM)
a5ca303d 1044 $(XCOPY) ..\*.h $(COREDIR)\*.*
595589fa 1045 $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) --static
78ff2d7b 1046 -if exist ext $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext --static
9e7cf449 1047 $(MINIPERL) -I..\lib buildext.pl --list-static-libs > Extensions_static
9e42cd94 1048
1049Extensions_clean:
1050 -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) clean
78ff2d7b 1051 -if exist $(MINIPERL) if exist ext $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext clean
9e42cd94 1052
b4dc1df6 1053Extensions_realclean:
1054 -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) realclean
78ff2d7b 1055 -if exist $(MINIPERL) if exist ext $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext realclean
b4dc1df6 1056
9dcb9602 1057#-------------------------------------------------------------------------------
9e42cd94 1058
1059doc: $(PERLEXE)
b4a41557 1060 $(PERLEXE) -I..\lib ..\installhtml --podroot=.. --htmldir=$(HTMLDIR) \
9e42cd94 1061 --podpath=pod:lib:ext:utils --htmlroot="file://$(INST_HTML::=|)" \
1062 --libpod=perlfunc:perlguts:perlvar:perlrun:perlop --recurse
1063
b0b6bf2b 1064# Note that this next section is parsed (and regenerated) by pod/buildtoc
1065# so please check that script before making structural changes here
1066
9e42cd94 1067utils: $(PERLEXE) $(X2P)
1068 cd ..\utils
1069 $(MAKE) PERL=$(MINIPERL)
1070 cd ..\pod
4cb44f92 1071 copy ..\vms\perlvms.pod .\perlvms.pod
b0b6bf2b 1072 copy ..\README.aix ..\pod\perlaix.pod
1073 copy ..\README.amiga ..\pod\perlamiga.pod
1074 copy ..\README.apollo ..\pod\perlapollo.pod
1075 copy ..\README.beos ..\pod\perlbeos.pod
1076 copy ..\README.bs2000 ..\pod\perlbs2000.pod
1077 copy ..\README.ce ..\pod\perlce.pod
1078 copy ..\README.cn ..\pod\perlcn.pod
1079 copy ..\README.cygwin ..\pod\perlcygwin.pod
1080 copy ..\README.dgux ..\pod\perldgux.pod
1081 copy ..\README.dos ..\pod\perldos.pod
1082 copy ..\README.epoc ..\pod\perlepoc.pod
1083 copy ..\README.freebsd ..\pod\perlfreebsd.pod
1084 copy ..\README.hpux ..\pod\perlhpux.pod
1085 copy ..\README.hurd ..\pod\perlhurd.pod
1086 copy ..\README.irix ..\pod\perlirix.pod
1087 copy ..\README.jp ..\pod\perljp.pod
1088 copy ..\README.ko ..\pod\perlko.pod
6477b319 1089 copy ..\README.linux ..\pod\perllinux.pod
b0b6bf2b 1090 copy ..\README.machten ..\pod\perlmachten.pod
1091 copy ..\README.macos ..\pod\perlmacos.pod
1092 copy ..\README.macosx ..\pod\perlmacosx.pod
1093 copy ..\README.mint ..\pod\perlmint.pod
1094 copy ..\README.mpeix ..\pod\perlmpeix.pod
1095 copy ..\README.netware ..\pod\perlnetware.pod
b0846812 1096 copy ..\README.openbsd ..\pod\perlopenbsd.pod
b0b6bf2b 1097 copy ..\README.os2 ..\pod\perlos2.pod
1098 copy ..\README.os390 ..\pod\perlos390.pod
1099 copy ..\README.os400 ..\pod\perlos400.pod
1100 copy ..\README.plan9 ..\pod\perlplan9.pod
1101 copy ..\README.qnx ..\pod\perlqnx.pod
2f08ed66 1102 copy ..\README.riscos ..\pod\perlriscos.pod
b0b6bf2b 1103 copy ..\README.solaris ..\pod\perlsolaris.pod
27da23d5 1104 copy ..\README.symbian ..\pod\perlsymbian.pod
b0b6bf2b 1105 copy ..\README.tru64 ..\pod\perltru64.pod
1106 copy ..\README.tw ..\pod\perltw.pod
1107 copy ..\README.uts ..\pod\perluts.pod
1108 copy ..\README.vmesa ..\pod\perlvmesa.pod
1109 copy ..\README.vms ..\pod\perlvms.pod
1110 copy ..\README.vos ..\pod\perlvos.pod
1111 copy ..\README.win32 ..\pod\perlwin32.pod
f6eae373 1112 copy ..\pod\perl595delta.pod ..\pod\perldelta.pod
9e42cd94 1113 $(MAKE) -f ..\win32\pod.mak converters
1114 cd ..\lib
1115 $(PERLEXE) lib_pm.PL
1116 cd ..\win32
1117 $(PERLEXE) $(PL2BAT) $(UTILS)
1118
b0b6bf2b 1119# Note that the pod cleanup in this next section is parsed (and regenerated
1120# by pod/buildtoc so please check that script before making changes here
1121
b4dc1df6 1122distclean: realclean
9e42cd94 1123 -del /f $(MINIPERL) $(PERLEXE) $(PERLDLL) $(GLOBEXE) \
4e036e4b 1124 $(PERLIMPLIB) ..\miniperl.lib $(MINIMOD) \
1125 $(PERLEXESTATIC) $(PERLSTATICLIB)
9e42cd94 1126 -del /f *.def *.map
47ef3394 1127 -del /f $(DYNALOADER).c
9e42cd94 1128 -del /f $(EXTDIR)\DynaLoader\dl_win32.xs
ca67812f 1129 -del /f $(EXTDIR)\DynaLoader\DynaLoader.pm
1130 -del /f $(EXTDIR)\DynaLoader\XSLoader.pm
1131 -del /f $(LIBDIR)\Encode.pm $(LIBDIR)\encoding.pm $(LIBDIR)\Errno.pm
1132 -del /f $(LIBDIR)\Config.pod $(LIBDIR)\POSIX.pod $(LIBDIR)\threads.pm
9e42cd94 1133 -del /f $(LIBDIR)\.exists $(LIBDIR)\attrs.pm $(LIBDIR)\DynaLoader.pm
b4dc1df6 1134 -del /f $(LIBDIR)\XSLoader.pm $(LIBDIR)\lib.pm
9e42cd94 1135 -del /f $(LIBDIR)\Fcntl.pm $(LIBDIR)\IO.pm $(LIBDIR)\Opcode.pm
1136 -del /f $(LIBDIR)\ops.pm $(LIBDIR)\Safe.pm
1137 -del /f $(LIBDIR)\SDBM_File.pm $(LIBDIR)\Socket.pm $(LIBDIR)\POSIX.pm
1138 -del /f $(LIBDIR)\B.pm $(LIBDIR)\O.pm $(LIBDIR)\re.pm
9e42cd94 1139 -del /f $(LIBDIR)\Devel\Peek.pm $(LIBDIR)\Devel\DProf.pm
ca67812f 1140 -del /f $(LIBDIR)\Devel\PPPort.pm
9e42cd94 1141 -del /f $(LIBDIR)\File\Glob.pm
1142 -del /f $(LIBDIR)\Storable.pm
9e42cd94 1143 -del /f $(LIBDIR)\Digest\MD5.pm
59717686 1144 -del /f $(LIBDIR)\Digest\SHA.pm
ca67812f 1145 -del /f $(LIBDIR)\PerlIO\encoding.pm
e934609f 1146 -del /f $(LIBDIR)\PerlIO\scalar.pm
1147 -del /f $(LIBDIR)\PerlIO\via.pm
ca67812f 1148 -del /f $(LIBDIR)\Sys\Hostname.pm
ca67812f 1149 -del /f $(LIBDIR)\threads\shared.pm
9e42cd94 1150 -del /f $(LIBDIR)\Time\HiRes.pm
9e42cd94 1151 -del /f $(LIBDIR)\Unicode\Normalize.pm
4e74047c 1152 -del /f $(LIBDIR)\Math\BigInt\FastCalc.pm
b4ad57f4 1153 -del /f $(LIBDIR)\Win32.pm
37ca3c28 1154 -del /f $(LIBDIR)\Win32CORE.pm
00701878 1155 -del /f $(LIBDIR)\Win32API\File.pm
1156 -del /f $(LIBDIR)\Win32API\File\cFile.pc
9e42cd94 1157 -if exist $(LIBDIR)\B rmdir /s /q $(LIBDIR)\B
46ffdcf0 1158 -if exist $(LIBDIR)\Compress rmdir /s /q $(LIBDIR)\Compress
9e42cd94 1159 -if exist $(LIBDIR)\Data rmdir /s /q $(LIBDIR)\Data
ca67812f 1160 -if exist $(LIBDIR)\Encode rmdir /s /q $(LIBDIR)\Encode
9e42cd94 1161 -if exist $(LIBDIR)\Filter\Util rmdir /s /q $(LIBDIR)\Filter\Util
96c33d98 1162 -if exist $(LIBDIR)\Hash rmdir /s /q $(LIBDIR)\Hash
69f57184 1163 -if exist $(LIBDIR)\IO\Compress rmdir /s /q $(LIBDIR)\IO\Compress
69f57184 1164 -if exist $(LIBDIR)\IO\Socket rmdir /s /q $(LIBDIR)\IO\Socket
69f57184 1165 -if exist $(LIBDIR)\IO\Uncompress rmdir /s /q $(LIBDIR)\IO\Uncompress
69f57184 1166 -if exist $(LIBDIR)\List rmdir /s /q $(LIBDIR)\List
69f57184 1167 -if exist $(LIBDIR)\MIME rmdir /s /q $(LIBDIR)\MIME
849a608a 1168 -if exist $(LIBDIR)\re rmdir /s /q $(LIBDIR)\re
9e42cd94 1169 -if exist $(LIBDIR)\Scalar rmdir /s /q $(LIBDIR)\Scalar
6c4b87ea 1170 -if exist $(LIBDIR)\Sys rmdir /s /q $(LIBDIR)\Sys
6c4b87ea 1171 -if exist $(LIBDIR)\threads rmdir /s /q $(LIBDIR)\threads
9e42cd94 1172 -if exist $(LIBDIR)\XS rmdir /s /q $(LIBDIR)\XS
00701878 1173 -if exist $(LIBDIR)\Win32API rmdir /s /q $(LIBDIR)\Win32API
ca67812f 1174 -cd $(PODDIR) && del /f *.html *.bat checkpods \
9e42cd94 1175 perlaix.pod perlamiga.pod perlapollo.pod perlbeos.pod \
b0b6bf2b 1176 perlbs2000.pod perlce.pod perlcn.pod perlcygwin.pod \
1400179b 1177 perldelta.pod perldgux.pod perldos.pod perlepoc.pod \
1178 perlfreebsd.pod perlhpux.pod perlhurd.pod perlirix.pod \
6477b319 1179 perljp.pod perlko.pod perllinux.pod perlmachten.pod \
1180 perlmacos.pod perlmacosx.pod perlmint.pod perlmpeix.pod \
1181 perlnetware.pod perlopenbsd.pod perlos2.pod perlos390.pod \
2f08ed66 1182 perlos400.pod perlplan9.pod perlqnx.pod perlriscos.pod \
1183 perlsolaris.pod perlsymbian.pod perltru64.pod perltw.pod \
1184 perluts.pod perlvmesa.pod perlvms.pod perlvms.pod perlvos.pod \
1185 perlwin32.pod \
b0b6bf2b 1186 pod2html pod2latex pod2man pod2text pod2usage \
9e42cd94 1187 podchecker podselect
ca67812f 1188 -cd ..\utils && del /f h2ph splain perlbug pl2pm c2ph pstruct h2xs \
de125441 1189 perldoc perlivp dprofpp libnetcfg enc2xs piconv cpan *.bat \
6aaee015 1190 xsubpp instmodsh prove ptar ptardiff cpanp-run-perl cpanp cpan2dist shasum corelist config_data
ca67812f 1191 -cd ..\x2p && del /f find2perl s2p psed *.bat
4e036e4b 1192 -del /f ..\config.sh ..\splittree.pl perlmain.c dlutils.c config.h.new \
1193 perlmainst.c
9e42cd94 1194 -del /f $(CONFIGPM)
1195 -del /f bin\*.bat
322fd642 1196 -del /f perllibst.h
ec25c072 1197 -del /f $(PERLEXE_ICO) perl.base
a1216ace 1198 ren ..\lib\Net\Changes.libnet Changes.tenbil
1199 ren ..\lib\Net\README.libnet README.tenbil
ca67812f 1200 -cd .. && del /s *.lib *.map *.pdb *.ilk *.bs *$(o) .exists pm_to_blib
a1216ace 1201 ren ..\lib\Net\Changes.tenbil Changes.libnet
1202 ren ..\lib\Net\README.tenbil README.libnet
ca67812f 1203 -cd $(EXTDIR) && del /s *.def Makefile Makefile.old
9e42cd94 1204 -if exist $(AUTODIR) rmdir /s /q $(AUTODIR)
9e42cd94 1205 -if exist $(COREDIR) rmdir /s /q $(COREDIR)
b4a41557 1206 -if exist pod2htmd.tmp del pod2htmd.tmp
1207 -if exist pod2htmi.tmp del pod2htmi.tmp
1208 -if exist $(HTMLDIR) rmdir /s /q $(HTMLDIR)
9e42cd94 1209
1210install : all installbare installhtml
1211
1212installbare : utils
1213 $(PERLEXE) ..\installperl
1214 if exist $(WPERLEXE) $(XCOPY) $(WPERLEXE) $(INST_BIN)\*.*
5548433c 1215 if exist $(PERLEXESTATIC) $(XCOPY) $(PERLEXESTATIC) $(INST_BIN)\*.*
9e42cd94 1216 $(XCOPY) $(GLOBEXE) $(INST_BIN)\*.*
ec25c072 1217 if exist ..\perl*.pdb $(XCOPY) ..\perl*.pdb $(INST_BIN)\*.*
1218 if exist ..\x2p\a2p.pdb $(XCOPY) ..\x2p\a2p.pdb $(INST_BIN)\*.*
9e42cd94 1219 $(XCOPY) bin\*.bat $(INST_SCRIPT)\*.*
1220
1221installhtml : doc
b4a41557 1222 $(RCOPY) $(HTMLDIR)\*.* $(INST_HTML)\*.*
9e42cd94 1223
1224inst_lib : $(CONFIGPM)
1225 copy splittree.pl ..
1226 $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR)
1227 $(RCOPY) ..\lib $(INST_LIB)\*.*
1228
ca12659b 1229$(UNIDATAFILES) : $(MINIPERL) $(CONFIGPM) ..\lib\unicore\mktables
27a8011f 1230 cd ..\lib\unicore && \
6ae7e459 1231 ..\$(MINIPERL) -I.. mktables -check $@ $(FIRSTUNIFILE)
ca12659b 1232
1233minitest : $(MINIPERL) $(GLOBEXE) $(CONFIGPM) utils $(UNIDATAFILES)
6c85d12e 1234 $(XCOPY) $(MINIPERL) ..\t\$(NULL)
1235 if exist ..\t\perl.exe del /f ..\t\perl.exe
1236 rename ..\t\miniperl.exe perl.exe
9e42cd94 1237 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1238 attrib -r ..\t\*.*
6c85d12e 1239 cd ..\t && \
1240 $(MINIPERL) -I..\lib harness base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t
9e42cd94 1241
1266ad8f 1242test-prep : all utils unpack_files
9e42cd94 1243 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1244 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1245 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1246
1247test : test-prep
1248 cd ..\t
89087c85 1249 $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES)
9e42cd94 1250 cd ..\win32
1251
1266ad8f 1252unpack_files:
1253 $(MINIPERL) -I..\lib ..\uupacktool.pl -u -d .. -m
1254
1255cleanup_unpacked_files:
c52ab9a3 1256 -if exist $(MINIPERL) $(MINIPERL) -I..\lib ..\uupacktool.pl -c -d .. -m
1266ad8f 1257
6ae7e459 1258test-reonly : reonly utils
1259 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1260 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1261 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1262 cd ..\t
8c823cd6 1263 $(PERLEXE) -I..\lib harness $(OPT) -re \bpat\b \breg \bre\b \bsubst \brxcode $(EXTRA)
6ae7e459 1264 cd ..\win32
7bcddc65 1265
c900f745 1266regen :
7bcddc65 1267 cd ..
1268 regen.pl
1269 cd win32
1270
9e42cd94 1271test-notty : test-prep
1272 set PERL_SKIP_TTY_TEST=1
1273 cd ..\t
89087c85 1274 $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES)
9e42cd94 1275 cd ..\win32
1276
b4a93add 1277_test :
1278 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1279 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1280 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1281 cd ..\t
89087c85 1282 $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES)
b4a93add 1283 cd ..\win32
1284
b4dc1df6 1285_clean :
9e42cd94 1286 -@$(DEL) miniperlmain$(o)
1287 -@$(DEL) $(MINIPERL)
1288 -@$(DEL) perlglob$(o)
1289 -@$(DEL) perlmain$(o)
4e036e4b 1290 -@$(DEL) perlmainst$(o)
9e42cd94 1291 -@$(DEL) config.w32
1292 -@$(DEL) config.h
1293 -@$(DEL) $(GLOBEXE)
1294 -@$(DEL) $(PERLEXE)
1295 -@$(DEL) $(WPERLEXE)
4e036e4b 1296 -@$(DEL) $(PERLEXESTATIC)
1297 -@$(DEL) $(PERLSTATICLIB)
9e42cd94 1298 -@$(DEL) $(PERLDLL)
1299 -@$(DEL) $(CORE_OBJ)
202d1001 1300 -@$(DEL) $(GENUUDMAP) $(GENUUDMAP_OBJ) $(UUDMAP_H)
9e42cd94 1301 -if exist $(MINIDIR) rmdir /s /q $(MINIDIR)
27a8011f 1302 -if exist $(UNIDATADIR1) rmdir /s /q $(UNIDATADIR1)
27a8011f 1303 -if exist $(UNIDATADIR2) rmdir /s /q $(UNIDATADIR2)
ca12659b 1304 -@$(DEL) $(UNIDATAFILES)
27a8011f 1305 -@$(DEL) $(WIN32_OBJ)
9e42cd94 1306 -@$(DEL) $(DLL_OBJ)
1307 -@$(DEL) $(X2P_OBJ)
a1216ace 1308 ren ..\lib\Net\Changes.libnet Changes.tenbil
1309 ren ..\lib\Net\README.libnet README.tenbil
9e42cd94 1310 -@$(DEL) ..\*$(o) ..\*.lib ..\*.exp *$(o) *.lib *.exp *.res
a1216ace 1311 ren ..\lib\Net\Changes.tenbil Changes.libnet
1312 ren ..\lib\Net\README.tenbil README.libnet
9e42cd94 1313 -@$(DEL) ..\t\*.exe ..\t\*.dll ..\t\*.bat
1314 -@$(DEL) ..\x2p\*.exe ..\x2p\*.bat
1315 -@$(DEL) *.ilk
1316 -@$(DEL) *.pdb
9e7cf449 1317 -@$(DEL) Extensions_static
9e42cd94 1318
1266ad8f 1319_preclean : cleanup_unpacked_files
1320
1321clean : _preclean Extensions_clean _clean
b4dc1df6 1322
1266ad8f 1323realclean : _preclean Extensions_realclean MakePPPort_clean _clean
b4dc1df6 1324
9e42cd94 1325# Handy way to run perlbug -ok without having to install and run the
1326# installed perlbug. We don't re-run the tests here - we trust the user.
1327# Please *don't* use this unless all tests pass.
1328# If you want to report test failures, use "nmake nok" instead.
1329ok: utils
1330 $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)"
1331
1332okfile: utils
1333 $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)" -F perl.ok
1334
1335nok: utils
1336 $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)"
1337
1338nokfile: utils
1339 $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)" -F perl.nok