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