Carp was mostly unusable with Safe because it may require
[p5sagit/p5-mst-13.2.git] / win32 / makefile.mk
CommitLineData
1e71036e 1#
2# Makefile to build perl on Windows NT using DMAKE.
3# Supported compilers:
c623ac67 4# Visual C++ 2.0 through 6.0 (and possibly newer versions)
1e71036e 5# Borland C++ 5.02
6# Mingw32 with gcc-2.95.2 or better **experimental**
c623ac67 7# MS Platform SDK 64-bit compiler and tools **experimental**
1e71036e 8#
9# This is set up to build a perl.exe that runs off a shared library
78a7c709 10# (perl59.dll). Also makes individual DLLs for the XS extensions.
1e71036e 11#
12
13##
14## Make sure you read README.win32 *before* you mess with anything here!
15##
16
17##
18## Build configuration. Edit the values below to suit your needs.
19##
20
21#
22# Set these to wherever you want "dmake install" to put your
23# newly built perl.
24#
25INST_DRV *= c:
26INST_TOP *= $(INST_DRV)\perl
27
28#
29# Comment this out if you DON'T want your perl installation to be versioned.
30# This means that the new installation will overwrite any files from the
31# old installation at the same INST_TOP location. Leaving it enabled is
32# the safest route, as perl adds the extra version directory to all the
33# locations it installs files to. If you disable it, an alternative
34# versioned installation can be obtained by setting INST_TOP above to a
35# path that includes an arbitrary version string.
36#
ec25c072 37#INST_VER *= \5.9.2
1e71036e 38
39#
40# Comment this out if you DON'T want your perl installation to have
41# architecture specific components. This means that architecture-
42# specific files will be installed along with the architecture-neutral
43# files. Leaving it enabled is safer and more flexible, in case you
44# want to build multiple flavors of perl and install them together in
45# the same location. Commenting it out gives you a simpler
46# installation that is easier to understand for beginners.
47#
ec25c072 48#INST_ARCH *= \$(ARCHNAME)
1e71036e 49
50#
51# uncomment to enable multiple interpreters. This is need for fork()
2cbbe5a1 52# emulation and for thread support.
1e71036e 53#
54USE_MULTI *= define
55
56#
2cbbe5a1 57# Interpreter cloning/threads; now reasonably complete.
58# This should be enabled to get the fork() emulation.
59# This needs USE_MULTI above.
1e71036e 60#
61USE_ITHREADS *= define
62
63#
64# uncomment to enable the implicit "host" layer for all system calls
2cbbe5a1 65# made by perl. This needs USE_MULTI above.
66# This is also needed to get fork().
1e71036e 67#
68USE_IMP_SYS *= define
69
70#
2cbbe5a1 71# Comment out next assign to disable perl's I/O subsystem and use compiler's
72# stdio for IO - depending on your compiler vendor and run time library you may
73# then get a number of fails from make test i.e. bugs - complain to them not us ;-).
74# You will also be unable to take full advantage of perl5.8's support for multiple
75# encodings and may see lower IO performance. You have been warned.
4a9d6100 76USE_PERLIO *= define
77
78#
79# Comment this out if you don't want to enable large file support for
80# some reason. Should normally only be changed to maintain compatibility
81# with an older release of perl.
82USE_LARGE_FILES *= define
1e71036e 83
84#
1e71036e 85# uncomment exactly one of the following
86#
87# Visual C++ 2.x
88#CCTYPE *= MSVC20
89# Visual C++ > 2.x and < 6.x
90#CCTYPE *= MSVC
91# Visual C++ >= 6.x
92CCTYPE *= MSVC60
93# Borland 5.02 or later
94#CCTYPE *= BORLAND
95# mingw32+gcc-2.95.2 or better
96#CCTYPE *= GCC
7c5b6093 97# Uncomment this if you are using the latest MinGW release (2.0.0)
98# with gcc3.2
99#USE_GCC_V3_2 *= define
1e71036e 100
101#
102# uncomment this if your Borland compiler is older than v5.4.
c572eed0 103#BCCOLD = define
1e71036e 104#
105# uncomment this if you want to use Borland's VCL as your CRT
106#BCCVCL = define
107
108#
109# uncomment this if you are compiling under Windows 95/98 and command.com
110# (not needed if you're running under 4DOS/NT 6.01 or later)
111#IS_WIN95 *= define
112
113#
114# uncomment next line if you want debug version of perl (big,slow)
115# If not enabled, we automatically try to use maximum optimization
116# with all compilers that are known to have a working optimizer.
117#
2cbbe5a1 118#CFG *= Debug
1e71036e 119
120#
121# uncomment to enable use of PerlCRT.DLL when using the Visual C compiler.
122# It has patches that fix known bugs in older versions of MSVCRT.DLL.
123# This currently requires VC 5.0 with Service Pack 3 or later.
468f45d5 124# Get it from CPAN at http://www.cpan.org/authors/id/D/DO/DOUGL/
1e71036e 125# and follow the directions in the package to install.
126#
127# Not recommended if you have VC 6.x and you're not running Windows 9x.
128#
129#USE_PERLCRT *= define
130
131#
132# uncomment to enable linking with setargv.obj under the Visual C
133# compiler. Setting this options enables perl to expand wildcards in
134# arguments, but it may be harder to use alternate methods like
135# File::DosGlob that are more powerful. This option is supported only with
136# Visual C.
137#
138#USE_SETARGV *= define
139
140#
4ace4afb 141# if you want to have the crypt() builtin function implemented, leave this or
142# CRYPT_LIB uncommented. The fcrypt.c file named here contains a suitable
143# version of des_fcrypt().
1e71036e 144#
4ace4afb 145CRYPT_SRC *= fcrypt.c
1e71036e 146
147#
148# if you didn't set CRYPT_SRC and if you have des_fcrypt() available in a
149# library, uncomment this, and make sure the library exists (see README.win32)
150# Specify the full pathname of the library.
151#
152#CRYPT_LIB *= fcrypt.lib
153
154#
155# set this if you wish to use perl's malloc
156# WARNING: Turning this on/off WILL break binary compatibility with extensions
157# you may have compiled with/without it. Be prepared to recompile all
158# extensions if you change the default. Currently, this cannot be enabled
159# if you ask for USE_IMP_SYS above.
160#
161#PERL_MALLOC *= define
162
163#
164# set the install locations of the compiler include/libraries
165# Running VCVARS32.BAT is *required* when using Visual C.
166# Some versions of Visual C don't define MSVCDIR in the environment,
167# so you may have to set CCHOME explicitly (spaces in the path name should
168# not be quoted)
169#
c572eed0 170.IF "$(CCTYPE)" == "BORLAND"
171CCHOME *= C:\borland\bcc55
172.ELIF "$(CCTYPE)" == "GCC"
173CCHOME *= C:\MinGW
174.ELSE
1e71036e 175CCHOME *= $(MSVCDIR)
c572eed0 176.ENDIF
1e71036e 177CCINCDIR *= $(CCHOME)\include
178CCLIBDIR *= $(CCHOME)\lib
179
180#
181# Additional compiler flags can be specified here.
182#
183
184#
185# This should normally be disabled. Adding -DPERL_POLLUTE enables support
186# for old symbols by default, at the expense of extreme pollution. You most
187# probably just want to build modules that won't compile with
188# perl Makefile.PL POLLUTE=1
189# instead of enabling this. Please report such modules to the respective
190# authors.
191#
192#BUILDOPT += -DPERL_POLLUTE
193
194#
195# This should normally be disabled. Enabling it will disable the File::Glob
196# implementation of CORE::glob.
197#
198#BUILDOPT += -DPERL_EXTERNAL_GLOB
199
200#
201# This should normally be disabled. Enabling it causes perl to read scripts
202# in text mode (which is the 5.005 behavior) and will break ByteLoader.
203#BUILDOPT += -DPERL_TEXTMODE_SCRIPTS
204
205#
206# specify semicolon-separated list of extra directories that modules will
207# look for libraries (spaces in path names need not be quoted)
208#
209EXTRALIBDIRS *=
210
211#
212# set this to point to cmd.exe (only needed if you use some
213# alternate shell that doesn't grok cmd.exe style commands)
214#
215#SHELL *= g:\winnt\system32\cmd.exe
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
1e71036e 236PERL_MALLOC *= undef
237
1e71036e 238USE_MULTI *= undef
1e71036e 239USE_ITHREADS *= undef
240USE_IMP_SYS *= undef
241USE_PERLIO *= undef
4a9d6100 242USE_LARGE_FILES *= undef
1e71036e 243USE_PERLCRT *= undef
244
3db8f154 245.IF "$(USE_IMP_SYS)$(USE_MULTI)" == "defineundef"
1e71036e 246USE_MULTI != define
247.ENDIF
248
acfe0abc 249.IF "$(USE_ITHREADS)$(USE_MULTI)" == "defineundef"
1e71036e 250USE_MULTI != define
1e71036e 251.ENDIF
252
3db8f154 253.IF "$(USE_MULTI)" != "undef"
1e71036e 254BUILDOPT += -DPERL_IMPLICIT_CONTEXT
255.ENDIF
256
257.IF "$(USE_IMP_SYS)" != "undef"
258BUILDOPT += -DPERL_IMPLICIT_SYS
259.ENDIF
260
c623ac67 261.IMPORT .IGNORE : PROCESSOR_ARCHITECTURE PROCESSOR_ARCHITEW6432
1e71036e 262
263PROCESSOR_ARCHITECTURE *= x86
264
c623ac67 265.IF "$(WIN64)" == ""
266.IF "$(PROCESSOR_ARCHITEW6432)" != ""
267PROCESSOR_ARCHITECTURE != $(PROCESSOR_ARCHITEW6432)
268WIN64 = define
269.ELIF "$(PROCESSOR_ARCHITECTURE)" == "IA64"
270WIN64 = define
271.ELSE
272WIN64 = undef
273.ENDIF
274.ENDIF
275
3db8f154 276.IF "$(USE_MULTI)" == "define"
1e71036e 277ARCHNAME = MSWin32-$(PROCESSOR_ARCHITECTURE)-multi
278.ELSE
279.IF "$(USE_PERLIO)" == "define"
280ARCHNAME = MSWin32-$(PROCESSOR_ARCHITECTURE)-perlio
281.ELSE
282ARCHNAME = MSWin32-$(PROCESSOR_ARCHITECTURE)
283.ENDIF
284ARCHNAME = MSWin32-$(PROCESSOR_ARCHITECTURE)
285.ENDIF
286
287.IF "$(USE_ITHREADS)" == "define"
288ARCHNAME !:= $(ARCHNAME)-thread
289.ENDIF
290
291# Visual Studio 98 specific
292.IF "$(CCTYPE)" == "MSVC60"
293
294# VC 6.0 can load the socket dll on demand. Makes the test suite
295# run in about 10% less time.
296DELAYLOAD *= -DELAYLOAD:wsock32.dll -DELAYLOAD:shell32.dll delayimp.lib
297
298.IF "$(CFG)" == "Debug"
299.ELSE
300# VC 6.0 seems capable of compiling perl correctly with optimizations
301# enabled. Anything earlier fails tests.
302CFG *= Optimize
303.ENDIF
304.ENDIF
305
306ARCHDIR = ..\lib\$(ARCHNAME)
307COREDIR = ..\lib\CORE
308AUTODIR = ..\lib\auto
309LIBDIR = ..\lib
310EXTDIR = ..\ext
311PODDIR = ..\pod
312EXTUTILSDIR = $(LIBDIR)\ExtUtils
313
314#
315INST_SCRIPT = $(INST_TOP)$(INST_VER)\bin
316INST_BIN = $(INST_SCRIPT)$(INST_ARCH)
317INST_LIB = $(INST_TOP)$(INST_VER)\lib
318INST_ARCHLIB = $(INST_LIB)$(INST_ARCH)
319INST_COREDIR = $(INST_ARCHLIB)\CORE
320INST_POD = $(INST_LIB)\pod
321INST_HTML = $(INST_TOP)$(INST_VER)\html
322
323#
324# Programs to compile, build .lib files and link
325#
326
327.USESHELL :
328
329.IF "$(CCTYPE)" == "BORLAND"
330
331CC = bcc32
332.IF "$(BCCOLD)" != "define"
333LINK32 = ilink32
334.ELSE
335LINK32 = tlink32
336.ENDIF
337LIB32 = tlib /P128
338IMPLIB = implib -c
339RSC = rc
340
341#
342# Options
343#
344INCLUDES = -I$(COREDIR) -I.\include -I. -I.. -I"$(CCINCDIR)"
ba14dd9a 345#PCHFLAGS = -H -Hc -H=c:\temp\bcmoduls.pch
1e71036e 346DEFINES = -DWIN32 $(CRYPT_FLAG)
347LOCDEFS = -DPERLDLL -DPERL_CORE
348SUBSYS = console
349CXX_FLAG = -P
350
351LIBC = cw32mti.lib
352LIBFILES = $(CRYPT_LIB) import32.lib $(LIBC)
353
354.IF "$(CFG)" == "Debug"
355OPTIMIZE = -v -D_RTLDLL -DDEBUGGING
356LINK_DBG = -v
357.ELSE
358OPTIMIZE = -O2 -D_RTLDLL
359LINK_DBG =
360.ENDIF
361
362CFLAGS = -w -g0 -tWM -tWD $(INCLUDES) $(DEFINES) $(LOCDEFS) \
363 $(PCHFLAGS) $(OPTIMIZE)
364LINK_FLAGS = $(LINK_DBG) -L"$(INST_COREDIR)" -L"$(CCLIBDIR)"
365OBJOUT_FLAG = -o
366EXEOUT_FLAG = -e
367LIBOUT_FLAG =
368.IF "$(BCCOLD)" != "define"
369LINK_FLAGS += -Gn
370DEFINES += -D_MT -D__USELOCALES__ -D_WIN32_WINNT=0x0410
371.END
372.IF "$(BCCVCL)" == "define"
373LIBC = cp32mti.lib vcl.lib vcl50.lib vclx50.lib vcle50.lib
374LINK_FLAGS += -L"$(CCLIBDIR)\Release"
375.END
376
377
378.ELIF "$(CCTYPE)" == "GCC"
379
380CC = gcc
510ac311 381LINK32 = g++
7c5b6093 382.IF "$(USE_GCC_V3_2)" == "define"
383LINK32 = g++
384.END
1e71036e 385LIB32 = ar rc
386IMPLIB = dlltool
986f8adc 387RSC = windres
1e71036e 388
389i = .i
390o = .o
391a = .a
392
393#
394# Options
395#
396
397INCLUDES = -I.\include -I. -I.. -I$(COREDIR)
398DEFINES = -DWIN32 $(CRYPT_FLAG)
399LOCDEFS = -DPERLDLL -DPERL_CORE
400SUBSYS = console
401CXX_FLAG = -xc++
402
403LIBC = -lmsvcrt
404
405# same libs as MSVC
406LIBFILES = $(CRYPT_LIB) $(LIBC) \
407 -lmoldname -lkernel32 -luser32 -lgdi32 \
408 -lwinspool -lcomdlg32 -ladvapi32 -lshell32 -lole32 \
409 -loleaut32 -lnetapi32 -luuid -lwsock32 -lmpr \
410 -lwinmm -lversion -lodbc32
411
412.IF "$(CFG)" == "Debug"
413OPTIMIZE = -g -O2 -DDEBUGGING
414LINK_DBG = -g
415.ELSE
ec25c072 416OPTIMIZE = -s -O2
417LINK_DBG = -s
1e71036e 418.ENDIF
419
420CFLAGS = $(INCLUDES) $(DEFINES) $(LOCDEFS) $(OPTIMIZE)
421LINK_FLAGS = $(LINK_DBG) -L"$(INST_COREDIR)" -L"$(CCLIBDIR)"
422OBJOUT_FLAG = -o
423EXEOUT_FLAG = -o
424LIBOUT_FLAG =
425
426# NOTE: we assume that GCC uses MSVCRT.DLL
427BUILDOPT += -fno-strict-aliasing -DPERL_MSVCRT_READFIX
428
429.ELSE
430
431CC = cl
432LINK32 = link
433LIB32 = $(LINK32) -lib
434RSC = rc
435
436#
437# Options
438#
439
440INCLUDES = -I$(COREDIR) -I.\include -I. -I..
441#PCHFLAGS = -Fpc:\temp\vcmoduls.pch -YX
442DEFINES = -DWIN32 -D_CONSOLE -DNO_STRICT $(CRYPT_FLAG)
443LOCDEFS = -DPERLDLL -DPERL_CORE
444SUBSYS = console
445CXX_FLAG = -TP -GX
446
447.IF "$(USE_PERLCRT)" != "define"
448LIBC = msvcrt.lib
449.ELSE
450LIBC = PerlCRT.lib
451.ENDIF
452
1e71036e 453.IF "$(CFG)" == "Debug"
454.IF "$(CCTYPE)" == "MSVC20"
455OPTIMIZE = -Od -MD -Z7 -DDEBUGGING
1e71036e 456.ELSE
c623ac67 457OPTIMIZE = -O1 -MD -Zi -DDEBUGGING
1e71036e 458.ENDIF
c623ac67 459LINK_DBG = -debug
1e71036e 460.ELSE
ec25c072 461OPTIMIZE = -MD -Zi -DNDEBUG
462# we enable debug symbols in release builds also
463LINK_DBG = -debug -opt:ref,icf
464# you may want to enable this if you want COFF symbols in the executables
465# in addition to the PDB symbols. The default Dr. Watson that ships with
466# Windows can use the the former but not latter. The free WinDbg can be
467# installed to get better stack traces from just the PDB symbols, so we
468# avoid the bloat of COFF symbols by default.
469#LINK_DBG = $(LINK_DBG) -debugtype:both
d921a5fb 470.IF "$(WIN64)" == "define"
471# enable Whole Program Optimizations (WPO) and Link Time Code Generation (LTCG)
472OPTIMIZE += -Ox -GL
473LINK_DBG += -ltcg
1e71036e 474.ELSE
d921a5fb 475# -O1 yields smaller code, which turns out to be faster than -O2 on x86
476OPTIMIZE += -O1
477#OPTIMIZE += -O2
1e71036e 478.ENDIF
1e71036e 479.ENDIF
480
c623ac67 481.IF "$(WIN64)" == "define"
482DEFINES += -DWIN64 -DCONSERVATIVE
483OPTIMIZE += -Wp64 -Op
484.ENDIF
485
486.IF "$(USE_PERLCRT)" != "define"
487BUILDOPT += -DPERL_MSVCRT_READFIX
488.ENDIF
489
1e71036e 490LIBBASEFILES = $(CRYPT_LIB) \
491 oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.lib \
492 comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \
493 netapi32.lib uuid.lib wsock32.lib mpr.lib winmm.lib \
c623ac67 494 version.lib
495
496# win64 doesn't have some libs
497.IF "$(WIN64)" != "define"
498LIBBASEFILES += odbc32.lib odbccp32.lib
499.ENDIF
1e71036e 500
501# we add LIBC here, since we may be using PerlCRT.dll
502LIBFILES = $(LIBBASEFILES) $(LIBC)
503
504CFLAGS = -nologo -Gf -W3 $(INCLUDES) $(DEFINES) $(LOCDEFS) \
505 $(PCHFLAGS) $(OPTIMIZE)
506LINK_FLAGS = -nologo -nodefaultlib $(LINK_DBG) \
507 -libpath:"$(INST_COREDIR)" \
508 -machine:$(PROCESSOR_ARCHITECTURE)
509OBJOUT_FLAG = -Fo
510EXEOUT_FLAG = -Fe
511LIBOUT_FLAG = /out:
512
1e71036e 513.ENDIF
514
1e71036e 515CFLAGS_O = $(CFLAGS) $(BUILDOPT)
516
517# used to allow local linking flags that are not propogated into Config.pm,
518# currently unused
519# -- BKS, 12-12-1999
520PRIV_LINK_FLAGS *=
521BLINK_FLAGS = $(PRIV_LINK_FLAGS) $(LINK_FLAGS)
522
523#################### do not edit below this line #######################
524############# NO USER-SERVICEABLE PARTS BEYOND THIS POINT ##############
525
526o *= .obj
527a *= .lib
528
529LKPRE = INPUT (
530LKPOST = )
531
532#
533# Rules
534#
535
536.SUFFIXES : .c .i $(o) .dll $(a) .exe .rc .res
537
538.c$(o):
539 $(CC) -c $(null,$(<:d) $(NULL) -I$(<:d)) $(CFLAGS_O) $(OBJOUT_FLAG)$@ $<
540
541.c.i:
542 $(CC) -c $(null,$(<:d) $(NULL) -I$(<:d)) $(CFLAGS_O) -E $< >$@
543
544.y.c:
545 $(NOOP)
546
547$(o).dll:
548.IF "$(CCTYPE)" == "BORLAND"
549 $(LINK32) -Tpd -ap $(BLINK_FLAGS) c0d32$(o) $<,$@,,$(LIBFILES),$(*B).def
550 $(IMPLIB) $(*B).lib $@
551.ELIF "$(CCTYPE)" == "GCC"
552 $(LINK32) -o $@ $(BLINK_FLAGS) $< $(LIBFILES)
553 $(IMPLIB) --input-def $(*B).def --output-lib $(*B).a $@
554.ELSE
555 $(LINK32) -dll -subsystem:windows -implib:$(*B).lib -def:$(*B).def \
556 -out:$@ $(BLINK_FLAGS) $(LIBFILES) $< $(LIBPERL)
557.ENDIF
558
559.rc.res:
770c139a 560.IF "$(CCTYPE)" == "GCC"
561 $(RSC) --use-temp-file -i $< -o $@
562.ELSE
563 $(RSC) -i.. $<
564.ENDIF
1e71036e 565
566#
567# various targets
568MINIPERL = ..\miniperl.exe
569MINIDIR = .\mini
570PERLEXE = ..\perl.exe
571WPERLEXE = ..\wperl.exe
572GLOBEXE = ..\perlglob.exe
573CONFIGPM = ..\lib\Config.pm
574MINIMOD = ..\lib\ExtUtils\Miniperl.pm
575X2P = ..\x2p\a2p.exe
576
ca12659b 577# Unicode data files generated by mktables
578UNIDATAFILES = ..\lib\unicore\Canonical.pl ..\lib\unicore\Exact.pl \
579 ..\lib\unicore\Properties ..\lib\unicore\Decomposition.pl \
7ebf06b3 580 ..\lib\unicore\CombiningClass.pl ..\lib\unicore\Name.pl \
581 ..\lib\unicore\PVA.pl
ca12659b 582
583# Directories of Unicode data files generated by mktables
27a8011f 584UNIDATADIR1 = ..\lib\unicore\To
585UNIDATADIR2 = ..\lib\unicore\lib
ca12659b 586
3890b58f 587PERLEXE_ICO = .\perlexe.ico
588PERLEXE_RES = .\perlexe.res
589PERLDLL_RES =
590
1e71036e 591# Nominate a target which causes extensions to be re-built
592# This used to be $(PERLEXE), but at worst it is the .dll that they depend
593# on and really only the interface - i.e. the .def file used to export symbols
594# from the .dll
595PERLDEP = perldll.def
596
597
598PL2BAT = bin\pl2bat.pl
599GLOBBAT = bin\perlglob.bat
600
601UTILS = \
602 ..\utils\h2ph \
603 ..\utils\splain \
604 ..\utils\dprofpp \
605 ..\utils\perlbug \
606 ..\utils\pl2pm \
607 ..\utils\c2ph \
827a599d 608 ..\utils\pstruct \
1e71036e 609 ..\utils\h2xs \
610 ..\utils\perldoc \
611 ..\utils\perlcc \
612 ..\utils\perlivp \
613 ..\utils\libnetcfg \
827a599d 614 ..\utils\enc2xs \
615 ..\utils\piconv \
83cd6e83 616 ..\utils\cpan \
ea0e987d 617 ..\utils\xsubpp \
4b618757 618 ..\utils\prove \
ea0e987d 619 ..\utils\instmodsh \
1e71036e 620 ..\pod\checkpods \
621 ..\pod\pod2html \
622 ..\pod\pod2latex \
623 ..\pod\pod2man \
624 ..\pod\pod2text \
625 ..\pod\pod2usage \
626 ..\pod\podchecker \
627 ..\pod\podselect \
628 ..\x2p\find2perl \
827a599d 629 ..\x2p\psed \
1e71036e 630 ..\x2p\s2p \
1e71036e 631 bin\exetype.pl \
632 bin\runperl.pl \
633 bin\pl2bat.pl \
634 bin\perlglob.pl \
635 bin\search.pl
636
637.IF "$(CCTYPE)" == "BORLAND"
638
639CFGSH_TMPL = config.bc
640CFGH_TMPL = config_H.bc
641
642.ELIF "$(CCTYPE)" == "GCC"
643
644CFGSH_TMPL = config.gc
645CFGH_TMPL = config_H.gc
78a7c709 646PERLIMPLIB = ..\libperl59$(a)
1e71036e 647
648.ELSE
649
c623ac67 650.IF "$(WIN64)" == "define"
651CFGSH_TMPL = config.vc64
652CFGH_TMPL = config_H.vc64
653.ELSE
1e71036e 654CFGSH_TMPL = config.vc
655CFGH_TMPL = config_H.vc
c623ac67 656.ENDIF
1e71036e 657
658.ENDIF
659
660# makedef.pl must be updated if this changes, and this should normally
661# only change when there is an incompatible revision of the public API.
78a7c709 662PERLIMPLIB *= ..\perl59$(a)
663PERLDLL = ..\perl59.dll
1e71036e 664
665XCOPY = xcopy /f /r /i /d
666RCOPY = xcopy /f /r /i /e /d
667NOOP = @echo
668
669#
670# filenames given to xsubpp must have forward slashes (since it puts
671# full pathnames in #line strings)
672XSUBPP = ..\$(MINIPERL) -I..\..\lib ..\$(EXTUTILSDIR)\xsubpp \
673 -C++ -prototypes
674
675MICROCORE_SRC = \
676 ..\av.c \
677 ..\deb.c \
678 ..\doio.c \
679 ..\doop.c \
680 ..\dump.c \
681 ..\globals.c \
682 ..\gv.c \
683 ..\hv.c \
684 ..\locale.c \
685 ..\mg.c \
686 ..\numeric.c \
687 ..\op.c \
ff6de8cd 688 ..\pad.c \
1e71036e 689 ..\perl.c \
690 ..\perlapi.c \
691 ..\perly.c \
692 ..\pp.c \
693 ..\pp_ctl.c \
694 ..\pp_hot.c \
695 ..\pp_pack.c \
84d4ea48 696 ..\pp_sort.c \
1e71036e 697 ..\pp_sys.c \
10bc17b6 698 ..\reentr.c \
1e71036e 699 ..\regcomp.c \
700 ..\regexec.c \
701 ..\run.c \
702 ..\scope.c \
703 ..\sv.c \
704 ..\taint.c \
705 ..\toke.c \
706 ..\universal.c \
707 ..\utf8.c \
708 ..\util.c \
709 ..\xsutils.c
710
711EXTRACORE_SRC += perllib.c
712
713.IF "$(PERL_MALLOC)" == "define"
714EXTRACORE_SRC += ..\malloc.c
715.ENDIF
716
1e71036e 717EXTRACORE_SRC += ..\perlio.c
1e71036e 718
719WIN32_SRC = \
720 .\win32.c \
1e71036e 721 .\win32sck.c \
722 .\win32thread.c
723
b6d604f4 724# We need this for miniperl build unless we override canned
725# config.h #define building mini\*
726#.IF "$(USE_PERLIO)" == "define"
6ea0e807 727WIN32_SRC += .\win32io.c
b6d604f4 728#.ENDIF
6ea0e807 729
1e71036e 730.IF "$(CRYPT_SRC)" != ""
731WIN32_SRC += .\$(CRYPT_SRC)
732.ENDIF
733
734DLL_SRC = $(DYNALOADER).c
735
736X2P_SRC = \
737 ..\x2p\a2p.c \
738 ..\x2p\hash.c \
739 ..\x2p\str.c \
740 ..\x2p\util.c \
741 ..\x2p\walk.c
742
743CORE_NOCFG_H = \
744 ..\av.h \
745 ..\cop.h \
746 ..\cv.h \
747 ..\dosish.h \
748 ..\embed.h \
749 ..\form.h \
750 ..\gv.h \
751 ..\handy.h \
752 ..\hv.h \
753 ..\iperlsys.h \
754 ..\mg.h \
755 ..\nostdio.h \
756 ..\op.h \
757 ..\opcode.h \
758 ..\perl.h \
759 ..\perlapi.h \
760 ..\perlsdio.h \
761 ..\perlsfio.h \
762 ..\perly.h \
763 ..\pp.h \
764 ..\proto.h \
765 ..\regexp.h \
766 ..\scope.h \
767 ..\sv.h \
768 ..\thread.h \
769 ..\unixish.h \
770 ..\utf8.h \
771 ..\util.h \
772 ..\warnings.h \
773 ..\XSUB.h \
774 ..\EXTERN.h \
775 ..\perlvars.h \
776 ..\intrpvar.h \
777 ..\thrdvar.h \
778 .\include\dirent.h \
779 .\include\netdb.h \
780 .\include\sys\socket.h \
781 .\win32.h
782
783CORE_H = $(CORE_NOCFG_H) .\config.h
784
785MICROCORE_OBJ = $(MICROCORE_SRC:db:+$(o))
786CORE_OBJ = $(MICROCORE_OBJ) $(EXTRACORE_SRC:db:+$(o))
787WIN32_OBJ = $(WIN32_SRC:db:+$(o))
788MINICORE_OBJ = $(MINIDIR)\{$(MICROCORE_OBJ:f) miniperlmain$(o) perlio$(o)}
ba14dd9a 789MINIWIN32_OBJ = $(MINIDIR)\{$(WIN32_OBJ:f)}
1e71036e 790MINI_OBJ = $(MINICORE_OBJ) $(MINIWIN32_OBJ)
791DLL_OBJ = $(DLL_SRC:db:+$(o))
792X2P_OBJ = $(X2P_SRC:db:+$(o))
793
794PERLDLL_OBJ = $(CORE_OBJ)
795PERLEXE_OBJ = perlmain$(o)
796
797PERLDLL_OBJ += $(WIN32_OBJ) $(DLL_OBJ)
798
799.IF "$(USE_SETARGV)" != ""
800SETARGV_OBJ = setargv$(o)
801.ENDIF
802
803DYNAMIC_EXT = Socket IO Fcntl Opcode SDBM_File POSIX attrs Thread B re \
804 Data/Dumper Devel/Peek ByteLoader Devel/DProf File/Glob \
805 Sys/Hostname Storable Filter/Util/Call Encode \
e934609f 806 Digest/MD5 PerlIO/scalar MIME/Base64 Time/HiRes \
b4ad57f4 807 Unicode/Normalize Win32
1e71036e 808STATIC_EXT = DynaLoader
809NONXS_EXT = Errno
810
811DYNALOADER = $(EXTDIR)\DynaLoader\DynaLoader
812
813POD2HTML = $(PODDIR)\pod2html
814POD2MAN = $(PODDIR)\pod2man
815POD2LATEX = $(PODDIR)\pod2latex
816POD2TEXT = $(PODDIR)\pod2text
817
818# vars must be separated by "\t+~\t+", since we're using the tempfile
819# version of config_sh.pl (we were overflowing someone's buffer by
820# trying to fit them all on the command line)
821# -- BKS 10-17-1999
822CFG_VARS = \
823 INST_DRV=$(INST_DRV) ~ \
824 INST_TOP=$(INST_TOP:s/\/\\/) ~ \
825 INST_VER=$(INST_VER:s/\/\\/) ~ \
826 INST_ARCH=$(INST_ARCH) ~ \
827 archname=$(ARCHNAME) ~ \
828 cc=$(CC) ~ \
829 ld=$(LINK32) ~ \
830 ccflags=$(OPTIMIZE) $(DEFINES) $(BUILDOPT) ~ \
831 cf_email=$(EMAIL) ~ \
832 d_crypt=$(D_CRYPT) ~ \
833 d_mymalloc=$(PERL_MALLOC) ~ \
834 libs=$(LIBFILES:f) ~ \
835 incpath=$(CCINCDIR:s/\/\\/) ~ \
836 libperl=$(PERLIMPLIB:f) ~ \
837 libpth=$(CCLIBDIR:s/\/\\/);$(EXTRALIBDIRS:s/\/\\/) ~ \
838 libc=$(LIBC) ~ \
839 make=dmake ~ \
84c322f7 840 _o=$(o) ~ \
841 obj_ext=$(o) ~ \
842 _a=$(a) ~ \
843 lib_ext=$(a) ~ \
1e71036e 844 static_ext=$(STATIC_EXT) ~ \
7e0017d3 845 usethreads=$(USE_ITHREADS) ~ \
1e71036e 846 useithreads=$(USE_ITHREADS) ~ \
1e71036e 847 usemultiplicity=$(USE_MULTI) ~ \
848 useperlio=$(USE_PERLIO) ~ \
c7dd62f6 849 uselargefiles=$(USE_LARGE_FILES) ~ \
850 LINK_FLAGS=$(LINK_FLAGS:s/\/\\/) ~ \
1e71036e 851 optimize=$(OPTIMIZE)
852
853#
854# set up targets varying between Win95 and WinNT builds
855#
856
857.IF "$(IS_WIN95)" == "define"
858MK2 = .\makefile.95
859RIGHTMAKE = __switch_makefiles
860NOOP = @rem
861.ELSE
862MK2 = __not_needed
863RIGHTMAKE =
864.ENDIF
865
866#
867# Top targets
868#
869
870all : .\config.h $(GLOBEXE) $(MINIPERL) $(MK2) \
ca12659b 871 $(RIGHTMAKE) $(MINIMOD) $(CONFIGPM) $(UNIDATAFILES) $(PERLEXE) \
ba14dd9a 872 $(X2P) Extensions
1e71036e 873
874$(DYNALOADER)$(o) : $(DYNALOADER).c $(CORE_H) $(EXTDIR)\DynaLoader\dlutils.c
875
876#----------------------------------------------------------------
877
878#-------------------- BEGIN Win95 SPECIFIC ----------------------
879
880# this target is a jump-off point for Win95
881# 1. it switches to the Win95-specific makefile if it exists
882# (__do_switch_makefiles)
883# 2. it prints a message when the Win95-specific one finishes (__done)
884# 3. it then kills this makefile by trying to make __no_such_target
885
886__switch_makefiles: __do_switch_makefiles __done __no_such_target
887
888__do_switch_makefiles:
889.IF "$(NOTFIRST)" != "true"
890 if exist $(MK2) $(MAKE:s/-S//) -f $(MK2) $(MAKETARGETS) NOTFIRST=true
891.ELSE
892 $(NOOP)
893.ENDIF
894
895.IF "$(NOTFIRST)" != "true"
896__done:
897 @echo Build process complete. Ignore any errors after this message.
898 @echo Run "dmake test" to test and "dmake install" to install
899
900.ELSE
901# dummy targets for Win95-specific makefile
902
903__done:
904 $(NOOP)
905
906__no_such_target:
907 $(NOOP)
908
909.ENDIF
910
911# This target is used to generate the new makefile (.\makefile.95) for Win95
912
913.\makefile.95: .\makefile.mk
914 $(MINIPERL) genmk95.pl makefile.mk $(MK2)
915
916#--------------------- END Win95 SPECIFIC ---------------------
917
918# a blank target for when builds don't need to do certain things
919# this target added for Win95 port but used to keep the WinNT port able to
920# use this file
921__not_needed:
922 $(NOOP)
923
924$(GLOBEXE) : perlglob$(o)
925.IF "$(CCTYPE)" == "BORLAND"
926 $(CC) -c -w -v -tWM -I"$(CCINCDIR)" perlglob.c
927 $(LINK32) -Tpe -ap $(BLINK_FLAGS) c0x32$(o) perlglob$(o) \
928 "$(CCLIBDIR)\32BIT\wildargs$(o)",$@,,import32.lib cw32mt.lib,
929.ELIF "$(CCTYPE)" == "GCC"
930 $(LINK32) $(BLINK_FLAGS) -mconsole -o $@ perlglob$(o) $(LIBFILES)
931.ELSE
932 $(LINK32) $(BLINK_FLAGS) $(LIBFILES) -out:$@ -subsystem:$(SUBSYS) \
933 perlglob$(o) setargv$(o)
934.ENDIF
935
936perlglob$(o) : perlglob.c
937
938config.w32 : $(CFGSH_TMPL)
939 copy $(CFGSH_TMPL) config.w32
940
941.\config.h : $(CFGH_TMPL) $(CORE_NOCFG_H)
942 -del /f config.h
943 copy $(CFGH_TMPL) config.h
944
945..\config.sh : config.w32 $(MINIPERL) config_sh.PL FindExt.pm
946 $(MINIPERL) -I..\lib config_sh.PL --cfgsh-option-file \
947 $(mktmp $(CFG_VARS)) config.w32 > ..\config.sh
948
949# this target is for when changes to the main config.sh happen
950# edit config.{b,v,g}c and make this target once for each supported
951# compiler (e.g. `dmake CCTYPE=BORLAND regen_config_h`)
952regen_config_h:
953 perl config_sh.PL --cfgsh-option-file $(mktmp $(CFG_VARS)) \
954 $(CFGSH_TMPL) > ..\config.sh
955 -cd .. && del /f perl.exe
1018e26f 956 -cd .. && del /f perl*.dll
1e71036e 957 cd .. && perl configpm
958 -del /f $(CFGH_TMPL)
959 -mkdir $(COREDIR)
1018e26f 960 -perl config_h.PL "INST_VER=$(INST_VER)"
1e71036e 961 rename config.h $(CFGH_TMPL)
962
963$(CONFIGPM) : $(MINIPERL) ..\config.sh config_h.PL ..\minimod.pl
964 cd .. && miniperl configpm
965 if exist lib\* $(RCOPY) lib\*.* ..\lib\$(NULL)
966 $(XCOPY) ..\*.h $(COREDIR)\*.*
967 $(XCOPY) *.h $(COREDIR)\*.*
968 $(XCOPY) ..\ext\re\re.pm $(LIBDIR)\*.*
969 $(RCOPY) include $(COREDIR)\*.*
970 $(MINIPERL) -I..\lib config_h.PL "INST_VER=$(INST_VER)" \
971 || $(MAKE) $(MAKEMACROS) $(CONFIGPM) $(MAKEFILE)
972
973$(MINIPERL) : $(MINIDIR) $(MINI_OBJ) $(CRTIPMLIBS)
974.IF "$(CCTYPE)" == "BORLAND"
975 $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
976 @$(mktmp c0x32$(o) $(MINI_OBJ:s,\,\\),$(@:s,\,\\),,$(LIBFILES),)
977.ELIF "$(CCTYPE)" == "GCC"
978 $(LINK32) -v -mconsole -o $@ $(BLINK_FLAGS) \
979 $(mktmp $(LKPRE) $(MINI_OBJ:s,\,\\) $(LIBFILES) $(LKPOST))
980.ELSE
981 $(LINK32) -subsystem:console -out:$@ \
982 @$(mktmp $(BLINK_FLAGS) $(LIBFILES) $(MINI_OBJ:s,\,\\))
983.ENDIF
984
985$(MINIDIR) :
986 if not exist "$(MINIDIR)" mkdir "$(MINIDIR)"
987
988$(MINICORE_OBJ) : $(CORE_NOCFG_H)
989 $(CC) -c $(CFLAGS) -DPERL_EXTERNAL_GLOB $(OBJOUT_FLAG)$@ ..\$(*B).c
990
991$(MINIWIN32_OBJ) : $(CORE_NOCFG_H)
992 $(CC) -c $(CFLAGS) $(OBJOUT_FLAG)$@ $(*B).c
993
994# -DPERL_IMPLICIT_SYS needs C++ for perllib.c
995# rules wrapped in .IFs break Win9X build (we end up with unbalanced []s unless
996# unless the .IF is true), so instead we use a .ELSE with the default.
997# This is the only file that depends on perlhost.h, vmem.h, and vdir.h
998
999perllib$(o) : perllib.c .\perlhost.h .\vdir.h .\vmem.h
acfe0abc 1000.IF "$(USE_IMP_SYS)" == "define"
1e71036e 1001 $(CC) -c -I. $(CFLAGS_O) $(CXX_FLAG) $(OBJOUT_FLAG)$@ perllib.c
1002.ELSE
1003 $(CC) -c -I. $(CFLAGS_O) $(OBJOUT_FLAG)$@ perllib.c
1004.ENDIF
1005
1006# 1. we don't want to rebuild miniperl.exe when config.h changes
1007# 2. we don't want to rebuild miniperl.exe with non-default config.h
1008$(MINI_OBJ) : $(CORE_NOCFG_H)
1009
1010$(WIN32_OBJ) : $(CORE_H)
9848074e 1011
1e71036e 1012$(CORE_OBJ) : $(CORE_H)
9848074e 1013
1e71036e 1014$(DLL_OBJ) : $(CORE_H)
9848074e 1015
1e71036e 1016$(X2P_OBJ) : $(CORE_H)
1017
1018perldll.def : $(MINIPERL) $(CONFIGPM) ..\global.sym ..\pp.sym ..\makedef.pl
1019 $(MINIPERL) -w ..\makedef.pl PLATFORM=win32 $(OPTIMIZE) $(DEFINES) \
1020 $(BUILDOPT) CCTYPE=$(CCTYPE) > perldll.def
1021
1022$(PERLDLL): perldll.def $(PERLDLL_OBJ) $(PERLDLL_RES)
1023.IF "$(CCTYPE)" == "BORLAND"
1024 $(LINK32) -Tpd -ap $(BLINK_FLAGS) \
1025 @$(mktmp c0d32$(o) $(PERLDLL_OBJ:s,\,\\)\n \
1026 $@,\n \
1027 $(LIBFILES)\n \
1028 perldll.def\n)
1029 $(IMPLIB) $*.lib $@
1030.ELIF "$(CCTYPE)" == "GCC"
1031 $(LINK32) -mdll -o $@ -Wl,--base-file -Wl,perl.base $(BLINK_FLAGS) \
1032 $(mktmp $(LKPRE) $(PERLDLL_OBJ:s,\,\\) $(LIBFILES) $(LKPOST))
1033 dlltool --output-lib $(PERLIMPLIB) \
1034 --dllname $(PERLDLL:b).dll \
1035 --def perldll.def \
1036 --base-file perl.base \
1037 --output-exp perl.exp
1038 $(LINK32) -mdll -o $@ $(BLINK_FLAGS) \
1039 $(mktmp $(LKPRE) $(PERLDLL_OBJ:s,\,\\) $(LIBFILES) \
1040 perl.exp $(LKPOST))
1041.ELSE
1042 $(LINK32) -dll -def:perldll.def -out:$@ \
1043 @$(mktmp -base:0x28000000 $(BLINK_FLAGS) $(DELAYLOAD) $(LIBFILES) \
1044 $(PERLDLL_RES) $(PERLDLL_OBJ:s,\,\\))
1045.ENDIF
1046 $(XCOPY) $(PERLIMPLIB) $(COREDIR)
1047
4fe8ccd6 1048$(PERLEXE_ICO): $(MINIPERL) makeico.pl
e84ac4e2 1049 $(MINIPERL) makeico.pl > $@
1050
4fe8ccd6 1051$(PERLEXE_RES): perlexe.rc $(PERLEXE_ICO)
e84ac4e2 1052
1e71036e 1053$(MINIMOD) : $(MINIPERL) ..\minimod.pl
1054 cd .. && miniperl minimod.pl > lib\ExtUtils\Miniperl.pm
1055
1056..\x2p\a2p$(o) : ..\x2p\a2p.c
1057 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\a2p.c
1058
1059..\x2p\hash$(o) : ..\x2p\hash.c
1060 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\hash.c
1061
1062..\x2p\str$(o) : ..\x2p\str.c
1063 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\str.c
1064
1065..\x2p\util$(o) : ..\x2p\util.c
1066 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\util.c
1067
1068..\x2p\walk$(o) : ..\x2p\walk.c
1069 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\walk.c
1070
1071$(X2P) : $(MINIPERL) $(X2P_OBJ)
1072 $(MINIPERL) ..\x2p\find2perl.PL
1073 $(MINIPERL) ..\x2p\s2p.PL
1074.IF "$(CCTYPE)" == "BORLAND"
1075 $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
1076 @$(mktmp c0x32$(o) $(X2P_OBJ:s,\,\\),$(@:s,\,\\),,$(LIBFILES),)
1077.ELIF "$(CCTYPE)" == "GCC"
1078 $(LINK32) -v -o $@ $(BLINK_FLAGS) \
1079 $(mktmp $(LKPRE) $(X2P_OBJ:s,\,\\) $(LIBFILES) $(LKPOST))
1080.ELSE
1081 $(LINK32) -subsystem:console -out:$@ \
1082 @$(mktmp $(BLINK_FLAGS) $(LIBFILES) $(X2P_OBJ:s,\,\\))
1083.ENDIF
1084
1085perlmain.c : runperl.c
1086 copy runperl.c perlmain.c
1087
1088perlmain$(o) : perlmain.c
1089 $(CC) $(CFLAGS_O) -UPERLDLL $(OBJOUT_FLAG)$@ -c perlmain.c
1090
1091$(PERLEXE): $(PERLDLL) $(CONFIGPM) $(PERLEXE_OBJ) $(PERLEXE_RES)
1092.IF "$(CCTYPE)" == "BORLAND"
1093 $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
1094 @$(mktmp c0x32$(o) $(PERLEXE_OBJ:s,\,\\)\n \
1095 $(@:s,\,\\),\n \
1096 $(PERLIMPLIB) $(LIBFILES)\n)
1097.ELIF "$(CCTYPE)" == "GCC"
1098 $(LINK32) -mconsole -o $@ $(BLINK_FLAGS) \
1099 $(PERLEXE_OBJ) $(PERLIMPLIB) $(LIBFILES)
1100.ELSE
1101 $(LINK32) -subsystem:console -out:$@ -stack:0x1000000 $(BLINK_FLAGS) \
1102 $(LIBFILES) $(PERLEXE_OBJ) $(SETARGV_OBJ) $(PERLIMPLIB) $(PERLEXE_RES)
1103.ENDIF
1104 copy $(PERLEXE) $(WPERLEXE)
1105 $(MINIPERL) -I..\lib bin\exetype.pl $(WPERLEXE) WINDOWS
1106 copy splittree.pl ..
1107 $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR)
1108
1109$(DYNALOADER).c: $(MINIPERL) $(EXTDIR)\DynaLoader\dl_win32.xs $(CONFIGPM)
1110 if not exist $(AUTODIR) mkdir $(AUTODIR)
1111 cd $(EXTDIR)\$(*B) && ..\$(MINIPERL) -I..\..\lib $(*B)_pm.PL
1112 cd $(EXTDIR)\$(*B) && ..\$(MINIPERL) -I..\..\lib XSLoader_pm.PL
1113 $(XCOPY) $(EXTDIR)\$(*B)\$(*B).pm $(LIBDIR)\$(NULL)
1114 $(XCOPY) $(EXTDIR)\$(*B)\XSLoader.pm $(LIBDIR)\$(NULL)
1115 cd $(EXTDIR)\$(*B) && $(XSUBPP) dl_win32.xs > $(*B).c
1116 $(XCOPY) $(EXTDIR)\$(*B)\dlutils.c .
1117
1118$(EXTDIR)\DynaLoader\dl_win32.xs: dl_win32.xs
1119 copy dl_win32.xs $(EXTDIR)\DynaLoader\dl_win32.xs
1120
1121#----------------------------------------------------------------------------------
ba14dd9a 1122Extensions : buildext.pl $(PERLDEP) $(CONFIGPM)
1e71036e 1123 $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR)
b4ad57f4 1124 $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext
1e71036e 1125
6c85d12e 1126# Note: The next two targets explicitly remove a "blibdirs.exists" file that
1127# currerntly gets left behind, until CPAN RT Ticket #5616 is resolved.
1128
ba14dd9a 1129Extensions_clean :
1e71036e 1130 -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) clean
b4ad57f4 1131 -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext clean
6c85d12e 1132 -if exist $(EXTDIR)\SDBM_File\sdbm\blibdirs.exists del /f $(EXTDIR)\SDBM_File\sdbm\blibdirs.exists
1e71036e 1133
b4dc1df6 1134Extensions_realclean :
1135 -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) realclean
b4ad57f4 1136 -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) ext realclean
6c85d12e 1137 -if exist $(EXTDIR)\SDBM_File\sdbm\blibdirs.exists del /f $(EXTDIR)\SDBM_File\sdbm\blibdirs.exists
b4dc1df6 1138
1e71036e 1139#----------------------------------------------------------------------------------
1140
1141
1142doc: $(PERLEXE)
1143 $(PERLEXE) -I..\lib ..\installhtml --podroot=.. --htmldir=./html \
1144 --podpath=pod:lib:ext:utils --htmlroot="file://$(INST_HTML:s,:,|,)"\
1145 --libpod=perlfunc:perlguts:perlvar:perlrun:perlop --recurse
1146
b0b6bf2b 1147# Note that this next section is parsed (and regenerated) by pod/buildtoc
1148# so please check that script before making structural changes here
1e71036e 1149utils: $(PERLEXE) $(X2P)
1150 cd ..\utils && $(MAKE) PERL=$(MINIPERL)
1e71036e 1151 copy ..\vms\perlvms.pod ..\pod\perlvms.pod
b0b6bf2b 1152 copy ..\README.aix ..\pod\perlaix.pod
1153 copy ..\README.amiga ..\pod\perlamiga.pod
1154 copy ..\README.apollo ..\pod\perlapollo.pod
1155 copy ..\README.beos ..\pod\perlbeos.pod
1156 copy ..\README.bs2000 ..\pod\perlbs2000.pod
1157 copy ..\README.ce ..\pod\perlce.pod
1158 copy ..\README.cn ..\pod\perlcn.pod
1159 copy ..\README.cygwin ..\pod\perlcygwin.pod
1160 copy ..\README.dgux ..\pod\perldgux.pod
1161 copy ..\README.dos ..\pod\perldos.pod
1162 copy ..\README.epoc ..\pod\perlepoc.pod
1163 copy ..\README.freebsd ..\pod\perlfreebsd.pod
1164 copy ..\README.hpux ..\pod\perlhpux.pod
1165 copy ..\README.hurd ..\pod\perlhurd.pod
1166 copy ..\README.irix ..\pod\perlirix.pod
1167 copy ..\README.jp ..\pod\perljp.pod
1168 copy ..\README.ko ..\pod\perlko.pod
1169 copy ..\README.machten ..\pod\perlmachten.pod
1170 copy ..\README.macos ..\pod\perlmacos.pod
1171 copy ..\README.macosx ..\pod\perlmacosx.pod
1172 copy ..\README.mint ..\pod\perlmint.pod
1173 copy ..\README.mpeix ..\pod\perlmpeix.pod
1174 copy ..\README.netware ..\pod\perlnetware.pod
1175 copy ..\README.os2 ..\pod\perlos2.pod
1176 copy ..\README.os390 ..\pod\perlos390.pod
1177 copy ..\README.os400 ..\pod\perlos400.pod
1178 copy ..\README.plan9 ..\pod\perlplan9.pod
1179 copy ..\README.qnx ..\pod\perlqnx.pod
1180 copy ..\README.solaris ..\pod\perlsolaris.pod
1181 copy ..\README.tru64 ..\pod\perltru64.pod
1182 copy ..\README.tw ..\pod\perltw.pod
1183 copy ..\README.uts ..\pod\perluts.pod
1184 copy ..\README.vmesa ..\pod\perlvmesa.pod
1185 copy ..\README.vms ..\pod\perlvms.pod
1186 copy ..\README.vos ..\pod\perlvos.pod
1187 copy ..\README.win32 ..\pod\perlwin32.pod
e0eb806d 1188 copy ..\pod\perl592delta.pod ..\pod\perldelta.pod
b0b6bf2b 1189 cd ..\pod && $(MAKE) -f ..\win32\pod.mak converters
1e71036e 1190 cd ..\lib && $(PERLEXE) lib_pm.PL
1191 $(PERLEXE) $(PL2BAT) $(UTILS)
1192
b0b6bf2b 1193# Note that the pod cleanup in this next section is parsed (and regenerated
1194# by pod/buildtoc so please check that script before making changes here
1195
27a8011f 1196# the doubled rmdir calls are needed because older cmd shells
1197# don't understand /q
b4dc1df6 1198distclean: realclean
1e71036e 1199 -del /f $(MINIPERL) $(PERLEXE) $(PERLDLL) $(GLOBEXE) \
1200 $(PERLIMPLIB) ..\miniperl$(a) $(MINIMOD)
1201 -del /f *.def *.map
ca67812f 1202 -del /f $(DYNALOADER).c
1e71036e 1203 -del /f $(EXTDIR)\DynaLoader\dl_win32.xs
ca67812f 1204 -del /f $(EXTDIR)\DynaLoader\DynaLoader.pm
1205 -del /f $(EXTDIR)\DynaLoader\XSLoader.pm
1206 -del /f $(LIBDIR)\Encode.pm $(LIBDIR)\encoding.pm $(LIBDIR)\Errno.pm
1207 -del /f $(LIBDIR)\Config.pod $(LIBDIR)\POSIX.pod $(LIBDIR)\threads.pm
1e71036e 1208 -del /f $(LIBDIR)\.exists $(LIBDIR)\attrs.pm $(LIBDIR)\DynaLoader.pm
b4dc1df6 1209 -del /f $(LIBDIR)\XSLoader.pm $(LIBDIR)\lib.pm
1e71036e 1210 -del /f $(LIBDIR)\Fcntl.pm $(LIBDIR)\IO.pm $(LIBDIR)\Opcode.pm
a9bf183d 1211 -del /f $(LIBDIR)\ops.pm $(LIBDIR)\Safe.pm
1e71036e 1212 -del /f $(LIBDIR)\SDBM_File.pm $(LIBDIR)\Socket.pm $(LIBDIR)\POSIX.pm
1213 -del /f $(LIBDIR)\B.pm $(LIBDIR)\O.pm $(LIBDIR)\re.pm
ca67812f 1214 -del /f $(LIBDIR)\ByteLoader.pm
1e71036e 1215 -del /f $(LIBDIR)\Devel\Peek.pm $(LIBDIR)\Devel\DProf.pm
ca67812f 1216 -del /f $(LIBDIR)\Devel\PPPort.pm
1e71036e 1217 -del /f $(LIBDIR)\File\Glob.pm
1218 -del /f $(LIBDIR)\Storable.pm
1e71036e 1219 -del /f $(LIBDIR)\Digest\MD5.pm
ca67812f 1220 -del /f $(LIBDIR)\PerlIO\encoding.pm
1221 -del /f $(LIBDIR)\PerlIO\scalar.pm
1222 -del /f $(LIBDIR)\PerlIO\via.pm
1223 -del /f $(LIBDIR)\Sys\Hostname.pm
1224 -del /f $(LIBDIR)\Thread\Signal.pm $(LIBDIR)\Thread\Specific.pm
1225 -del /f $(LIBDIR)\threads\shared.pm
1e71036e 1226 -del /f $(LIBDIR)\Time\HiRes.pm
ac5ea531 1227 -del /f $(LIBDIR)\Unicode\Normalize.pm
b4ad57f4 1228 -del /f $(LIBDIR)\Win32.pm
522078af 1229 -if exist $(LIBDIR)\IO rmdir /s /q $(LIBDIR)\IO
1230 -if exist $(LIBDIR)\IO rmdir /s $(LIBDIR)\IO
1231 -if exist $(LIBDIR)\B rmdir /s /q $(LIBDIR)\B
1232 -if exist $(LIBDIR)\B rmdir /s $(LIBDIR)\B
1233 -if exist $(LIBDIR)\Data rmdir /s /q $(LIBDIR)\Data
1234 -if exist $(LIBDIR)\Data rmdir /s $(LIBDIR)\Data
ca67812f 1235 -if exist $(LIBDIR)\Encode rmdir /s /q $(LIBDIR)\Encode
1236 -if exist $(LIBDIR)\Encode rmdir /s $(LIBDIR)\Encode
522078af 1237 -if exist $(LIBDIR)\Filter\Util rmdir /s /q $(LIBDIR)\Filter\Util
1238 -if exist $(LIBDIR)\Filter\Util rmdir /s $(LIBDIR)\Filter\Util
522078af 1239 -if exist $(LIBDIR)\MIME rmdir /s /q $(LIBDIR)\MIME
1240 -if exist $(LIBDIR)\MIME rmdir /s $(LIBDIR)\MIME
1241 -if exist $(LIBDIR)\List rmdir /s /q $(LIBDIR)\List
1242 -if exist $(LIBDIR)\List rmdir /s $(LIBDIR)\List
1243 -if exist $(LIBDIR)\Scalar rmdir /s /q $(LIBDIR)\Scalar
1244 -if exist $(LIBDIR)\Scalar rmdir /s $(LIBDIR)\Scalar
1245 -if exist $(LIBDIR)\XS rmdir /s /q $(LIBDIR)\XS
1246 -if exist $(LIBDIR)\XS rmdir /s $(LIBDIR)\XS
1e71036e 1247 -cd $(PODDIR) && del /f *.html *.bat checkpods \
4cb44f92 1248 perlaix.pod perlamiga.pod perlapollo.pod perlbeos.pod \
1249 perlbs2000.pod perlce.pod perlcn.pod perlcygwin.pod \
1400179b 1250 perldelta.pod perldgux.pod perldos.pod perlepoc.pod \
1251 perlfreebsd.pod perlhpux.pod perlhurd.pod perlirix.pod \
1252 perljp.pod perlko.pod perlmachten.pod perlmacos.pod \
1253 perlmacosx.pod perlmint.pod perlmpeix.pod perlnetware.pod \
1254 perlos2.pod perlos390.pod perlos400.pod perlplan9.pod \
1255 perlqnx.pod perlsolaris.pod perltru64.pod perltw.pod \
e0eb806d 1256 perluts.pod perlvmesa.pod perlvms.pod perlvms.pod perlvos.pod \
1257 perlwin32.pod \
4cb44f92 1258 pod2html pod2latex pod2man pod2text pod2usage \
1e71036e 1259 podchecker podselect
827a599d 1260 -cd ..\utils && del /f h2ph splain perlbug pl2pm c2ph pstruct h2xs \
ea0e987d 1261 perldoc perlivp dprofpp perlcc libnetcfg enc2xs piconv cpan *.bat \
4b618757 1262 xsubpp instmodsh prove
827a599d 1263 -cd ..\x2p && del /f find2perl s2p psed *.bat
1e71036e 1264 -del /f ..\config.sh ..\splittree.pl perlmain.c dlutils.c config.h.new
1265 -del /f $(CONFIGPM)
1266 -del /f bin\*.bat
ec25c072 1267 -del /f $(PERLEXE_ICO) perl.base
827a599d 1268 -cd .. && del /s *$(a) *.map *.pdb *.ilk *.bs *$(o) .exists pm_to_blib
1269 -cd $(EXTDIR) && del /s *.def Makefile Makefile.old
522078af 1270 -if exist $(AUTODIR) rmdir /s /q $(AUTODIR)
1271 -if exist $(AUTODIR) rmdir /s $(AUTODIR)
1272 -if exist $(COREDIR) rmdir /s /q $(COREDIR)
1273 -if exist $(COREDIR) rmdir /s $(COREDIR)
1e71036e 1274
1275install : all installbare installhtml
1276
1277installbare : $(RIGHTMAKE) utils
1278 $(PERLEXE) ..\installperl
1279 if exist $(WPERLEXE) $(XCOPY) $(WPERLEXE) $(INST_BIN)\*.*
1280 $(XCOPY) $(GLOBEXE) $(INST_BIN)\*.*
ec25c072 1281 if exist ..\perl*.pdb $(XCOPY) ..\perl*.pdb $(INST_BIN)\*.*
1282 if exist ..\x2p\a2p.pdb $(XCOPY) ..\x2p\a2p.pdb $(INST_BIN)\*.*
1e71036e 1283 $(XCOPY) bin\*.bat $(INST_SCRIPT)\*.*
1284
1285installhtml : doc
1286 $(RCOPY) html\*.* $(INST_HTML)\*.*
1287
1288inst_lib : $(CONFIGPM)
1289 copy splittree.pl ..
1290 $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR)
1291 $(RCOPY) ..\lib $(INST_LIB)\*.*
1292
ca12659b 1293$(UNIDATAFILES) : $(MINIPERL) $(CONFIGPM) ..\lib\unicore\mktables
27a8011f 1294 cd ..\lib\unicore && \
1295 ..\$(MINIPERL) -I.. mktables
ca12659b 1296
1297minitest : $(MINIPERL) $(GLOBEXE) $(CONFIGPM) $(UNIDATAFILES) utils
6c85d12e 1298 $(XCOPY) $(MINIPERL) ..\t\$(NULL)
1299 if exist ..\t\perl.exe del /f ..\t\perl.exe
1300 rename ..\t\miniperl.exe perl.exe
1e71036e 1301.IF "$(CCTYPE)" == "BORLAND"
1302 $(XCOPY) $(GLOBBAT) ..\t\$(NULL)
1303.ELSE
1304 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1305.ENDIF
1306 attrib -r ..\t\*.*
1e71036e 1307 cd ..\t && \
6c85d12e 1308 $(MINIPERL) -I..\lib harness base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t
1e71036e 1309
1310test-prep : all utils
1311 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1312 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1313.IF "$(CCTYPE)" == "BORLAND"
1314 $(XCOPY) $(GLOBBAT) ..\t\$(NULL)
1315.ELSE
1316 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1317.ENDIF
1318
1319test : $(RIGHTMAKE) test-prep
1320 cd ..\t && $(PERLEXE) -I..\lib harness
1321
1322test-notty : test-prep
1323 set PERL_SKIP_TTY_TEST=1 && \
1324 cd ..\t && $(PERLEXE) -I.\lib harness
1325
b4a93add 1326_test : $(RIGHTMAKE)
a01cf021 1327 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1328 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
b4a93add 1329.IF "$(CCTYPE)" == "BORLAND"
a01cf021 1330 $(XCOPY) $(GLOBBAT) ..\t\$(NULL)
b4a93add 1331.ELSE
a01cf021 1332 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
b4a93add 1333.ENDIF
a01cf021 1334 cd ..\t && $(PERLEXE) -I..\lib harness
b4a93add 1335
27a8011f 1336# the doubled rmdir calls are needed because older cmd shells
1337# don't understand /q
b4dc1df6 1338_clean :
1e71036e 1339 -@erase miniperlmain$(o)
1340 -@erase $(MINIPERL)
1341 -@erase perlglob$(o)
1342 -@erase perlmain$(o)
1343 -@erase config.w32
1344 -@erase /f config.h
1345 -@erase $(GLOBEXE)
1346 -@erase $(PERLEXE)
1347 -@erase $(WPERLEXE)
1348 -@erase $(PERLDLL)
1349 -@erase $(CORE_OBJ)
522078af 1350 -if exist $(MINIDIR) rmdir /s /q $(MINIDIR)
1351 -if exist $(MINIDIR) rmdir /s $(MINIDIR)
27a8011f 1352 -if exist $(UNIDATADIR1) rmdir /s /q $(UNIDATADIR1)
1353 -if exist $(UNIDATADIR1) rmdir /s $(UNIDATADIR1)
1354 -if exist $(UNIDATADIR2) rmdir /s /q $(UNIDATADIR2)
1355 -if exist $(UNIDATADIR2) rmdir /s $(UNIDATADIR2)
ca12659b 1356 -@erase $(UNIDATAFILES)
1e71036e 1357 -@erase $(WIN32_OBJ)
1358 -@erase $(DLL_OBJ)
1359 -@erase $(X2P_OBJ)
1360 -@erase ..\*$(o) ..\*$(a) ..\*.exp *$(o) *$(a) *.exp *.res
1361 -@erase ..\t\*.exe ..\t\*.dll ..\t\*.bat
1362 -@erase ..\x2p\*.exe ..\x2p\*.bat
1363 -@erase *.ilk
1364 -@erase *.pdb
1365
b4dc1df6 1366clean : Extensions_clean _clean
1367
1368realclean : Extensions_realclean _clean
1369
1e71036e 1370# Handy way to run perlbug -ok without having to install and run the
1371# installed perlbug. We don't re-run the tests here - we trust the user.
1372# Please *don't* use this unless all tests pass.
1373# If you want to report test failures, use "dmake nok" instead.
1374ok: utils
1375 $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)"
1376
1377okfile: utils
1378 $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)" -F perl.ok
1379
1380nok: utils
1381 $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)"
1382
1383nokfile: utils
1384 $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)" -F perl.nok