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