Upgrade to Test::Harness 2.38.
[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#
7c5b6093 37INST_VER *= \5.9.0
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#
48INST_ARCH *= \$(ARCHNAME)
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
381LINK32 = gcc
7c5b6093 382.IF "$(USE_GCC_V3_2)" == "define"
383LINK32 = g++
384.END
1e71036e 385LIB32 = ar rc
386IMPLIB = dlltool
387RSC = rc
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
416OPTIMIZE = -g -O2
417LINK_DBG = -g
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
453PERLEXE_RES =
454PERLDLL_RES =
455
456.IF "$(CFG)" == "Debug"
457.IF "$(CCTYPE)" == "MSVC20"
458OPTIMIZE = -Od -MD -Z7 -DDEBUGGING
1e71036e 459.ELSE
c623ac67 460OPTIMIZE = -O1 -MD -Zi -DDEBUGGING
1e71036e 461.ENDIF
c623ac67 462LINK_DBG = -debug
1e71036e 463.ELSE
d921a5fb 464OPTIMIZE = -MD -DNDEBUG
465LINK_DBG = -release
466.IF "$(WIN64)" == "define"
467# enable Whole Program Optimizations (WPO) and Link Time Code Generation (LTCG)
468OPTIMIZE += -Ox -GL
469LINK_DBG += -ltcg
1e71036e 470.ELSE
d921a5fb 471# -O1 yields smaller code, which turns out to be faster than -O2 on x86
472OPTIMIZE += -O1
473#OPTIMIZE += -O2
1e71036e 474.ENDIF
1e71036e 475.ENDIF
476
c623ac67 477.IF "$(WIN64)" == "define"
478DEFINES += -DWIN64 -DCONSERVATIVE
479OPTIMIZE += -Wp64 -Op
480.ENDIF
481
482.IF "$(USE_PERLCRT)" != "define"
483BUILDOPT += -DPERL_MSVCRT_READFIX
484.ENDIF
485
1e71036e 486LIBBASEFILES = $(CRYPT_LIB) \
487 oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.lib \
488 comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \
489 netapi32.lib uuid.lib wsock32.lib mpr.lib winmm.lib \
c623ac67 490 version.lib
491
492# win64 doesn't have some libs
493.IF "$(WIN64)" != "define"
494LIBBASEFILES += odbc32.lib odbccp32.lib
495.ENDIF
1e71036e 496
497# we add LIBC here, since we may be using PerlCRT.dll
498LIBFILES = $(LIBBASEFILES) $(LIBC)
499
500CFLAGS = -nologo -Gf -W3 $(INCLUDES) $(DEFINES) $(LOCDEFS) \
501 $(PCHFLAGS) $(OPTIMIZE)
502LINK_FLAGS = -nologo -nodefaultlib $(LINK_DBG) \
503 -libpath:"$(INST_COREDIR)" \
504 -machine:$(PROCESSOR_ARCHITECTURE)
505OBJOUT_FLAG = -Fo
506EXEOUT_FLAG = -Fe
507LIBOUT_FLAG = /out:
508
1e71036e 509.ENDIF
510
1e71036e 511CFLAGS_O = $(CFLAGS) $(BUILDOPT)
512
513# used to allow local linking flags that are not propogated into Config.pm,
514# currently unused
515# -- BKS, 12-12-1999
516PRIV_LINK_FLAGS *=
517BLINK_FLAGS = $(PRIV_LINK_FLAGS) $(LINK_FLAGS)
518
519#################### do not edit below this line #######################
520############# NO USER-SERVICEABLE PARTS BEYOND THIS POINT ##############
521
522o *= .obj
523a *= .lib
524
525LKPRE = INPUT (
526LKPOST = )
527
528#
529# Rules
530#
531
532.SUFFIXES : .c .i $(o) .dll $(a) .exe .rc .res
533
534.c$(o):
535 $(CC) -c $(null,$(<:d) $(NULL) -I$(<:d)) $(CFLAGS_O) $(OBJOUT_FLAG)$@ $<
536
537.c.i:
538 $(CC) -c $(null,$(<:d) $(NULL) -I$(<:d)) $(CFLAGS_O) -E $< >$@
539
540.y.c:
541 $(NOOP)
542
543$(o).dll:
544.IF "$(CCTYPE)" == "BORLAND"
545 $(LINK32) -Tpd -ap $(BLINK_FLAGS) c0d32$(o) $<,$@,,$(LIBFILES),$(*B).def
546 $(IMPLIB) $(*B).lib $@
547.ELIF "$(CCTYPE)" == "GCC"
548 $(LINK32) -o $@ $(BLINK_FLAGS) $< $(LIBFILES)
549 $(IMPLIB) --input-def $(*B).def --output-lib $(*B).a $@
550.ELSE
551 $(LINK32) -dll -subsystem:windows -implib:$(*B).lib -def:$(*B).def \
552 -out:$@ $(BLINK_FLAGS) $(LIBFILES) $< $(LIBPERL)
553.ENDIF
554
555.rc.res:
556 $(RSC) -i.. $<
557
558#
559# various targets
560MINIPERL = ..\miniperl.exe
561MINIDIR = .\mini
562PERLEXE = ..\perl.exe
563WPERLEXE = ..\wperl.exe
564GLOBEXE = ..\perlglob.exe
565CONFIGPM = ..\lib\Config.pm
566MINIMOD = ..\lib\ExtUtils\Miniperl.pm
567X2P = ..\x2p\a2p.exe
568
569# Nominate a target which causes extensions to be re-built
570# This used to be $(PERLEXE), but at worst it is the .dll that they depend
571# on and really only the interface - i.e. the .def file used to export symbols
572# from the .dll
573PERLDEP = perldll.def
574
575
576PL2BAT = bin\pl2bat.pl
577GLOBBAT = bin\perlglob.bat
578
579UTILS = \
580 ..\utils\h2ph \
581 ..\utils\splain \
582 ..\utils\dprofpp \
583 ..\utils\perlbug \
584 ..\utils\pl2pm \
585 ..\utils\c2ph \
827a599d 586 ..\utils\pstruct \
1e71036e 587 ..\utils\h2xs \
588 ..\utils\perldoc \
589 ..\utils\perlcc \
590 ..\utils\perlivp \
591 ..\utils\libnetcfg \
827a599d 592 ..\utils\enc2xs \
593 ..\utils\piconv \
83cd6e83 594 ..\utils\cpan \
ea0e987d 595 ..\utils\xsubpp \
596 ..\utils\instmodsh \
1e71036e 597 ..\pod\checkpods \
598 ..\pod\pod2html \
599 ..\pod\pod2latex \
600 ..\pod\pod2man \
601 ..\pod\pod2text \
602 ..\pod\pod2usage \
603 ..\pod\podchecker \
604 ..\pod\podselect \
605 ..\x2p\find2perl \
827a599d 606 ..\x2p\psed \
1e71036e 607 ..\x2p\s2p \
1e71036e 608 bin\exetype.pl \
609 bin\runperl.pl \
610 bin\pl2bat.pl \
611 bin\perlglob.pl \
612 bin\search.pl
613
614.IF "$(CCTYPE)" == "BORLAND"
615
616CFGSH_TMPL = config.bc
617CFGH_TMPL = config_H.bc
618
619.ELIF "$(CCTYPE)" == "GCC"
620
621CFGSH_TMPL = config.gc
622CFGH_TMPL = config_H.gc
78a7c709 623PERLIMPLIB = ..\libperl59$(a)
1e71036e 624
625.ELSE
626
c623ac67 627.IF "$(WIN64)" == "define"
628CFGSH_TMPL = config.vc64
629CFGH_TMPL = config_H.vc64
630.ELSE
1e71036e 631CFGSH_TMPL = config.vc
632CFGH_TMPL = config_H.vc
c623ac67 633.ENDIF
1e71036e 634
635.ENDIF
636
637# makedef.pl must be updated if this changes, and this should normally
638# only change when there is an incompatible revision of the public API.
78a7c709 639PERLIMPLIB *= ..\perl59$(a)
640PERLDLL = ..\perl59.dll
1e71036e 641
642XCOPY = xcopy /f /r /i /d
643RCOPY = xcopy /f /r /i /e /d
644NOOP = @echo
645
646#
647# filenames given to xsubpp must have forward slashes (since it puts
648# full pathnames in #line strings)
649XSUBPP = ..\$(MINIPERL) -I..\..\lib ..\$(EXTUTILSDIR)\xsubpp \
650 -C++ -prototypes
651
652MICROCORE_SRC = \
653 ..\av.c \
654 ..\deb.c \
655 ..\doio.c \
656 ..\doop.c \
657 ..\dump.c \
658 ..\globals.c \
659 ..\gv.c \
660 ..\hv.c \
661 ..\locale.c \
662 ..\mg.c \
663 ..\numeric.c \
664 ..\op.c \
ff6de8cd 665 ..\pad.c \
1e71036e 666 ..\perl.c \
667 ..\perlapi.c \
668 ..\perly.c \
669 ..\pp.c \
670 ..\pp_ctl.c \
671 ..\pp_hot.c \
672 ..\pp_pack.c \
84d4ea48 673 ..\pp_sort.c \
1e71036e 674 ..\pp_sys.c \
10bc17b6 675 ..\reentr.c \
1e71036e 676 ..\regcomp.c \
677 ..\regexec.c \
678 ..\run.c \
679 ..\scope.c \
680 ..\sv.c \
681 ..\taint.c \
682 ..\toke.c \
683 ..\universal.c \
684 ..\utf8.c \
685 ..\util.c \
686 ..\xsutils.c
687
688EXTRACORE_SRC += perllib.c
689
690.IF "$(PERL_MALLOC)" == "define"
691EXTRACORE_SRC += ..\malloc.c
692.ENDIF
693
1e71036e 694EXTRACORE_SRC += ..\perlio.c
1e71036e 695
696WIN32_SRC = \
697 .\win32.c \
1e71036e 698 .\win32sck.c \
699 .\win32thread.c
700
b6d604f4 701# We need this for miniperl build unless we override canned
702# config.h #define building mini\*
703#.IF "$(USE_PERLIO)" == "define"
6ea0e807 704WIN32_SRC += .\win32io.c
b6d604f4 705#.ENDIF
6ea0e807 706
1e71036e 707.IF "$(CRYPT_SRC)" != ""
708WIN32_SRC += .\$(CRYPT_SRC)
709.ENDIF
710
711DLL_SRC = $(DYNALOADER).c
712
713X2P_SRC = \
714 ..\x2p\a2p.c \
715 ..\x2p\hash.c \
716 ..\x2p\str.c \
717 ..\x2p\util.c \
718 ..\x2p\walk.c
719
720CORE_NOCFG_H = \
721 ..\av.h \
722 ..\cop.h \
723 ..\cv.h \
724 ..\dosish.h \
725 ..\embed.h \
726 ..\form.h \
727 ..\gv.h \
728 ..\handy.h \
729 ..\hv.h \
730 ..\iperlsys.h \
731 ..\mg.h \
732 ..\nostdio.h \
733 ..\op.h \
734 ..\opcode.h \
735 ..\perl.h \
736 ..\perlapi.h \
737 ..\perlsdio.h \
738 ..\perlsfio.h \
739 ..\perly.h \
740 ..\pp.h \
741 ..\proto.h \
742 ..\regexp.h \
743 ..\scope.h \
744 ..\sv.h \
745 ..\thread.h \
746 ..\unixish.h \
747 ..\utf8.h \
748 ..\util.h \
749 ..\warnings.h \
750 ..\XSUB.h \
751 ..\EXTERN.h \
752 ..\perlvars.h \
753 ..\intrpvar.h \
754 ..\thrdvar.h \
755 .\include\dirent.h \
756 .\include\netdb.h \
757 .\include\sys\socket.h \
758 .\win32.h
759
760CORE_H = $(CORE_NOCFG_H) .\config.h
761
762MICROCORE_OBJ = $(MICROCORE_SRC:db:+$(o))
763CORE_OBJ = $(MICROCORE_OBJ) $(EXTRACORE_SRC:db:+$(o))
764WIN32_OBJ = $(WIN32_SRC:db:+$(o))
765MINICORE_OBJ = $(MINIDIR)\{$(MICROCORE_OBJ:f) miniperlmain$(o) perlio$(o)}
ba14dd9a 766MINIWIN32_OBJ = $(MINIDIR)\{$(WIN32_OBJ:f)}
1e71036e 767MINI_OBJ = $(MINICORE_OBJ) $(MINIWIN32_OBJ)
768DLL_OBJ = $(DLL_SRC:db:+$(o))
769X2P_OBJ = $(X2P_SRC:db:+$(o))
770
771PERLDLL_OBJ = $(CORE_OBJ)
772PERLEXE_OBJ = perlmain$(o)
773
774PERLDLL_OBJ += $(WIN32_OBJ) $(DLL_OBJ)
775
776.IF "$(USE_SETARGV)" != ""
777SETARGV_OBJ = setargv$(o)
778.ENDIF
779
780DYNAMIC_EXT = Socket IO Fcntl Opcode SDBM_File POSIX attrs Thread B re \
781 Data/Dumper Devel/Peek ByteLoader Devel/DProf File/Glob \
782 Sys/Hostname Storable Filter/Util/Call Encode \
e934609f 783 Digest/MD5 PerlIO/scalar MIME/Base64 Time/HiRes \
ac5ea531 784 Unicode/Normalize
1e71036e 785STATIC_EXT = DynaLoader
786NONXS_EXT = Errno
787
788DYNALOADER = $(EXTDIR)\DynaLoader\DynaLoader
789
790POD2HTML = $(PODDIR)\pod2html
791POD2MAN = $(PODDIR)\pod2man
792POD2LATEX = $(PODDIR)\pod2latex
793POD2TEXT = $(PODDIR)\pod2text
794
795# vars must be separated by "\t+~\t+", since we're using the tempfile
796# version of config_sh.pl (we were overflowing someone's buffer by
797# trying to fit them all on the command line)
798# -- BKS 10-17-1999
799CFG_VARS = \
800 INST_DRV=$(INST_DRV) ~ \
801 INST_TOP=$(INST_TOP:s/\/\\/) ~ \
802 INST_VER=$(INST_VER:s/\/\\/) ~ \
803 INST_ARCH=$(INST_ARCH) ~ \
804 archname=$(ARCHNAME) ~ \
805 cc=$(CC) ~ \
806 ld=$(LINK32) ~ \
807 ccflags=$(OPTIMIZE) $(DEFINES) $(BUILDOPT) ~ \
808 cf_email=$(EMAIL) ~ \
809 d_crypt=$(D_CRYPT) ~ \
810 d_mymalloc=$(PERL_MALLOC) ~ \
811 libs=$(LIBFILES:f) ~ \
812 incpath=$(CCINCDIR:s/\/\\/) ~ \
813 libperl=$(PERLIMPLIB:f) ~ \
814 libpth=$(CCLIBDIR:s/\/\\/);$(EXTRALIBDIRS:s/\/\\/) ~ \
815 libc=$(LIBC) ~ \
816 make=dmake ~ \
84c322f7 817 _o=$(o) ~ \
818 obj_ext=$(o) ~ \
819 _a=$(a) ~ \
820 lib_ext=$(a) ~ \
1e71036e 821 static_ext=$(STATIC_EXT) ~ \
7e0017d3 822 usethreads=$(USE_ITHREADS) ~ \
1e71036e 823 useithreads=$(USE_ITHREADS) ~ \
1e71036e 824 usemultiplicity=$(USE_MULTI) ~ \
825 useperlio=$(USE_PERLIO) ~ \
c7dd62f6 826 uselargefiles=$(USE_LARGE_FILES) ~ \
827 LINK_FLAGS=$(LINK_FLAGS:s/\/\\/) ~ \
1e71036e 828 optimize=$(OPTIMIZE)
829
830#
831# set up targets varying between Win95 and WinNT builds
832#
833
834.IF "$(IS_WIN95)" == "define"
835MK2 = .\makefile.95
836RIGHTMAKE = __switch_makefiles
837NOOP = @rem
838.ELSE
839MK2 = __not_needed
840RIGHTMAKE =
841.ENDIF
842
843#
844# Top targets
845#
846
847all : .\config.h $(GLOBEXE) $(MINIPERL) $(MK2) \
848 $(RIGHTMAKE) $(MINIMOD) $(CONFIGPM) $(PERLEXE) \
ba14dd9a 849 $(X2P) Extensions
1e71036e 850
851$(DYNALOADER)$(o) : $(DYNALOADER).c $(CORE_H) $(EXTDIR)\DynaLoader\dlutils.c
852
853#----------------------------------------------------------------
854
855#-------------------- BEGIN Win95 SPECIFIC ----------------------
856
857# this target is a jump-off point for Win95
858# 1. it switches to the Win95-specific makefile if it exists
859# (__do_switch_makefiles)
860# 2. it prints a message when the Win95-specific one finishes (__done)
861# 3. it then kills this makefile by trying to make __no_such_target
862
863__switch_makefiles: __do_switch_makefiles __done __no_such_target
864
865__do_switch_makefiles:
866.IF "$(NOTFIRST)" != "true"
867 if exist $(MK2) $(MAKE:s/-S//) -f $(MK2) $(MAKETARGETS) NOTFIRST=true
868.ELSE
869 $(NOOP)
870.ENDIF
871
872.IF "$(NOTFIRST)" != "true"
873__done:
874 @echo Build process complete. Ignore any errors after this message.
875 @echo Run "dmake test" to test and "dmake install" to install
876
877.ELSE
878# dummy targets for Win95-specific makefile
879
880__done:
881 $(NOOP)
882
883__no_such_target:
884 $(NOOP)
885
886.ENDIF
887
888# This target is used to generate the new makefile (.\makefile.95) for Win95
889
890.\makefile.95: .\makefile.mk
891 $(MINIPERL) genmk95.pl makefile.mk $(MK2)
892
893#--------------------- END Win95 SPECIFIC ---------------------
894
895# a blank target for when builds don't need to do certain things
896# this target added for Win95 port but used to keep the WinNT port able to
897# use this file
898__not_needed:
899 $(NOOP)
900
901$(GLOBEXE) : perlglob$(o)
902.IF "$(CCTYPE)" == "BORLAND"
903 $(CC) -c -w -v -tWM -I"$(CCINCDIR)" perlglob.c
904 $(LINK32) -Tpe -ap $(BLINK_FLAGS) c0x32$(o) perlglob$(o) \
905 "$(CCLIBDIR)\32BIT\wildargs$(o)",$@,,import32.lib cw32mt.lib,
906.ELIF "$(CCTYPE)" == "GCC"
907 $(LINK32) $(BLINK_FLAGS) -mconsole -o $@ perlglob$(o) $(LIBFILES)
908.ELSE
909 $(LINK32) $(BLINK_FLAGS) $(LIBFILES) -out:$@ -subsystem:$(SUBSYS) \
910 perlglob$(o) setargv$(o)
911.ENDIF
912
913perlglob$(o) : perlglob.c
914
915config.w32 : $(CFGSH_TMPL)
916 copy $(CFGSH_TMPL) config.w32
917
918.\config.h : $(CFGH_TMPL) $(CORE_NOCFG_H)
919 -del /f config.h
920 copy $(CFGH_TMPL) config.h
921
922..\config.sh : config.w32 $(MINIPERL) config_sh.PL FindExt.pm
923 $(MINIPERL) -I..\lib config_sh.PL --cfgsh-option-file \
924 $(mktmp $(CFG_VARS)) config.w32 > ..\config.sh
925
926# this target is for when changes to the main config.sh happen
927# edit config.{b,v,g}c and make this target once for each supported
928# compiler (e.g. `dmake CCTYPE=BORLAND regen_config_h`)
929regen_config_h:
930 perl config_sh.PL --cfgsh-option-file $(mktmp $(CFG_VARS)) \
931 $(CFGSH_TMPL) > ..\config.sh
932 -cd .. && del /f perl.exe
1018e26f 933 -cd .. && del /f perl*.dll
1e71036e 934 cd .. && perl configpm
935 -del /f $(CFGH_TMPL)
936 -mkdir $(COREDIR)
1018e26f 937 -perl config_h.PL "INST_VER=$(INST_VER)"
1e71036e 938 rename config.h $(CFGH_TMPL)
939
940$(CONFIGPM) : $(MINIPERL) ..\config.sh config_h.PL ..\minimod.pl
941 cd .. && miniperl configpm
942 if exist lib\* $(RCOPY) lib\*.* ..\lib\$(NULL)
943 $(XCOPY) ..\*.h $(COREDIR)\*.*
944 $(XCOPY) *.h $(COREDIR)\*.*
945 $(XCOPY) ..\ext\re\re.pm $(LIBDIR)\*.*
946 $(RCOPY) include $(COREDIR)\*.*
947 $(MINIPERL) -I..\lib config_h.PL "INST_VER=$(INST_VER)" \
948 || $(MAKE) $(MAKEMACROS) $(CONFIGPM) $(MAKEFILE)
949
950$(MINIPERL) : $(MINIDIR) $(MINI_OBJ) $(CRTIPMLIBS)
951.IF "$(CCTYPE)" == "BORLAND"
952 $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
953 @$(mktmp c0x32$(o) $(MINI_OBJ:s,\,\\),$(@:s,\,\\),,$(LIBFILES),)
954.ELIF "$(CCTYPE)" == "GCC"
955 $(LINK32) -v -mconsole -o $@ $(BLINK_FLAGS) \
956 $(mktmp $(LKPRE) $(MINI_OBJ:s,\,\\) $(LIBFILES) $(LKPOST))
957.ELSE
958 $(LINK32) -subsystem:console -out:$@ \
959 @$(mktmp $(BLINK_FLAGS) $(LIBFILES) $(MINI_OBJ:s,\,\\))
960.ENDIF
961
962$(MINIDIR) :
963 if not exist "$(MINIDIR)" mkdir "$(MINIDIR)"
964
965$(MINICORE_OBJ) : $(CORE_NOCFG_H)
966 $(CC) -c $(CFLAGS) -DPERL_EXTERNAL_GLOB $(OBJOUT_FLAG)$@ ..\$(*B).c
967
968$(MINIWIN32_OBJ) : $(CORE_NOCFG_H)
969 $(CC) -c $(CFLAGS) $(OBJOUT_FLAG)$@ $(*B).c
970
971# -DPERL_IMPLICIT_SYS needs C++ for perllib.c
972# rules wrapped in .IFs break Win9X build (we end up with unbalanced []s unless
973# unless the .IF is true), so instead we use a .ELSE with the default.
974# This is the only file that depends on perlhost.h, vmem.h, and vdir.h
975
976perllib$(o) : perllib.c .\perlhost.h .\vdir.h .\vmem.h
acfe0abc 977.IF "$(USE_IMP_SYS)" == "define"
1e71036e 978 $(CC) -c -I. $(CFLAGS_O) $(CXX_FLAG) $(OBJOUT_FLAG)$@ perllib.c
979.ELSE
980 $(CC) -c -I. $(CFLAGS_O) $(OBJOUT_FLAG)$@ perllib.c
981.ENDIF
982
983# 1. we don't want to rebuild miniperl.exe when config.h changes
984# 2. we don't want to rebuild miniperl.exe with non-default config.h
985$(MINI_OBJ) : $(CORE_NOCFG_H)
986
987$(WIN32_OBJ) : $(CORE_H)
988$(CORE_OBJ) : $(CORE_H)
989$(DLL_OBJ) : $(CORE_H)
990$(X2P_OBJ) : $(CORE_H)
991
992perldll.def : $(MINIPERL) $(CONFIGPM) ..\global.sym ..\pp.sym ..\makedef.pl
993 $(MINIPERL) -w ..\makedef.pl PLATFORM=win32 $(OPTIMIZE) $(DEFINES) \
994 $(BUILDOPT) CCTYPE=$(CCTYPE) > perldll.def
995
996$(PERLDLL): perldll.def $(PERLDLL_OBJ) $(PERLDLL_RES)
997.IF "$(CCTYPE)" == "BORLAND"
998 $(LINK32) -Tpd -ap $(BLINK_FLAGS) \
999 @$(mktmp c0d32$(o) $(PERLDLL_OBJ:s,\,\\)\n \
1000 $@,\n \
1001 $(LIBFILES)\n \
1002 perldll.def\n)
1003 $(IMPLIB) $*.lib $@
1004.ELIF "$(CCTYPE)" == "GCC"
1005 $(LINK32) -mdll -o $@ -Wl,--base-file -Wl,perl.base $(BLINK_FLAGS) \
1006 $(mktmp $(LKPRE) $(PERLDLL_OBJ:s,\,\\) $(LIBFILES) $(LKPOST))
1007 dlltool --output-lib $(PERLIMPLIB) \
1008 --dllname $(PERLDLL:b).dll \
1009 --def perldll.def \
1010 --base-file perl.base \
1011 --output-exp perl.exp
1012 $(LINK32) -mdll -o $@ $(BLINK_FLAGS) \
1013 $(mktmp $(LKPRE) $(PERLDLL_OBJ:s,\,\\) $(LIBFILES) \
1014 perl.exp $(LKPOST))
1015.ELSE
1016 $(LINK32) -dll -def:perldll.def -out:$@ \
1017 @$(mktmp -base:0x28000000 $(BLINK_FLAGS) $(DELAYLOAD) $(LIBFILES) \
1018 $(PERLDLL_RES) $(PERLDLL_OBJ:s,\,\\))
1019.ENDIF
1020 $(XCOPY) $(PERLIMPLIB) $(COREDIR)
1021
1022$(MINIMOD) : $(MINIPERL) ..\minimod.pl
1023 cd .. && miniperl minimod.pl > lib\ExtUtils\Miniperl.pm
1024
1025..\x2p\a2p$(o) : ..\x2p\a2p.c
1026 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\a2p.c
1027
1028..\x2p\hash$(o) : ..\x2p\hash.c
1029 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\hash.c
1030
1031..\x2p\str$(o) : ..\x2p\str.c
1032 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\str.c
1033
1034..\x2p\util$(o) : ..\x2p\util.c
1035 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\util.c
1036
1037..\x2p\walk$(o) : ..\x2p\walk.c
1038 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\walk.c
1039
1040$(X2P) : $(MINIPERL) $(X2P_OBJ)
1041 $(MINIPERL) ..\x2p\find2perl.PL
1042 $(MINIPERL) ..\x2p\s2p.PL
1043.IF "$(CCTYPE)" == "BORLAND"
1044 $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
1045 @$(mktmp c0x32$(o) $(X2P_OBJ:s,\,\\),$(@:s,\,\\),,$(LIBFILES),)
1046.ELIF "$(CCTYPE)" == "GCC"
1047 $(LINK32) -v -o $@ $(BLINK_FLAGS) \
1048 $(mktmp $(LKPRE) $(X2P_OBJ:s,\,\\) $(LIBFILES) $(LKPOST))
1049.ELSE
1050 $(LINK32) -subsystem:console -out:$@ \
1051 @$(mktmp $(BLINK_FLAGS) $(LIBFILES) $(X2P_OBJ:s,\,\\))
1052.ENDIF
1053
1054perlmain.c : runperl.c
1055 copy runperl.c perlmain.c
1056
1057perlmain$(o) : perlmain.c
1058 $(CC) $(CFLAGS_O) -UPERLDLL $(OBJOUT_FLAG)$@ -c perlmain.c
1059
1060$(PERLEXE): $(PERLDLL) $(CONFIGPM) $(PERLEXE_OBJ) $(PERLEXE_RES)
1061.IF "$(CCTYPE)" == "BORLAND"
1062 $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
1063 @$(mktmp c0x32$(o) $(PERLEXE_OBJ:s,\,\\)\n \
1064 $(@:s,\,\\),\n \
1065 $(PERLIMPLIB) $(LIBFILES)\n)
1066.ELIF "$(CCTYPE)" == "GCC"
1067 $(LINK32) -mconsole -o $@ $(BLINK_FLAGS) \
1068 $(PERLEXE_OBJ) $(PERLIMPLIB) $(LIBFILES)
1069.ELSE
1070 $(LINK32) -subsystem:console -out:$@ -stack:0x1000000 $(BLINK_FLAGS) \
1071 $(LIBFILES) $(PERLEXE_OBJ) $(SETARGV_OBJ) $(PERLIMPLIB) $(PERLEXE_RES)
1072.ENDIF
1073 copy $(PERLEXE) $(WPERLEXE)
1074 $(MINIPERL) -I..\lib bin\exetype.pl $(WPERLEXE) WINDOWS
1075 copy splittree.pl ..
1076 $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR)
1077
1078$(DYNALOADER).c: $(MINIPERL) $(EXTDIR)\DynaLoader\dl_win32.xs $(CONFIGPM)
1079 if not exist $(AUTODIR) mkdir $(AUTODIR)
1080 cd $(EXTDIR)\$(*B) && ..\$(MINIPERL) -I..\..\lib $(*B)_pm.PL
1081 cd $(EXTDIR)\$(*B) && ..\$(MINIPERL) -I..\..\lib XSLoader_pm.PL
1082 $(XCOPY) $(EXTDIR)\$(*B)\$(*B).pm $(LIBDIR)\$(NULL)
1083 $(XCOPY) $(EXTDIR)\$(*B)\XSLoader.pm $(LIBDIR)\$(NULL)
1084 cd $(EXTDIR)\$(*B) && $(XSUBPP) dl_win32.xs > $(*B).c
1085 $(XCOPY) $(EXTDIR)\$(*B)\dlutils.c .
1086
1087$(EXTDIR)\DynaLoader\dl_win32.xs: dl_win32.xs
1088 copy dl_win32.xs $(EXTDIR)\DynaLoader\dl_win32.xs
1089
1090#----------------------------------------------------------------------------------
ba14dd9a 1091Extensions : buildext.pl $(PERLDEP) $(CONFIGPM)
1e71036e 1092 $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR)
1093
ba14dd9a 1094Extensions_clean :
1e71036e 1095 -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) clean
1096
1097#----------------------------------------------------------------------------------
1098
1099
1100doc: $(PERLEXE)
1101 $(PERLEXE) -I..\lib ..\installhtml --podroot=.. --htmldir=./html \
1102 --podpath=pod:lib:ext:utils --htmlroot="file://$(INST_HTML:s,:,|,)"\
1103 --libpod=perlfunc:perlguts:perlvar:perlrun:perlop --recurse
1104
1105utils: $(PERLEXE) $(X2P)
1106 cd ..\utils && $(MAKE) PERL=$(MINIPERL)
4cb44f92 1107 copy ..\README.aix .\perlaix.pod
1108 copy ..\README.amiga .\perlamiga.pod
1109 copy ..\README.apollo .\perlapollo.pod
1110 copy ..\README.beos .\perlbeos.pod
1111 copy ..\README.bs2000 .\perlbs2000.pod
1112 copy ..\README.ce .\perlce.pod
1113 copy ..\README.cn .\perlcn.pod
1114 copy ..\README.cygwin .\perlcygwin.pod
1115 copy ..\README.dgux .\perldgux.pod
1116 copy ..\README.dos .\perldos.pod
1117 copy ..\README.epoc .\perlepoc.pod
1118 copy ..\README.freebsd .\perlfreebsd.pod
1119 copy ..\README.hpux .\perlhpux.pod
1120 copy ..\README.hurd .\perlhurd.pod
1121 copy ..\README.irix .\perlirix.pod
1122 copy ..\README.jp .\perljp.pod
1123 copy ..\README.ko .\perlko.pod
1124 copy ..\README.machten .\perlmachten.pod
1125 copy ..\README.macos .\perlmacos.pod
1126 copy ..\README.macosx .\perlmacosx.pod
1127 copy ..\README.mint .\perlmint.pod
1128 copy ..\README.mpeix .\perlmpeix.pod
1129 copy ..\README.netware .\perlnetware.pod
1130 copy ..\README.os2 .\perlos2.pod
1131 copy ..\README.os390 .\perlos390.pod
1132 copy ..\README.os400 .\perlos400.pod
1133 copy ..\README.plan9 .\perlplan9.pod
1134 copy ..\README.qnx .\perlqnx.pod
1135 copy ..\README.solaris .\perlsolaris.pod
1136 copy ..\README.tru64 .\perltru64.pod
1137 copy ..\README.tw .\perltw.pod
1138 copy ..\README.uts .\perluts.pod
1139 copy ..\README.vmesa .\perlvmesa.pod
1140 copy ..\README.vms .\perlvms.pod
1141 copy ..\README.vos .\perlvos.pod
1142 copy ..\README.win32 .\perlwin32.pod
1e71036e 1143 copy ..\vms\perlvms.pod ..\pod\perlvms.pod
1e71036e 1144 cd ..\pod && $(MAKE) -f ..\win32\pod.mak converters
1145 cd ..\lib && $(PERLEXE) lib_pm.PL
1146 $(PERLEXE) $(PL2BAT) $(UTILS)
1147
1148distclean: clean
1149 -del /f $(MINIPERL) $(PERLEXE) $(PERLDLL) $(GLOBEXE) \
1150 $(PERLIMPLIB) ..\miniperl$(a) $(MINIMOD)
1151 -del /f *.def *.map
1152 -del /f $(EXTDIR)\DynaLoader\dl_win32.xs
1153 -del /f $(LIBDIR)\.exists $(LIBDIR)\attrs.pm $(LIBDIR)\DynaLoader.pm
1154 -del /f $(LIBDIR)\XSLoader.pm
1155 -del /f $(LIBDIR)\Fcntl.pm $(LIBDIR)\IO.pm $(LIBDIR)\Opcode.pm
a9bf183d 1156 -del /f $(LIBDIR)\ops.pm $(LIBDIR)\Safe.pm
1e71036e 1157 -del /f $(LIBDIR)\SDBM_File.pm $(LIBDIR)\Socket.pm $(LIBDIR)\POSIX.pm
1158 -del /f $(LIBDIR)\B.pm $(LIBDIR)\O.pm $(LIBDIR)\re.pm
1159 -del /f $(LIBDIR)\Data\Dumper.pm $(LIBDIR)\ByteLoader.pm
e934609f 1160 -del /f $(LIBDIR)\PerlIO\scalar.pm
1e71036e 1161 -del /f $(LIBDIR)\Devel\Peek.pm $(LIBDIR)\Devel\DProf.pm
1162 -del /f $(LIBDIR)\File\Glob.pm
1163 -del /f $(LIBDIR)\Storable.pm
1164 -del /f $(LIBDIR)\Filter\Util\Call.pm
1165 -del /f $(LIBDIR)\Digest\MD5.pm
1166 -del /f $(LIBDIR)\MIME\Base64.pm
1167 -del /f $(LIBDIR)\MIME\QuotedPrint.pm
1168 -del /f $(LIBDIR)\Time\HiRes.pm
1169 -del /f $(LIBDIR)\List\Util.pm
1170 -del /f $(LIBDIR)\Scalar\Util.pm
ac5ea531 1171 -del /f $(LIBDIR)\Unicode\Normalize.pm
522078af 1172 -if exist $(LIBDIR)\IO rmdir /s /q $(LIBDIR)\IO
1173 -if exist $(LIBDIR)\IO rmdir /s $(LIBDIR)\IO
1174 -if exist $(LIBDIR)\B rmdir /s /q $(LIBDIR)\B
1175 -if exist $(LIBDIR)\B rmdir /s $(LIBDIR)\B
1176 -if exist $(LIBDIR)\Data rmdir /s /q $(LIBDIR)\Data
1177 -if exist $(LIBDIR)\Data rmdir /s $(LIBDIR)\Data
1178 -if exist $(LIBDIR)\Filter\Util rmdir /s /q $(LIBDIR)\Filter\Util
1179 -if exist $(LIBDIR)\Filter\Util rmdir /s $(LIBDIR)\Filter\Util
1180 -if exist $(LIBDIR)\Digest rmdir /s /q $(LIBDIR)\Digest
1181 -if exist $(LIBDIR)\Digest rmdir /s $(LIBDIR)\Digest
1182 -if exist $(LIBDIR)\MIME rmdir /s /q $(LIBDIR)\MIME
1183 -if exist $(LIBDIR)\MIME rmdir /s $(LIBDIR)\MIME
1184 -if exist $(LIBDIR)\List rmdir /s /q $(LIBDIR)\List
1185 -if exist $(LIBDIR)\List rmdir /s $(LIBDIR)\List
1186 -if exist $(LIBDIR)\Scalar rmdir /s /q $(LIBDIR)\Scalar
1187 -if exist $(LIBDIR)\Scalar rmdir /s $(LIBDIR)\Scalar
1188 -if exist $(LIBDIR)\XS rmdir /s /q $(LIBDIR)\XS
1189 -if exist $(LIBDIR)\XS rmdir /s $(LIBDIR)\XS
1e71036e 1190 -cd $(PODDIR) && del /f *.html *.bat checkpods \
4cb44f92 1191 perlaix.pod perlamiga.pod perlapollo.pod perlbeos.pod \
1192 perlbs2000.pod perlce.pod perlcn.pod perlcygwin.pod \
1193 perldgux.pod perldos.pod perlepoc.pod perlfreebsd.pod \
1194 perlhpux.pod perlhurd.pod perlirix.pod perljp.pod perlko.pod \
1195 perlmachten.pod perlmacos.pod perlmacosx.pod perlmint.pod \
1196 perlmpeix.pod perlnetware.pod perlos2.pod perlos390.pod \
1197 perlos400.pod perlplan9.pod perlqnx.pod perlsolaris.pod \
1198 perltru64.pod perltw.pod perluts.pod perlvmesa.pod perlvms.pod \
1199 perlvms.pod perlvos.pod perlwin32.pod \
1200 pod2html pod2latex pod2man pod2text pod2usage \
1e71036e 1201 podchecker podselect
827a599d 1202 -cd ..\utils && del /f h2ph splain perlbug pl2pm c2ph pstruct h2xs \
ea0e987d 1203 perldoc perlivp dprofpp perlcc libnetcfg enc2xs piconv cpan *.bat \
1204 xsubpp instmodsh
827a599d 1205 -cd ..\x2p && del /f find2perl s2p psed *.bat
1e71036e 1206 -del /f ..\config.sh ..\splittree.pl perlmain.c dlutils.c config.h.new
1207 -del /f $(CONFIGPM)
1208 -del /f bin\*.bat
827a599d 1209 -cd .. && del /s *$(a) *.map *.pdb *.ilk *.bs *$(o) .exists pm_to_blib
1210 -cd $(EXTDIR) && del /s *.def Makefile Makefile.old
522078af 1211 -if exist $(AUTODIR) rmdir /s /q $(AUTODIR)
1212 -if exist $(AUTODIR) rmdir /s $(AUTODIR)
1213 -if exist $(COREDIR) rmdir /s /q $(COREDIR)
1214 -if exist $(COREDIR) rmdir /s $(COREDIR)
1e71036e 1215
1216install : all installbare installhtml
1217
1218installbare : $(RIGHTMAKE) utils
1219 $(PERLEXE) ..\installperl
1220 if exist $(WPERLEXE) $(XCOPY) $(WPERLEXE) $(INST_BIN)\*.*
1221 $(XCOPY) $(GLOBEXE) $(INST_BIN)\*.*
1222 $(XCOPY) bin\*.bat $(INST_SCRIPT)\*.*
1223
1224installhtml : doc
1225 $(RCOPY) html\*.* $(INST_HTML)\*.*
1226
1227inst_lib : $(CONFIGPM)
1228 copy splittree.pl ..
1229 $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR)
1230 $(RCOPY) ..\lib $(INST_LIB)\*.*
1231
1232minitest : $(MINIPERL) $(GLOBEXE) $(CONFIGPM) utils
1233 $(XCOPY) $(MINIPERL) ..\t\perl.exe
1234.IF "$(CCTYPE)" == "BORLAND"
1235 $(XCOPY) $(GLOBBAT) ..\t\$(NULL)
1236.ELSE
1237 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1238.ENDIF
1239 attrib -r ..\t\*.*
1240 copy test ..\t
1241 cd ..\t && \
1242 $(MINIPERL) -I..\lib test base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t
1243
1244test-prep : all utils
1245 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1246 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1247.IF "$(CCTYPE)" == "BORLAND"
1248 $(XCOPY) $(GLOBBAT) ..\t\$(NULL)
1249.ELSE
1250 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1251.ENDIF
1252
1253test : $(RIGHTMAKE) test-prep
1254 cd ..\t && $(PERLEXE) -I..\lib harness
1255
1256test-notty : test-prep
1257 set PERL_SKIP_TTY_TEST=1 && \
1258 cd ..\t && $(PERLEXE) -I.\lib harness
1259
b4a93add 1260_test : $(RIGHTMAKE)
a01cf021 1261 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1262 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
b4a93add 1263.IF "$(CCTYPE)" == "BORLAND"
a01cf021 1264 $(XCOPY) $(GLOBBAT) ..\t\$(NULL)
b4a93add 1265.ELSE
a01cf021 1266 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
b4a93add 1267.ENDIF
a01cf021 1268 cd ..\t && $(PERLEXE) -I..\lib harness
b4a93add 1269
1e71036e 1270clean : Extensions_clean
1271 -@erase miniperlmain$(o)
1272 -@erase $(MINIPERL)
1273 -@erase perlglob$(o)
1274 -@erase perlmain$(o)
1275 -@erase config.w32
1276 -@erase /f config.h
1277 -@erase $(GLOBEXE)
1278 -@erase $(PERLEXE)
1279 -@erase $(WPERLEXE)
1280 -@erase $(PERLDLL)
1281 -@erase $(CORE_OBJ)
522078af 1282 -if exist $(MINIDIR) rmdir /s /q $(MINIDIR)
1283 -if exist $(MINIDIR) rmdir /s $(MINIDIR)
1e71036e 1284 -@erase $(WIN32_OBJ)
1285 -@erase $(DLL_OBJ)
1286 -@erase $(X2P_OBJ)
1287 -@erase ..\*$(o) ..\*$(a) ..\*.exp *$(o) *$(a) *.exp *.res
1288 -@erase ..\t\*.exe ..\t\*.dll ..\t\*.bat
1289 -@erase ..\x2p\*.exe ..\x2p\*.bat
1290 -@erase *.ilk
1291 -@erase *.pdb
1292
1293# Handy way to run perlbug -ok without having to install and run the
1294# installed perlbug. We don't re-run the tests here - we trust the user.
1295# Please *don't* use this unless all tests pass.
1296# If you want to report test failures, use "dmake nok" instead.
1297ok: utils
1298 $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)"
1299
1300okfile: utils
1301 $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)" -F perl.ok
1302
1303nok: utils
1304 $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)"
1305
1306nokfile: utils
1307 $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)" -F perl.nok