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