threads-shared 1.03 - Changes, Makefile.PL
[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:
da2c7419 4# Visual C++ 2.0 through 7.0 (and possibly newer versions)
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#
a1e6f3ef 35#INST_VER = \5.9.4
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
97# Visual C++ 6.x (aka Visual Studio 98)
4a9d6100 98CCTYPE = MSVC60
da2c7419 99# Visual C++ Toolkit 2003 (free version of Visual C++ 7.x command-line tools)
100#CCTYPE = MSVC70FREE
101# Visual C++ 7.x (aka Visual Studio .NET 2003) (full version)
102#CCTYPE = MSVC70
73c9ebc7 103# Visual C++ Toolkit 2005 (free version of Visual C++ 8.x command-line tools)
104#CCTYPE = MSVC80FREE
84b05a71 105# Visual C++ 8.x (aka Visual Studio 2005) (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#
166#
9e42cd94 167# set the install locations of the compiler include/libraries
168# Running VCVARS32.BAT is *required* when using Visual C.
169# Some versions of Visual C don't define MSVCDIR in the environment,
170# so you may have to set CCHOME explicitly (spaces in the path name should
171# not be quoted)
172#
173#CCHOME = f:\msvc20
174CCHOME = $(MSVCDIR)
175CCINCDIR = $(CCHOME)\include
176CCLIBDIR = $(CCHOME)\lib
177
178#
179# Additional compiler flags can be specified here.
180#
2e30e1e1 181BUILDOPT = $(BUILDOPTEXTRA)
9e42cd94 182
7ada00a0 183#
2eb87578 184# Adding -DPERL_HASH_SEED_EXPLICIT will disable randomization of Perl's
185# internal hash function unless the PERL_HASH_SEED environment variable is set.
186# Alternatively, adding -DNO_HASH_SEED will completely disable the
187# randomization feature.
188# The latter is required to maintain binary compatibility with Perl 5.8.0.
189#
190#BUILDOPT = $(BUILDOPT) -DPERL_HASH_SEED_EXPLICIT
191#BUILDOPT = $(BUILDOPT) -DNO_HASH_SEED
192
9e42cd94 193#
194# This should normally be disabled. Adding -DPERL_POLLUTE enables support
195# for old symbols by default, at the expense of extreme pollution. You most
196# probably just want to build modules that won't compile with
197# perl Makefile.PL POLLUTE=1
198# instead of enabling this. Please report such modules to the respective
199# authors.
200#
201#BUILDOPT = $(BUILDOPT) -DPERL_POLLUTE
202
203#
204# This should normally be disabled. Enabling it will disable the File::Glob
205# implementation of CORE::glob.
206#
207#BUILDOPT = $(BUILDOPT) -DPERL_EXTERNAL_GLOB
208
209#
210# This should normally be disabled. Enabling it causes perl to read scripts
211# in text mode (which is the 5.005 behavior) and will break ByteLoader.
bdb4cb88 212#
9e42cd94 213#BUILDOPT = $(BUILDOPT) -DPERL_TEXTMODE_SCRIPTS
214
215#
216# specify semicolon-separated list of extra directories that modules will
217# look for libraries (spaces in path names need not be quoted)
218#
219EXTRALIBDIRS =
220
221#
222# set this to your email address (perl will guess a value from
223# from your loginname and your hostname, which may not be right)
224#
225#EMAIL =
226
227##
228## Build configuration ends.
229##
230
231##################### CHANGE THESE ONLY IF YOU MUST #####################
232
233!IF "$(CRYPT_SRC)$(CRYPT_LIB)" == ""
234D_CRYPT = undef
235!ELSE
236D_CRYPT = define
237CRYPT_FLAG = -DHAVE_DES_FCRYPT
238!ENDIF
239
646e33b6 240!IF "$(USE_IMP_SYS)" == "define"
241PERL_MALLOC = undef
242DEBUG_MSTATS = undef
243!ENDIF
244
9e42cd94 245!IF "$(PERL_MALLOC)" == ""
246PERL_MALLOC = undef
646e33b6 247DEBUG_MSTATS = undef
06c896bb 248!ENDIF
249
250!IF "$(DEBUG_MSTATS)" == ""
646e33b6 251DEBUG_MSTATS = undef
06c896bb 252!ENDIF
253
254!IF "$(DEBUG_MSTATS)" == "define"
646e33b6 255BUILDOPT = $(BUILDOPT) -DPERL_DEBUGGING_MSTATS
9e42cd94 256!ENDIF
257
7ada00a0 258!IF "$(USE_SITECUST)" == ""
259USE_SITECUST = undef
260!ENDIF
261
9e42cd94 262!IF "$(USE_MULTI)" == ""
263USE_MULTI = undef
264!ENDIF
265
266!IF "$(USE_ITHREADS)" == ""
267USE_ITHREADS = undef
268!ENDIF
269
270!IF "$(USE_IMP_SYS)" == ""
271USE_IMP_SYS = undef
272!ENDIF
273
274!IF "$(USE_PERLIO)" == ""
275USE_PERLIO = undef
276!ENDIF
277
4a9d6100 278!IF "$(USE_LARGE_FILES)" == ""
279USE_LARGE_FILES = undef
280!ENDIF
281
9e42cd94 282!IF "$(USE_PERLCRT)" == ""
283USE_PERLCRT = undef
284!ENDIF
285
3db8f154 286!IF "$(USE_IMP_SYS)$(USE_MULTI)" == "defineundef"
9e42cd94 287USE_MULTI = define
288!ENDIF
289
290!IF "$(USE_ITHREADS)$(USE_MULTI)" == "defineundef"
291USE_MULTI = define
9e42cd94 292!ENDIF
293
7ada00a0 294!IF "$(USE_SITECUST)" == "define"
295BUILDOPT = $(BUILDOPT) -DUSE_SITECUSTOMIZE
296!ENDIF
297
3db8f154 298!IF "$(USE_MULTI)" != "undef"
9e42cd94 299BUILDOPT = $(BUILDOPT) -DPERL_IMPLICIT_CONTEXT
300!ENDIF
301
302!IF "$(USE_IMP_SYS)" != "undef"
303BUILDOPT = $(BUILDOPT) -DPERL_IMPLICIT_SYS
304!ENDIF
305
306!IF "$(PROCESSOR_ARCHITECTURE)" == ""
307PROCESSOR_ARCHITECTURE = x86
308!ENDIF
309
c623ac67 310!IF "$(WIN64)" == ""
bf2a35e5 311# When we are running from a 32bit cmd.exe on AMD64 then
312# PROCESSOR_ARCHITECTURE is set to x86 and PROCESSOR_ARCHITEW6432
313# is set to AMD64
c623ac67 314!IF "$(PROCESSOR_ARCHITEW6432)" != ""
315PROCESSOR_ARCHITECTURE = $(PROCESSOR_ARCHITEW6432)
316WIN64 = define
317!ELSE
bf2a35e5 318!IF "$(PROCESSOR_ARCHITECTURE)" == "AMD64" || "$(PROCESSOR_ARCHITECTURE)" == "IA64"
c623ac67 319WIN64 = define
320!ELSE
321WIN64 = undef
322!ENDIF
323!ENDIF
324!ENDIF
325
bf2a35e5 326ARCHITECTURE = $(PROCESSOR_ARCHITECTURE)
327!IF "$(ARCHITECTURE)" == "AMD64"
328ARCHITECTURE = x64
9453ddcd 329!ENDIF
bf2a35e5 330!IF "$(ARCHITECTURE)" == "IA64"
331ARCHITECTURE = ia64
9453ddcd 332!ENDIF
333
9e42cd94 334!IF "$(USE_MULTI)" == "define"
bf2a35e5 335ARCHNAME = MSWin32-$(ARCHITECTURE)-multi
9e42cd94 336!ELSE
337!IF "$(USE_PERLIO)" == "define"
bf2a35e5 338ARCHNAME = MSWin32-$(ARCHITECTURE)-perlio
9e42cd94 339!ELSE
bf2a35e5 340ARCHNAME = MSWin32-$(ARCHITECTURE)
9e42cd94 341!ENDIF
342!ENDIF
9e42cd94 343
344!IF "$(USE_PERLIO)" == "define"
345BUILDOPT = $(BUILDOPT) -DUSE_PERLIO
346!ENDIF
347
348!IF "$(USE_ITHREADS)" == "define"
349ARCHNAME = $(ARCHNAME)-thread
350!ENDIF
351
da2c7419 352# Visual Studio 98 and .NET 2003 specific
353# VC++ 6.x and 7.x can load DLL's on demand. Makes the test suite run in
354# about 10% less time. (The free version of 7.x can't do this, however.)
73c9ebc7 355# The addition of VC++ 8.x is currently an educated guess.
356!IF "$(CCTYPE)" == "MSVC60" || "$(CCTYPE)" == "MSVC70" || "$(CCTYPE)" == "MSVC80"
036c1c1e 357DELAYLOAD = -DELAYLOAD:ws2_32.dll -DELAYLOAD:shell32.dll delayimp.lib
9e42cd94 358!ENDIF
359
360ARCHDIR = ..\lib\$(ARCHNAME)
361COREDIR = ..\lib\CORE
362AUTODIR = ..\lib\auto
363LIBDIR = ..\lib
364EXTDIR = ..\ext
365PODDIR = ..\pod
366EXTUTILSDIR = $(LIBDIR)\ExtUtils
b4a41557 367HTMLDIR = .\html
9e42cd94 368
369#
370INST_SCRIPT = $(INST_TOP)$(INST_VER)\bin
371INST_BIN = $(INST_SCRIPT)$(INST_ARCH)
372INST_LIB = $(INST_TOP)$(INST_VER)\lib
373INST_ARCHLIB = $(INST_LIB)$(INST_ARCH)
374INST_COREDIR = $(INST_ARCHLIB)\CORE
9e42cd94 375INST_HTML = $(INST_TOP)$(INST_VER)\html
376
377#
378# Programs to compile, build .lib files and link
379#
380
381CC = cl
382LINK32 = link
383LIB32 = $(LINK32) -lib
384RSC = rc
385
386#
387# Options
388#
389
390INCLUDES = -I$(COREDIR) -I.\include -I. -I..
391#PCHFLAGS = -Fpc:\temp\vcmoduls.pch -YX
392DEFINES = -DWIN32 -D_CONSOLE -DNO_STRICT $(CRYPT_FLAG)
393LOCDEFS = -DPERLDLL -DPERL_CORE
394SUBSYS = console
395CXX_FLAG = -TP -GX
396
397!IF "$(USE_PERLCRT)" != "define"
398LIBC = msvcrt.lib
399!ELSE
400LIBC = PerlCRT.lib
401!ENDIF
402
9e42cd94 403!IF "$(CFG)" == "Debug"
404! IF "$(CCTYPE)" == "MSVC20"
405OPTIMIZE = -Od -MD -Z7 -DDEBUGGING
406! ELSE
407OPTIMIZE = -Od -MD -Zi -DDEBUGGING
408! ENDIF
c623ac67 409LINK_DBG = -debug
9e42cd94 410!ELSE
ec25c072 411OPTIMIZE = -MD -Zi -DNDEBUG
412# we enable debug symbols in release builds also
413LINK_DBG = -debug -opt:ref,icf
414# you may want to enable this if you want COFF symbols in the executables
415# in addition to the PDB symbols. The default Dr. Watson that ships with
416# Windows can use the the former but not latter. The free WinDbg can be
417# installed to get better stack traces from just the PDB symbols, so we
418# avoid the bloat of COFF symbols by default.
419#LINK_DBG = $(LINK_DBG) -debugtype:both
d921a5fb 420! IF "$(WIN64)" == "define"
421# enable Whole Program Optimizations (WPO) and Link Time Code Generation (LTCG)
422OPTIMIZE = $(OPTIMIZE) -Ox -GL
423LINK_DBG = $(LINK_DBG) -ltcg
424! ELSE
425# -O1 yields smaller code, which turns out to be faster than -O2 on x86
426OPTIMIZE = $(OPTIMIZE) -O1
427#OPTIMIZE = $(OPTIMIZE) -O2
428! ENDIF
9e42cd94 429!ENDIF
430
c623ac67 431!IF "$(WIN64)" == "define"
432DEFINES = $(DEFINES) -DWIN64 -DCONSERVATIVE
9453ddcd 433OPTIMIZE = $(OPTIMIZE) -Wp64 -fp:precise
da2c7419 434!ENDIF
435
9e42cd94 436!IF "$(USE_PERLCRT)" != "define"
437BUILDOPT = $(BUILDOPT) -DPERL_MSVCRT_READFIX
438!ENDIF
439
440LIBBASEFILES = $(CRYPT_LIB) \
441 oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.lib \
442 comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \
036c1c1e 443 netapi32.lib uuid.lib ws2_32.lib mpr.lib winmm.lib \
9453ddcd 444 version.lib odbc32.lib odbccp32.lib
c623ac67 445
9453ddcd 446# The 64 bit Platform SDK compilers contain a runtime library that doesn't
447# include the buffer overrun verification code used by the /GS switch.
448# Since the code links against libraries that are compiled with /GS, this
449# "security cookie verification" must be included via bufferoverlow.lib.
450!IF "$(WIN64)" == "define"
451LIBBASEFILES = $(LIBBASEFILES) bufferoverflowU.lib
c623ac67 452!ENDIF
9e42cd94 453
454# we add LIBC here, since we may be using PerlCRT.dll
455LIBFILES = $(LIBBASEFILES) $(LIBC)
456
a5ca303d 457#EXTRACFLAGS = -nologo -GF -W4 -wd4127 -wd4706
9453ddcd 458EXTRACFLAGS = -nologo -GF -W3
bb275e72 459CFLAGS = $(EXTRACFLAGS) $(INCLUDES) $(DEFINES) $(LOCDEFS) \
9e42cd94 460 $(PCHFLAGS) $(OPTIMIZE)
461LINK_FLAGS = -nologo -nodefaultlib $(LINK_DBG) \
462 -libpath:"$(INST_COREDIR)" \
463 -machine:$(PROCESSOR_ARCHITECTURE)
464OBJOUT_FLAG = -Fo
465EXEOUT_FLAG = -Fe
466
467CFLAGS_O = $(CFLAGS) $(BUILDOPT)
468
469#################### do not edit below this line #######################
470############# NO USER-SERVICEABLE PARTS BEYOND THIS POINT ##############
471
472o = .obj
473
474#
475# Rules
476#
477
478.SUFFIXES : .c $(o) .dll .lib .exe .rc .res
479
480.c$(o):
481 $(CC) -c -I$(<D) $(CFLAGS_O) $(OBJOUT_FLAG)$@ $<
482
483.y.c:
484 $(NOOP)
485
486$(o).dll:
487 $(LINK32) -dll -subsystem:windows -implib:$(*B).lib -def:$(*B).def \
488 -out:$@ $(LINK_FLAGS) $(LIBFILES) $< $(LIBPERL)
489
490.rc.res:
491 $(RSC) -i.. $<
492
493#
494# various targets
495
496# makedef.pl must be updated if this changes, and this should normally
497# only change when there is an incompatible revision of the public API.
78a7c709 498PERLIMPLIB = ..\perl59.lib
499PERLDLL = ..\perl59.dll
9e42cd94 500
501MINIPERL = ..\miniperl.exe
502MINIDIR = .\mini
503PERLEXE = ..\perl.exe
504WPERLEXE = ..\wperl.exe
505GLOBEXE = ..\perlglob.exe
04bae4fb 506CONFIGPM = ..\lib\Config.pm ..\lib\Config_heavy.pl
9e42cd94 507MINIMOD = ..\lib\ExtUtils\Miniperl.pm
508X2P = ..\x2p\a2p.exe
73c9ebc7 509
84b05a71 510# With the .NET 2.0 SDK, setargs.obj is not available with the .NET SDK. It
511# only comes with Visual Studio 2005.
512!IF "$(CCTYPE)" != "MSVC80FREE"
73c9ebc7 513GLOBEXEBUILD =
514!ENDIF
9e42cd94 515
ca12659b 516# Unicode data files generated by mktables
6ae7e459 517FIRSTUNIFILE = ..\lib\unicore\Canonical.pl
ca12659b 518UNIDATAFILES = ..\lib\unicore\Canonical.pl ..\lib\unicore\Exact.pl \
519 ..\lib\unicore\Properties ..\lib\unicore\Decomposition.pl \
7ebf06b3 520 ..\lib\unicore\CombiningClass.pl ..\lib\unicore\Name.pl \
521 ..\lib\unicore\PVA.pl
ca12659b 522
523# Directories of Unicode data files generated by mktables
27a8011f 524UNIDATADIR1 = ..\lib\unicore\To
525UNIDATADIR2 = ..\lib\unicore\lib
ca12659b 526
3890b58f 527PERLEXE_ICO = .\perlexe.ico
528PERLEXE_RES = .\perlexe.res
529PERLDLL_RES =
530
9e42cd94 531# Nominate a target which causes extensions to be re-built
532# This used to be $(PERLEXE), but at worst it is the .dll that they depend
533# on and really only the interface - i.e. the .def file used to export symbols
534# from the .dll
535PERLDEP = perldll.def
536
537PL2BAT = bin\pl2bat.pl
538GLOBBAT = bin\perlglob.bat
539
540UTILS = \
541 ..\utils\h2ph \
542 ..\utils\splain \
543 ..\utils\dprofpp \
544 ..\utils\perlbug \
545 ..\utils\pl2pm \
546 ..\utils\c2ph \
827a599d 547 ..\utils\pstruct \
9e42cd94 548 ..\utils\h2xs \
549 ..\utils\perldoc \
9e42cd94 550 ..\utils\perlivp \
551 ..\utils\libnetcfg \
827a599d 552 ..\utils\enc2xs \
553 ..\utils\piconv \
bb4e9162 554 ..\utils\config_data \
18a1cebe 555 ..\utils\corelist \
83cd6e83 556 ..\utils\cpan \
ea0e987d 557 ..\utils\xsubpp \
4b618757 558 ..\utils\prove \
291d3373 559 ..\utils\ptar \
b8669316 560 ..\utils\ptardiff \
3ddf9550 561 ..\utils\shasum \
ea0e987d 562 ..\utils\instmodsh \
9e42cd94 563 ..\pod\checkpods \
564 ..\pod\pod2html \
565 ..\pod\pod2latex \
566 ..\pod\pod2man \
567 ..\pod\pod2text \
568 ..\pod\pod2usage \
569 ..\pod\podchecker \
570 ..\pod\podselect \
571 ..\x2p\find2perl \
827a599d 572 ..\x2p\psed \
9e42cd94 573 ..\x2p\s2p \
9e42cd94 574 bin\exetype.pl \
575 bin\runperl.pl \
576 bin\pl2bat.pl \
577 bin\perlglob.pl \
578 bin\search.pl
579
580MAKE = nmake -nologo
581MAKE_BARE = nmake
582
c623ac67 583!IF "$(WIN64)" == "define"
584CFGSH_TMPL = config.vc64
585CFGH_TMPL = config_H.vc64
586!ELSE
9e42cd94 587CFGSH_TMPL = config.vc
588CFGH_TMPL = config_H.vc
c623ac67 589!ENDIF
9e42cd94 590
b6ed7314 591XCOPY = xcopy /f /r /i /d /y
592RCOPY = xcopy /f /r /i /e /d /y
65980d94 593NOOP = @rem
9e42cd94 594NULL =
595
596DEL = del
597
598#
599# filenames given to xsubpp must have forward slashes (since it puts
600# full pathnames in #line strings)
601XSUBPP = ..\$(MINIPERL) -I..\..\lib ..\$(EXTUTILSDIR)\xsubpp \
602 -C++ -prototypes
603
604MICROCORE_SRC = \
605 ..\av.c \
606 ..\deb.c \
607 ..\doio.c \
608 ..\doop.c \
609 ..\dump.c \
610 ..\globals.c \
611 ..\gv.c \
612 ..\hv.c \
613 ..\locale.c \
a0d89a74 614 ..\mathoms.c \
9e42cd94 615 ..\mg.c \
616 ..\numeric.c \
617 ..\op.c \
295f0f84 618 ..\pad.c \
9e42cd94 619 ..\perl.c \
620 ..\perlapi.c \
621 ..\perly.c \
622 ..\pp.c \
623 ..\pp_ctl.c \
624 ..\pp_hot.c \
625 ..\pp_pack.c \
626 ..\pp_sort.c \
627 ..\pp_sys.c \
10bc17b6 628 ..\reentr.c \
9e42cd94 629 ..\regcomp.c \
630 ..\regexec.c \
631 ..\run.c \
632 ..\scope.c \
633 ..\sv.c \
634 ..\taint.c \
635 ..\toke.c \
636 ..\universal.c \
637 ..\utf8.c \
638 ..\util.c \
639 ..\xsutils.c
640
641EXTRACORE_SRC = $(EXTRACORE_SRC) perllib.c
642
643!IF "$(PERL_MALLOC)" == "define"
644EXTRACORE_SRC = $(EXTRACORE_SRC) ..\malloc.c
645!ENDIF
646
647EXTRACORE_SRC = $(EXTRACORE_SRC) ..\perlio.c
648
649WIN32_SRC = \
650 .\win32.c \
651 .\win32sck.c \
652 .\win32thread.c
653
f7d585d3 654# We need this for miniperl build unless we override canned
655# config.h #define building mini\*
656#!IF "$(USE_PERLIO)" == "define"
9e42cd94 657WIN32_SRC = $(WIN32_SRC) .\win32io.c
f7d585d3 658#!ENDIF
9e42cd94 659
660!IF "$(CRYPT_SRC)" != ""
661WIN32_SRC = $(WIN32_SRC) .\$(CRYPT_SRC)
662!ENDIF
663
664DLL_SRC = $(DYNALOADER).c
665
666X2P_SRC = \
667 ..\x2p\a2p.c \
668 ..\x2p\hash.c \
669 ..\x2p\str.c \
670 ..\x2p\util.c \
671 ..\x2p\walk.c
672
673CORE_NOCFG_H = \
674 ..\av.h \
675 ..\cop.h \
676 ..\cv.h \
677 ..\dosish.h \
678 ..\embed.h \
679 ..\form.h \
680 ..\gv.h \
681 ..\handy.h \
682 ..\hv.h \
683 ..\iperlsys.h \
684 ..\mg.h \
685 ..\nostdio.h \
686 ..\op.h \
687 ..\opcode.h \
688 ..\perl.h \
689 ..\perlapi.h \
690 ..\perlsdio.h \
691 ..\perlsfio.h \
692 ..\perly.h \
693 ..\pp.h \
694 ..\proto.h \
cdb0f547 695 ..\regcomp.h \
9e42cd94 696 ..\regexp.h \
697 ..\scope.h \
698 ..\sv.h \
699 ..\thread.h \
700 ..\unixish.h \
701 ..\utf8.h \
702 ..\util.h \
703 ..\warnings.h \
704 ..\XSUB.h \
705 ..\EXTERN.h \
706 ..\perlvars.h \
707 ..\intrpvar.h \
708 ..\thrdvar.h \
709 .\include\dirent.h \
710 .\include\netdb.h \
711 .\include\sys\socket.h \
712 .\win32.h
713
714CORE_H = $(CORE_NOCFG_H) .\config.h
715
716MICROCORE_OBJ = $(MICROCORE_SRC:.c=.obj)
717CORE_OBJ = $(MICROCORE_OBJ) $(EXTRACORE_SRC:.c=.obj)
718WIN32_OBJ = $(WIN32_SRC:.c=.obj)
719MINICORE_OBJ = $(MICROCORE_OBJ:..\=.\mini\) \
720 $(MINIDIR)\miniperlmain$(o) \
721 $(MINIDIR)\perlio$(o)
722MINIWIN32_OBJ = $(WIN32_OBJ:.\=.\mini\)
723MINI_OBJ = $(MINICORE_OBJ) $(MINIWIN32_OBJ)
724DLL_OBJ = $(DLL_SRC:.c=.obj)
725X2P_OBJ = $(X2P_SRC:.c=.obj)
726
727PERLDLL_OBJ = $(CORE_OBJ)
728PERLEXE_OBJ = perlmain$(o)
729
730PERLDLL_OBJ = $(PERLDLL_OBJ) $(WIN32_OBJ) $(DLL_OBJ)
731#PERLEXE_OBJ = $(PERLEXE_OBJ) $(WIN32_OBJ) $(DLL_OBJ)
732
733!IF "$(USE_SETARGV)" != ""
734SETARGV_OBJ = setargv$(o)
735!ENDIF
736
595589fa 737# specify static extensions here
9e7cf449 738#STATIC_EXT = Cwd Compress/Zlib
739STATIC_EXT =
595589fa 740
9e42cd94 741DYNALOADER = $(EXTDIR)\DynaLoader\DynaLoader
742SOCKET = $(EXTDIR)\Socket\Socket
743FCNTL = $(EXTDIR)\Fcntl\Fcntl
744OPCODE = $(EXTDIR)\Opcode\Opcode
745SDBM_FILE = $(EXTDIR)\SDBM_File\SDBM_File
746IO = $(EXTDIR)\IO\IO
747POSIX = $(EXTDIR)\POSIX\POSIX
748ATTRS = $(EXTDIR)\attrs\attrs
749THREAD = $(EXTDIR)\Thread\Thread
750B = $(EXTDIR)\B\B
751RE = $(EXTDIR)\re\re
752DUMPER = $(EXTDIR)\Data\Dumper\Dumper
753ERRNO = $(EXTDIR)\Errno\Errno
754PEEK = $(EXTDIR)\Devel\Peek\Peek
755BYTELOADER = $(EXTDIR)\ByteLoader\ByteLoader
756DPROF = $(EXTDIR)\Devel\DProf\DProf
757GLOB = $(EXTDIR)\File\Glob\Glob
758HOSTNAME = $(EXTDIR)\Sys\Hostname\Hostname
759STORABLE = $(EXTDIR)\Storable\Storable
760FILTER = $(EXTDIR)\Filter\Util\Call\Call
761ENCODE = $(EXTDIR)\Encode\Encode
762MD5 = $(EXTDIR)\Digest\MD5\MD5
59717686 763SHA = $(EXTDIR)\Digest\SHA\SHA
e934609f 764PERLIOSCALAR = $(EXTDIR)\PerlIO\scalar\scalar
9e42cd94 765MIMEBASE64 = $(EXTDIR)\MIME\Base64\Base64
766TIMEHIRES = $(EXTDIR)\Time\HiRes\HiRes
767CWD = $(EXTDIR)\Cwd\Cwd
768LISTUTIL = $(EXTDIR)\List\Util\Util
96c33d98 769HASHUTIL = $(EXTDIR)\Hash\Util\Util
e934609f 770PERLIOVIA = $(EXTDIR)\PerlIO\via\via
83e2e978 771XSAPITEST = $(EXTDIR)\XS\APItest\APItest
9e42cd94 772XSTYPEMAP = $(EXTDIR)\XS\Typemap\Typemap
773UNICODENORMALIZE = $(EXTDIR)\Unicode\Normalize\Normalize
4e74047c 774MATHBIGINTFASTCALC = $(EXTDIR)\Math\BigInt\FastCalc\FastCalc
059b2413 775COMPRESSZLIB = $(EXTDIR)\Compress\Zlib\Zlib
b4ad57f4 776WIN32_DIR = ext\Win32
00701878 777WIN32APIFILE = ext\Win32API\File\File
9e42cd94 778
779SOCKET_DLL = $(AUTODIR)\Socket\Socket.dll
780FCNTL_DLL = $(AUTODIR)\Fcntl\Fcntl.dll
781OPCODE_DLL = $(AUTODIR)\Opcode\Opcode.dll
782SDBM_FILE_DLL = $(AUTODIR)\SDBM_File\SDBM_File.dll
783IO_DLL = $(AUTODIR)\IO\IO.dll
784POSIX_DLL = $(AUTODIR)\POSIX\POSIX.dll
785ATTRS_DLL = $(AUTODIR)\attrs\attrs.dll
786THREAD_DLL = $(AUTODIR)\Thread\Thread.dll
787B_DLL = $(AUTODIR)\B\B.dll
788DUMPER_DLL = $(AUTODIR)\Data\Dumper\Dumper.dll
789PEEK_DLL = $(AUTODIR)\Devel\Peek\Peek.dll
790RE_DLL = $(AUTODIR)\re\re.dll
791BYTELOADER_DLL = $(AUTODIR)\ByteLoader\ByteLoader.dll
792DPROF_DLL = $(AUTODIR)\Devel\DProf\DProf.dll
793GLOB_DLL = $(AUTODIR)\File\Glob\Glob.dll
794HOSTNAME_DLL = $(AUTODIR)\Sys\Hostname\Hostname.dll
795STORABLE_DLL = $(AUTODIR)\Storable\Storable.dll
796FILTER_DLL = $(AUTODIR)\Filter\Util\Call\Call.dll
797ENCODE_DLL = $(AUTODIR)\Encode\Encode.dll
798MD5_DLL = $(AUTODIR)\Digest\MD5\MD5.dll
59717686 799SHA_DLL = $(AUTODIR)\Digest\SHA\SHA.dll
e934609f 800PERLIOSCALAR_DLL = $(AUTODIR)\PerlIO\scalar\scalar.dll
9e42cd94 801MIMEBASE64_DLL = $(AUTODIR)\MIME\Base64\Base64.dll
802TIMEHIRES_DLL = $(AUTODIR)\Time\HiRes\HiRes.dll
803CWD_DLL = $(AUTODIR)\Cwd\Cwd.dll
804LISTUTIL_DLL = $(AUTODIR)\List\Util\Util.dll
96c33d98 805HASHUTIL_DLL = $(AUTODIR)\HASH\Util\Util.dll
e934609f 806PERLIOVIA_DLL = $(AUTODIR)\PerlIO\via\via.dll
83e2e978 807XSAPITEST_DLL = $(AUTODIR)\XS\APItest\APItest.dll
9e42cd94 808XSTYPEMAP_DLL = $(AUTODIR)\XS\Typemap\Typemap.dll
809UNICODENORMALIZE_DLL = $(AUTODIR)\Unicode\Normalize\Normalize.dll
4e74047c 810MATHBIGINTFASTCALC_DLL = $(AUTODIR)\Math\BigInt\FastCalc\FastCalc.dll
059b2413 811COMPRESSZLIB_DLL = $(AUTODIR)\Compress\Zlib\Zlib.dll
b4ad57f4 812WIN32_DLL = $(AUTODIR)\Win32\Win32.dll
00701878 813WIN32APIFILE_DLL = $(AUTODIR)\Win32API\File\File.dll
9e42cd94 814
815EXTENSION_C = \
816 $(SOCKET).c \
817 $(FCNTL).c \
818 $(OPCODE).c \
819 $(SDBM_FILE).c \
820 $(IO).c \
821 $(POSIX).c \
822 $(ATTRS).c \
823 $(THREAD).c \
824 $(RE).c \
825 $(DUMPER).c \
826 $(PEEK).c \
827 $(B).c \
828 $(BYTELOADER).c \
829 $(DPROF).c \
830 $(GLOB).c \
831 $(HOSTNAME).c \
832 $(STORABLE).c \
833 $(FILTER).c \
834 $(ENCODE).c \
835 $(MD5).c \
59717686 836 $(SHA).c \
9e42cd94 837 $(PERLIOSCALAR).c \
838 $(MIMEBASE64).c \
839 $(TIMEHIRES).c \
840 $(CWD).c \
841 $(LISTUTIL).c \
96c33d98 842 $(HASHUTIL).c \
9e42cd94 843 $(PERLIOVIA).c \
83e2e978 844 $(XSAPITEST).c \
9e42cd94 845 $(XSTYPEMAP).c \
b4ad57f4 846 $(UNICODENORMALIZE).c \
4e74047c 847 $(MATHBIGINTFASTCALC).c \
059b2413 848 $(COMPRESSZLIB).c \
00701878 849 $(WIN32_DIR).c \
850 $(WIN32APIFILE).c
9e42cd94 851
852EXTENSION_DLL = \
853 $(SOCKET_DLL) \
854 $(FCNTL_DLL) \
855 $(OPCODE_DLL) \
856 $(SDBM_FILE_DLL)\
857 $(IO_DLL) \
858 $(POSIX_DLL) \
859 $(ATTRS_DLL) \
860 $(DUMPER_DLL) \
861 $(PEEK_DLL) \
862 $(B_DLL) \
863 $(RE_DLL) \
864 $(THREAD_DLL) \
865 $(BYTELOADER_DLL) \
866 $(DPROF_DLL) \
867 $(GLOB_DLL) \
868 $(HOSTNAME_DLL) \
869 $(STORABLE_DLL) \
870 $(FILTER_DLL) \
871 $(ENCODE_DLL) \
872 $(MD5_DLL) \
59717686 873 $(SHA_DLL) \
9e42cd94 874 $(PERLIOSCALAR_DLL) \
875 $(MIMEBASE64_DLL) \
876 $(TIMEHIRES_DLL) \
877 $(CWD_DLL) \
878 $(LISTUTIL_DLL) \
96c33d98 879 $(HASHUTIL_DLL) \
9e42cd94 880 $(PERLIOVIA_DLL) \
83e2e978 881 $(XSAPITEST_DLL) \
9e42cd94 882 $(XSTYPEMAP_DLL) \
b4ad57f4 883 $(UNICODENORMALIZE_DLL) \
4e74047c 884 $(MATHBIGINTFASTCALC_DLL) \
059b2413 885 $(COMPRESSZLIB_DLL) \
00701878 886 $(WIN32_DLL) \
887 $(WIN32APIFILE_DLL)
9e42cd94 888
9e42cd94 889CFG_VARS = \
890 "INST_DRV=$(INST_DRV)" \
891 "INST_TOP=$(INST_TOP)" \
892 "INST_VER=$(INST_VER)" \
893 "INST_ARCH=$(INST_ARCH)" \
894 "archname=$(ARCHNAME)" \
895 "cc=$(CC)" \
896 "ld=$(LINK32)" \
bb275e72 897 "ccflags=$(EXTRACFLAGS) $(OPTIMIZE:"=\") $(DEFINES) $(BUILDOPT)" \
9e42cd94 898 "cf_email=$(EMAIL)" \
899 "d_crypt=$(D_CRYPT)" \
900 "d_mymalloc=$(PERL_MALLOC)" \
901 "libs=$(LIBFILES)" \
902 "incpath=$(CCINCDIR:"=\")" \
903 "libperl=$(PERLIMPLIB:..\=)" \
904 "libpth=$(CCLIBDIR:"=\");$(EXTRALIBDIRS:"=\")" \
905 "libc=$(LIBC)" \
906 "make=$(MAKE_BARE)" \
d2b25974 907 "static_ext=$(STATIC_EXT)" \
7e0017d3 908 "usethreads=$(USE_ITHREADS)" \
9e42cd94 909 "useithreads=$(USE_ITHREADS)" \
9e42cd94 910 "usemultiplicity=$(USE_MULTI)" \
911 "useperlio=$(USE_PERLIO)" \
4a9d6100 912 "uselargefiles=$(USE_LARGE_FILES)" \
7ada00a0 913 "usesitecustomize=$(USE_SITECUST)" \
9e42cd94 914 "LINK_FLAGS=$(LINK_FLAGS:"=\")" \
915 "optimize=$(OPTIMIZE:"=\")"
916
917#
918# Top targets
919#
920
ca12659b 921all : .\config.h $(GLOBEXE) $(MINIMOD) $(CONFIGPM) $(UNIDATAFILES) $(PERLEXE) \
42e07562 922 $(X2P) MakePPPort Extensions
9e42cd94 923 @echo Everything is up to date. '$(MAKE_BARE) test' to run test suite.
924
a24cc0c0 925reonly : .\config.h $(GLOBEXE) $(MINIMOD) $(CONFIGPM) $(UNIDATAFILES) $(PERLEXE) \
926 $(X2P) Extensions_reonly
927 @echo Perl and 're' are up to date.
928
9e42cd94 929$(DYNALOADER)$(o) : $(DYNALOADER).c $(CORE_H) $(EXTDIR)\DynaLoader\dlutils.c
930
931#------------------------------------------------------------
932
933$(GLOBEXE) : perlglob$(o)
73c9ebc7 934!ifdef GLOBEXEBUILD
9e42cd94 935 $(LINK32) $(LINK_FLAGS) $(LIBFILES) -out:$@ -subsystem:$(SUBSYS) \
936 perlglob$(o) setargv$(o)
73c9ebc7 937!else
938 echo Skipping $(GLOBEXE)
939!endif
9e42cd94 940
941perlglob$(o) : perlglob.c
942
943config.w32 : $(CFGSH_TMPL)
944 copy $(CFGSH_TMPL) config.w32
945
946.\config.h : $(CFGH_TMPL)
947 -del /f config.h
948 copy $(CFGH_TMPL) config.h
949
950..\config.sh : config.w32 $(MINIPERL) config_sh.PL
951 $(MINIPERL) -I..\lib config_sh.PL $(CFG_VARS) config.w32 > ..\config.sh
952
953# this target is for when changes to the main config.sh happen
954# edit config.{b,v,g}c and make this target once for each supported
955# compiler (e.g. `nmake CCTYPE=BORLAND regen_config_h`)
956regen_config_h:
957 perl config_sh.PL $(CFG_VARS) $(CFGSH_TMPL) > ..\config.sh
958 cd ..
8839b9e4 959 -del /f perl.exe perl*.dll
9e42cd94 960 perl configpm
961 cd win32
962 -del /f $(CFGH_TMPL)
963 -mkdir $(COREDIR)
8839b9e4 964 -perl config_h.PL "INST_VER=$(INST_VER)"
9e42cd94 965 rename config.h $(CFGH_TMPL)
966
967$(CONFIGPM) : $(MINIPERL) ..\config.sh config_h.PL ..\minimod.pl
968 cd ..
969 miniperl configpm
970 cd win32
971 if exist lib\* $(RCOPY) lib\*.* ..\lib\$(NULL)
972 $(XCOPY) ..\*.h $(COREDIR)\*.*
973 $(XCOPY) *.h $(COREDIR)\*.*
974 $(XCOPY) ..\ext\re\re.pm $(LIBDIR)\*.*
975 $(RCOPY) include $(COREDIR)\*.*
976 -$(MINIPERL) -I..\lib config_h.PL "INST_VER=$(INST_VER)"
977 if errorlevel 1 $(MAKE) /$(MAKEFLAGS) $(CONFIGPM)
978
979$(MINIPERL) : $(MINIDIR) $(MINI_OBJ)
980 $(LINK32) -subsystem:console -out:$@ @<<
981 $(LINK_FLAGS) $(LIBFILES) $(MINI_OBJ)
982<<
983
984$(MINIDIR) :
985 if not exist "$(MINIDIR)" mkdir "$(MINIDIR)"
986
987$(MINICORE_OBJ) : $(CORE_NOCFG_H)
988 $(CC) -c $(CFLAGS) -DPERL_EXTERNAL_GLOB $(OBJOUT_FLAG)$@ ..\$(*F).c
989
990$(MINIWIN32_OBJ) : $(CORE_NOCFG_H)
991 $(CC) -c $(CFLAGS) $(OBJOUT_FLAG)$@ $(*F).c
992
993# -DPERL_IMPLICIT_SYS needs C++ for perllib.c
994# This is the only file that depends on perlhost.h, vmem.h, and vdir.h
995!IF "$(USE_IMP_SYS)" == "define"
996perllib$(o) : perllib.c .\perlhost.h .\vdir.h .\vmem.h
997 $(CC) -c -I. $(CFLAGS_O) $(CXX_FLAG) $(OBJOUT_FLAG)$@ perllib.c
998!ENDIF
999
1000# 1. we don't want to rebuild miniperl.exe when config.h changes
1001# 2. we don't want to rebuild miniperl.exe with non-default config.h
1002$(MINI_OBJ) : $(CORE_NOCFG_H)
1003
1004$(WIN32_OBJ) : $(CORE_H)
1005$(CORE_OBJ) : $(CORE_H)
1006$(DLL_OBJ) : $(CORE_H)
1007$(X2P_OBJ) : $(CORE_H)
1008
1009perldll.def : $(MINIPERL) $(CONFIGPM) ..\global.sym ..\pp.sym ..\makedef.pl
595589fa 1010 $(MINIPERL) -I..\lib buildext.pl --create-perllibst-h
9e42cd94 1011 $(MINIPERL) -w ..\makedef.pl PLATFORM=win32 $(OPTIMIZE) $(DEFINES) $(BUILDOPT) \
1012 CCTYPE=$(CCTYPE) > perldll.def
1013
595589fa 1014$(PERLDLL): perldll.def $(PERLDLL_OBJ) $(PERLDLL_RES) Extensions_static
9e7cf449 1015 $(LINK32) -dll -def:perldll.def -base:0x28000000 -out:$@ @Extensions_static @<<
9e42cd94 1016 $(LINK_FLAGS) $(DELAYLOAD) $(LIBFILES) $(PERLDLL_OBJ) $(PERLDLL_RES)
1017<<
1018 $(XCOPY) $(PERLIMPLIB) $(COREDIR)
1019
e84ac4e2 1020$(PERLEXE_ICO): $(MINIPERL) makeico.pl
1021 $(MINIPERL) makeico.pl > $@
1022
1023$(PERLEXE_RES): perlexe.rc $(PERLEXE_ICO)
1024
9e42cd94 1025$(MINIMOD) : $(MINIPERL) ..\minimod.pl
1026 cd ..
1027 miniperl minimod.pl > lib\ExtUtils\Miniperl.pm
1028 cd win32
1029
1030..\x2p\a2p$(o) : ..\x2p\a2p.c
1031 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\a2p.c
1032
1033..\x2p\hash$(o) : ..\x2p\hash.c
1034 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\hash.c
1035
1036..\x2p\str$(o) : ..\x2p\str.c
1037 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\str.c
1038
1039..\x2p\util$(o) : ..\x2p\util.c
1040 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\util.c
1041
1042..\x2p\walk$(o) : ..\x2p\walk.c
1043 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\walk.c
1044
1045$(X2P) : $(MINIPERL) $(X2P_OBJ)
1046 $(MINIPERL) ..\x2p\find2perl.PL
1047 $(MINIPERL) ..\x2p\s2p.PL
1048 $(LINK32) -subsystem:console -out:$@ @<<
1049 $(LINK_FLAGS) $(LIBFILES) $(X2P_OBJ)
1050<<
1051
1052perlmain.c : runperl.c
1053 copy runperl.c perlmain.c
1054
1055perlmain$(o) : perlmain.c
1056 $(CC) $(CFLAGS_O) -UPERLDLL $(OBJOUT_FLAG)$@ -c perlmain.c
1057
1058$(PERLEXE): $(PERLDLL) $(CONFIGPM) $(PERLEXE_OBJ) $(PERLEXE_RES)
1059 $(LINK32) -subsystem:console -out:$@ -stack:0x1000000 $(LINK_FLAGS) \
1060 $(LIBFILES) $(PERLEXE_OBJ) $(SETARGV_OBJ) $(PERLIMPLIB) $(PERLEXE_RES)
1061 copy $(PERLEXE) $(WPERLEXE)
1062 $(MINIPERL) -I..\lib bin\exetype.pl $(WPERLEXE) WINDOWS
1063 copy splittree.pl ..
1064 $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR)
1065
1066$(DYNALOADER).c: $(MINIPERL) $(EXTDIR)\DynaLoader\dl_win32.xs $(CONFIGPM)
1067 if not exist $(AUTODIR) mkdir $(AUTODIR)
1068 cd $(EXTDIR)\$(*B)
1069 ..\$(MINIPERL) -I..\..\lib $(*B)_pm.PL
1070 ..\$(MINIPERL) -I..\..\lib XSLoader_pm.PL
1071 cd ..\..\win32
1072 $(XCOPY) $(EXTDIR)\$(*B)\$(*B).pm $(LIBDIR)\$(NULL)
1073 $(XCOPY) $(EXTDIR)\$(*B)\XSLoader.pm $(LIBDIR)\$(NULL)
1074 cd $(EXTDIR)\$(*B)
1075 $(XSUBPP) dl_win32.xs > $(*B).c
1076 cd ..\..\win32
1077
1078$(EXTDIR)\DynaLoader\dl_win32.xs: dl_win32.xs
1079 copy dl_win32.xs $(EXTDIR)\DynaLoader\dl_win32.xs
1080
42e07562 1081MakePPPort: $(MINIPERL) $(CONFIGPM)
1082 $(MINIPERL) -I..\lib ..\mkppport
1083
1084MakePPPort_clean:
1085 -if exist $(MINIPERL) $(MINIPERL) -I..\lib ..\mkppport --clean
1086
9dcb9602 1087#-------------------------------------------------------------------------------
9e42cd94 1088Extensions: buildext.pl $(PERLDEP) $(CONFIGPM)
a5ca303d 1089 $(XCOPY) ..\*.h $(COREDIR)\*.*
595589fa 1090 $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) --dynamic
1091 $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext --dynamic
1092
a24cc0c0 1093Extensions_reonly: buildext.pl $(PERLDEP) $(CONFIGPM)
a5ca303d 1094 $(XCOPY) ..\*.h $(COREDIR)\*.*
a24cc0c0 1095 $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) --dynamic +re
1096 $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext --dynamic +re
1097
595589fa 1098Extensions_static : buildext.pl
a5ca303d 1099 $(XCOPY) ..\*.h $(COREDIR)\*.*
595589fa 1100 $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) --static
9e7cf449 1101 $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext --static
1102 $(MINIPERL) -I..\lib buildext.pl --list-static-libs > Extensions_static
9e42cd94 1103
1104Extensions_clean:
1105 -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) clean
b4ad57f4 1106 -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext clean
9e42cd94 1107
b4dc1df6 1108Extensions_realclean:
1109 -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) realclean
b4ad57f4 1110 -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext realclean
b4dc1df6 1111
9dcb9602 1112#-------------------------------------------------------------------------------
9e42cd94 1113
1114doc: $(PERLEXE)
b4a41557 1115 $(PERLEXE) -I..\lib ..\installhtml --podroot=.. --htmldir=$(HTMLDIR) \
9e42cd94 1116 --podpath=pod:lib:ext:utils --htmlroot="file://$(INST_HTML::=|)" \
1117 --libpod=perlfunc:perlguts:perlvar:perlrun:perlop --recurse
1118
b0b6bf2b 1119# Note that this next section is parsed (and regenerated) by pod/buildtoc
1120# so please check that script before making structural changes here
1121
9e42cd94 1122utils: $(PERLEXE) $(X2P)
1123 cd ..\utils
1124 $(MAKE) PERL=$(MINIPERL)
1125 cd ..\pod
4cb44f92 1126 copy ..\vms\perlvms.pod .\perlvms.pod
b0b6bf2b 1127 copy ..\README.aix ..\pod\perlaix.pod
1128 copy ..\README.amiga ..\pod\perlamiga.pod
1129 copy ..\README.apollo ..\pod\perlapollo.pod
1130 copy ..\README.beos ..\pod\perlbeos.pod
1131 copy ..\README.bs2000 ..\pod\perlbs2000.pod
1132 copy ..\README.ce ..\pod\perlce.pod
1133 copy ..\README.cn ..\pod\perlcn.pod
1134 copy ..\README.cygwin ..\pod\perlcygwin.pod
1135 copy ..\README.dgux ..\pod\perldgux.pod
1136 copy ..\README.dos ..\pod\perldos.pod
1137 copy ..\README.epoc ..\pod\perlepoc.pod
1138 copy ..\README.freebsd ..\pod\perlfreebsd.pod
1139 copy ..\README.hpux ..\pod\perlhpux.pod
1140 copy ..\README.hurd ..\pod\perlhurd.pod
1141 copy ..\README.irix ..\pod\perlirix.pod
1142 copy ..\README.jp ..\pod\perljp.pod
1143 copy ..\README.ko ..\pod\perlko.pod
6477b319 1144 copy ..\README.linux ..\pod\perllinux.pod
b0b6bf2b 1145 copy ..\README.machten ..\pod\perlmachten.pod
1146 copy ..\README.macos ..\pod\perlmacos.pod
1147 copy ..\README.macosx ..\pod\perlmacosx.pod
1148 copy ..\README.mint ..\pod\perlmint.pod
1149 copy ..\README.mpeix ..\pod\perlmpeix.pod
1150 copy ..\README.netware ..\pod\perlnetware.pod
b0846812 1151 copy ..\README.openbsd ..\pod\perlopenbsd.pod
b0b6bf2b 1152 copy ..\README.os2 ..\pod\perlos2.pod
1153 copy ..\README.os390 ..\pod\perlos390.pod
1154 copy ..\README.os400 ..\pod\perlos400.pod
1155 copy ..\README.plan9 ..\pod\perlplan9.pod
1156 copy ..\README.qnx ..\pod\perlqnx.pod
2f08ed66 1157 copy ..\README.riscos ..\pod\perlriscos.pod
b0b6bf2b 1158 copy ..\README.solaris ..\pod\perlsolaris.pod
27da23d5 1159 copy ..\README.symbian ..\pod\perlsymbian.pod
b0b6bf2b 1160 copy ..\README.tru64 ..\pod\perltru64.pod
1161 copy ..\README.tw ..\pod\perltw.pod
1162 copy ..\README.uts ..\pod\perluts.pod
1163 copy ..\README.vmesa ..\pod\perlvmesa.pod
1164 copy ..\README.vms ..\pod\perlvms.pod
1165 copy ..\README.vos ..\pod\perlvos.pod
1166 copy ..\README.win32 ..\pod\perlwin32.pod
6c7deadb 1167 copy ..\pod\perl594delta.pod ..\pod\perldelta.pod
9e42cd94 1168 $(MAKE) -f ..\win32\pod.mak converters
1169 cd ..\lib
1170 $(PERLEXE) lib_pm.PL
1171 cd ..\win32
1172 $(PERLEXE) $(PL2BAT) $(UTILS)
1173
b0b6bf2b 1174# Note that the pod cleanup in this next section is parsed (and regenerated
1175# by pod/buildtoc so please check that script before making changes here
1176
b4dc1df6 1177distclean: realclean
9e42cd94 1178 -del /f $(MINIPERL) $(PERLEXE) $(PERLDLL) $(GLOBEXE) \
1179 $(PERLIMPLIB) ..\miniperl.lib $(MINIMOD)
1180 -del /f *.def *.map
1181 -del /f $(EXTENSION_DLL)
1182 -del /f $(EXTENSION_C) $(DYNALOADER).c $(ERRNO).pm
1183 -del /f $(EXTDIR)\DynaLoader\dl_win32.xs
ca67812f 1184 -del /f $(EXTDIR)\DynaLoader\DynaLoader.pm
1185 -del /f $(EXTDIR)\DynaLoader\XSLoader.pm
1186 -del /f $(LIBDIR)\Encode.pm $(LIBDIR)\encoding.pm $(LIBDIR)\Errno.pm
1187 -del /f $(LIBDIR)\Config.pod $(LIBDIR)\POSIX.pod $(LIBDIR)\threads.pm
9e42cd94 1188 -del /f $(LIBDIR)\.exists $(LIBDIR)\attrs.pm $(LIBDIR)\DynaLoader.pm
b4dc1df6 1189 -del /f $(LIBDIR)\XSLoader.pm $(LIBDIR)\lib.pm
9e42cd94 1190 -del /f $(LIBDIR)\Fcntl.pm $(LIBDIR)\IO.pm $(LIBDIR)\Opcode.pm
1191 -del /f $(LIBDIR)\ops.pm $(LIBDIR)\Safe.pm
1192 -del /f $(LIBDIR)\SDBM_File.pm $(LIBDIR)\Socket.pm $(LIBDIR)\POSIX.pm
1193 -del /f $(LIBDIR)\B.pm $(LIBDIR)\O.pm $(LIBDIR)\re.pm
ca67812f 1194 -del /f $(LIBDIR)\ByteLoader.pm
9e42cd94 1195 -del /f $(LIBDIR)\Devel\Peek.pm $(LIBDIR)\Devel\DProf.pm
ca67812f 1196 -del /f $(LIBDIR)\Devel\PPPort.pm
9e42cd94 1197 -del /f $(LIBDIR)\File\Glob.pm
1198 -del /f $(LIBDIR)\Storable.pm
9e42cd94 1199 -del /f $(LIBDIR)\Digest\MD5.pm
59717686 1200 -del /f $(LIBDIR)\Digest\SHA.pm
ca67812f 1201 -del /f $(LIBDIR)\PerlIO\encoding.pm
e934609f 1202 -del /f $(LIBDIR)\PerlIO\scalar.pm
1203 -del /f $(LIBDIR)\PerlIO\via.pm
ca67812f 1204 -del /f $(LIBDIR)\Sys\Hostname.pm
1205 -del /f $(LIBDIR)\Thread\Signal.pm $(LIBDIR)\Thread\Specific.pm
1206 -del /f $(LIBDIR)\threads\shared.pm
9e42cd94 1207 -del /f $(LIBDIR)\Time\HiRes.pm
9e42cd94 1208 -del /f $(LIBDIR)\Unicode\Normalize.pm
4e74047c 1209 -del /f $(LIBDIR)\Math\BigInt\FastCalc.pm
b4ad57f4 1210 -del /f $(LIBDIR)\Win32.pm
00701878 1211 -del /f $(LIBDIR)\Win32API\File.pm
1212 -del /f $(LIBDIR)\Win32API\File\cFile.pc
9e42cd94 1213 -if exist $(LIBDIR)\B rmdir /s /q $(LIBDIR)\B
46ffdcf0 1214 -if exist $(LIBDIR)\Compress rmdir /s /q $(LIBDIR)\Compress
9e42cd94 1215 -if exist $(LIBDIR)\Data rmdir /s /q $(LIBDIR)\Data
ca67812f 1216 -if exist $(LIBDIR)\Encode rmdir /s /q $(LIBDIR)\Encode
9e42cd94 1217 -if exist $(LIBDIR)\Filter\Util rmdir /s /q $(LIBDIR)\Filter\Util
96c33d98 1218 -if exist $(LIBDIR)\Hash rmdir /s /q $(LIBDIR)\Hash
69f57184 1219 -if exist $(LIBDIR)\IO\Compress rmdir /s /q $(LIBDIR)\IO\Compress
69f57184 1220 -if exist $(LIBDIR)\IO\Socket rmdir /s /q $(LIBDIR)\IO\Socket
69f57184 1221 -if exist $(LIBDIR)\IO\Uncompress rmdir /s /q $(LIBDIR)\IO\Uncompress
69f57184 1222 -if exist $(LIBDIR)\List rmdir /s /q $(LIBDIR)\List
69f57184 1223 -if exist $(LIBDIR)\MIME rmdir /s /q $(LIBDIR)\MIME
9e42cd94 1224 -if exist $(LIBDIR)\Scalar rmdir /s /q $(LIBDIR)\Scalar
6c4b87ea 1225 -if exist $(LIBDIR)\Sys rmdir /s /q $(LIBDIR)\Sys
6c4b87ea 1226 -if exist $(LIBDIR)\threads rmdir /s /q $(LIBDIR)\threads
9e42cd94 1227 -if exist $(LIBDIR)\XS rmdir /s /q $(LIBDIR)\XS
00701878 1228 -if exist $(LIBDIR)\Win32API rmdir /s /q $(LIBDIR)\Win32API
ca67812f 1229 -cd $(PODDIR) && del /f *.html *.bat checkpods \
9e42cd94 1230 perlaix.pod perlamiga.pod perlapollo.pod perlbeos.pod \
b0b6bf2b 1231 perlbs2000.pod perlce.pod perlcn.pod perlcygwin.pod \
1400179b 1232 perldelta.pod perldgux.pod perldos.pod perlepoc.pod \
1233 perlfreebsd.pod perlhpux.pod perlhurd.pod perlirix.pod \
6477b319 1234 perljp.pod perlko.pod perllinux.pod perlmachten.pod \
1235 perlmacos.pod perlmacosx.pod perlmint.pod perlmpeix.pod \
1236 perlnetware.pod perlopenbsd.pod perlos2.pod perlos390.pod \
2f08ed66 1237 perlos400.pod perlplan9.pod perlqnx.pod perlriscos.pod \
1238 perlsolaris.pod perlsymbian.pod perltru64.pod perltw.pod \
1239 perluts.pod perlvmesa.pod perlvms.pod perlvms.pod perlvos.pod \
1240 perlwin32.pod \
b0b6bf2b 1241 pod2html pod2latex pod2man pod2text pod2usage \
9e42cd94 1242 podchecker podselect
ca67812f 1243 -cd ..\utils && del /f h2ph splain perlbug pl2pm c2ph pstruct h2xs \
de125441 1244 perldoc perlivp dprofpp libnetcfg enc2xs piconv cpan *.bat \
bb4e9162 1245 xsubpp instmodsh prove ptar ptardiff shasum corelist config_data
ca67812f 1246 -cd ..\x2p && del /f find2perl s2p psed *.bat
9e42cd94 1247 -del /f ..\config.sh ..\splittree.pl perlmain.c dlutils.c config.h.new
1248 -del /f $(CONFIGPM)
1249 -del /f bin\*.bat
322fd642 1250 -del /f perllibst.h
ec25c072 1251 -del /f $(PERLEXE_ICO) perl.base
ca67812f 1252 -cd .. && del /s *.lib *.map *.pdb *.ilk *.bs *$(o) .exists pm_to_blib
1253 -cd $(EXTDIR) && del /s *.def Makefile Makefile.old
9e42cd94 1254 -if exist $(AUTODIR) rmdir /s /q $(AUTODIR)
9e42cd94 1255 -if exist $(COREDIR) rmdir /s /q $(COREDIR)
b4a41557 1256 -if exist pod2htmd.tmp del pod2htmd.tmp
1257 -if exist pod2htmi.tmp del pod2htmi.tmp
1258 -if exist $(HTMLDIR) rmdir /s /q $(HTMLDIR)
9e42cd94 1259
1260install : all installbare installhtml
1261
1262installbare : utils
1263 $(PERLEXE) ..\installperl
1264 if exist $(WPERLEXE) $(XCOPY) $(WPERLEXE) $(INST_BIN)\*.*
1265 $(XCOPY) $(GLOBEXE) $(INST_BIN)\*.*
ec25c072 1266 if exist ..\perl*.pdb $(XCOPY) ..\perl*.pdb $(INST_BIN)\*.*
1267 if exist ..\x2p\a2p.pdb $(XCOPY) ..\x2p\a2p.pdb $(INST_BIN)\*.*
9e42cd94 1268 $(XCOPY) bin\*.bat $(INST_SCRIPT)\*.*
1269
1270installhtml : doc
b4a41557 1271 $(RCOPY) $(HTMLDIR)\*.* $(INST_HTML)\*.*
9e42cd94 1272
1273inst_lib : $(CONFIGPM)
1274 copy splittree.pl ..
1275 $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR)
1276 $(RCOPY) ..\lib $(INST_LIB)\*.*
1277
ca12659b 1278$(UNIDATAFILES) : $(MINIPERL) $(CONFIGPM) ..\lib\unicore\mktables
27a8011f 1279 cd ..\lib\unicore && \
6ae7e459 1280 ..\$(MINIPERL) -I.. mktables -check $@ $(FIRSTUNIFILE)
ca12659b 1281
1282minitest : $(MINIPERL) $(GLOBEXE) $(CONFIGPM) utils $(UNIDATAFILES)
6c85d12e 1283 $(XCOPY) $(MINIPERL) ..\t\$(NULL)
1284 if exist ..\t\perl.exe del /f ..\t\perl.exe
1285 rename ..\t\miniperl.exe perl.exe
9e42cd94 1286 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1287 attrib -r ..\t\*.*
6c85d12e 1288 cd ..\t && \
1289 $(MINIPERL) -I..\lib harness base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t
9e42cd94 1290
1291test-prep : all utils
1292 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1293 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1294 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1295
1296test : test-prep
1297 cd ..\t
89087c85 1298 $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES)
9e42cd94 1299 cd ..\win32
1300
6ae7e459 1301test-reonly : reonly utils
1302 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1303 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1304 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1305 cd ..\t
a5ca303d 1306 $(PERLEXE) -I..\lib harness $(OPT) -re \bpat\b \breg \bre\b $(EXTRA)
6ae7e459 1307 cd ..\win32
1308
9e42cd94 1309test-notty : test-prep
1310 set PERL_SKIP_TTY_TEST=1
1311 cd ..\t
89087c85 1312 $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES)
9e42cd94 1313 cd ..\win32
1314
b4a93add 1315_test :
1316 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1317 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1318 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1319 cd ..\t
89087c85 1320 $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES)
b4a93add 1321 cd ..\win32
1322
b4dc1df6 1323_clean :
9e42cd94 1324 -@$(DEL) miniperlmain$(o)
1325 -@$(DEL) $(MINIPERL)
1326 -@$(DEL) perlglob$(o)
1327 -@$(DEL) perlmain$(o)
1328 -@$(DEL) config.w32
1329 -@$(DEL) config.h
1330 -@$(DEL) $(GLOBEXE)
1331 -@$(DEL) $(PERLEXE)
1332 -@$(DEL) $(WPERLEXE)
1333 -@$(DEL) $(PERLDLL)
1334 -@$(DEL) $(CORE_OBJ)
1335 -if exist $(MINIDIR) rmdir /s /q $(MINIDIR)
27a8011f 1336 -if exist $(UNIDATADIR1) rmdir /s /q $(UNIDATADIR1)
27a8011f 1337 -if exist $(UNIDATADIR2) rmdir /s /q $(UNIDATADIR2)
ca12659b 1338 -@$(DEL) $(UNIDATAFILES)
27a8011f 1339 -@$(DEL) $(WIN32_OBJ)
9e42cd94 1340 -@$(DEL) $(DLL_OBJ)
1341 -@$(DEL) $(X2P_OBJ)
1342 -@$(DEL) ..\*$(o) ..\*.lib ..\*.exp *$(o) *.lib *.exp *.res
1343 -@$(DEL) ..\t\*.exe ..\t\*.dll ..\t\*.bat
1344 -@$(DEL) ..\x2p\*.exe ..\x2p\*.bat
1345 -@$(DEL) *.ilk
1346 -@$(DEL) *.pdb
9e7cf449 1347 -@$(DEL) Extensions_static
9e42cd94 1348
b4dc1df6 1349clean : Extensions_clean _clean
1350
42e07562 1351realclean : Extensions_realclean MakePPPort_clean _clean
b4dc1df6 1352
9e42cd94 1353# Handy way to run perlbug -ok without having to install and run the
1354# installed perlbug. We don't re-run the tests here - we trust the user.
1355# Please *don't* use this unless all tests pass.
1356# If you want to report test failures, use "nmake nok" instead.
1357ok: utils
1358 $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)"
1359
1360okfile: utils
1361 $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)" -F perl.ok
1362
1363nok: utils
1364 $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)"
1365
1366nokfile: utils
1367 $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)" -F perl.nok