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