t/io/binmode.t
[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:
4# Visual C++ 2.0 thro 6.0
5# Borland C++ 5.02
6# Mingw32 with gcc-2.95.2 or better **experimental**
7#
8# This is set up to build a perl.exe that runs off a shared library
9# (perl57.dll). Also makes individual DLLs for the XS extensions.
10#
11
12##
13## Make sure you read README.win32 *before* you mess with anything here!
14##
15
16##
17## Build configuration. Edit the values below to suit your needs.
18##
19
20#
21# Set these to wherever you want "dmake install" to put your
22# newly built perl.
23#
24INST_DRV *= c:
25INST_TOP *= $(INST_DRV)\perl
26
27#
28# Comment this out if you DON'T want your perl installation to be versioned.
29# This means that the new installation will overwrite any files from the
30# old installation at the same INST_TOP location. Leaving it enabled is
31# the safest route, as perl adds the extra version directory to all the
32# locations it installs files to. If you disable it, an alternative
33# versioned installation can be obtained by setting INST_TOP above to a
34# path that includes an arbitrary version string.
35#
36INST_VER *= \5.7.2
37
38#
39# Comment this out if you DON'T want your perl installation to have
40# architecture specific components. This means that architecture-
41# specific files will be installed along with the architecture-neutral
42# files. Leaving it enabled is safer and more flexible, in case you
43# want to build multiple flavors of perl and install them together in
44# the same location. Commenting it out gives you a simpler
45# installation that is easier to understand for beginners.
46#
47INST_ARCH *= \$(ARCHNAME)
48
49#
50# uncomment to enable multiple interpreters. This is need for fork()
51# emulation.
52#
53USE_MULTI *= define
54
55#
56# Beginnings of interpreter cloning/threads; still very incomplete.
57# This should be enabled to get the fork() emulation. This needs
58# USE_MULTI as well.
59#
60USE_ITHREADS *= define
61
62#
63# uncomment to enable the implicit "host" layer for all system calls
64# made by perl. This needs USE_MULTI above. This is also needed to
65# get fork().
66#
67USE_IMP_SYS *= define
68
69#
70# uncomment to enable the experimental PerlIO I/O subsystem.
71USE_PERLIO = define
72
73#
74# WARNING! This option is deprecated and will eventually go away (enable
75# USE_ITHREADS instead).
76#
77# uncomment to enable threads-capabilities. This is incompatible with
78# USE_ITHREADS, and is only here for people who may have come to rely
79# on the experimental Thread support that was in 5.005.
80#
81#USE_5005THREADS *= define
82
83#
84# WARNING! This option is deprecated and will eventually go away (enable
85# USE_MULTI instead).
86#
87# uncomment next line if you want to use the PERL_OBJECT build option.
88# DO NOT ENABLE unless you have legacy code that relies on the C++
89# CPerlObj class that was available in 5.005. This cannot be enabled
90# if you ask for USE_5005THREADS above.
91#
92#USE_OBJECT *= define
93
94#
95# uncomment exactly one of the following
96#
97# Visual C++ 2.x
98#CCTYPE *= MSVC20
99# Visual C++ > 2.x and < 6.x
100#CCTYPE *= MSVC
101# Visual C++ >= 6.x
102CCTYPE *= MSVC60
103# Borland 5.02 or later
104#CCTYPE *= BORLAND
105# mingw32+gcc-2.95.2 or better
106#CCTYPE *= GCC
107
108#
109# uncomment this if your Borland compiler is older than v5.4.
110BCCOLD = define
111#
112# uncomment this if you want to use Borland's VCL as your CRT
113#BCCVCL = define
114
115#
116# uncomment this if you are compiling under Windows 95/98 and command.com
117# (not needed if you're running under 4DOS/NT 6.01 or later)
118#IS_WIN95 *= define
119
120#
121# uncomment next line if you want debug version of perl (big,slow)
122# If not enabled, we automatically try to use maximum optimization
123# with all compilers that are known to have a working optimizer.
124#
125CFG *= Debug
126
127#
128# uncomment to enable use of PerlCRT.DLL when using the Visual C compiler.
129# It has patches that fix known bugs in older versions of MSVCRT.DLL.
130# This currently requires VC 5.0 with Service Pack 3 or later.
131# Get it from CPAN at http://www.perl.com/CPAN/authors/id/D/DO/DOUGL/
132# and follow the directions in the package to install.
133#
134# Not recommended if you have VC 6.x and you're not running Windows 9x.
135#
136#USE_PERLCRT *= define
137
138#
139# uncomment to enable linking with setargv.obj under the Visual C
140# compiler. Setting this options enables perl to expand wildcards in
141# arguments, but it may be harder to use alternate methods like
142# File::DosGlob that are more powerful. This option is supported only with
143# Visual C.
144#
145#USE_SETARGV *= define
146
147#
148# if you have the source for des_fcrypt(), uncomment this and make sure the
149# file exists (see README.win32). File should be located in the same
150# directory as this file.
151#
152#CRYPT_SRC *= fcrypt.c
153
154#
155# if you didn't set CRYPT_SRC and if you have des_fcrypt() available in a
156# library, uncomment this, and make sure the library exists (see README.win32)
157# Specify the full pathname of the library.
158#
159#CRYPT_LIB *= fcrypt.lib
160
161#
162# set this if you wish to use perl's malloc
163# WARNING: Turning this on/off WILL break binary compatibility with extensions
164# you may have compiled with/without it. Be prepared to recompile all
165# extensions if you change the default. Currently, this cannot be enabled
166# if you ask for USE_IMP_SYS above.
167#
168#PERL_MALLOC *= define
169
170#
171# set the install locations of the compiler include/libraries
172# Running VCVARS32.BAT is *required* when using Visual C.
173# Some versions of Visual C don't define MSVCDIR in the environment,
174# so you may have to set CCHOME explicitly (spaces in the path name should
175# not be quoted)
176#
177#CCHOME *= F:\borland\bc5
178CCHOME *= $(MSVCDIR)
179#CCHOME *= c:\gcc-2.95.2
180CCINCDIR *= $(CCHOME)\include
181CCLIBDIR *= $(CCHOME)\lib
182
183#
184# Additional compiler flags can be specified here.
185#
186
187#
188# This should normally be disabled. Adding -DPERL_POLLUTE enables support
189# for old symbols by default, at the expense of extreme pollution. You most
190# probably just want to build modules that won't compile with
191# perl Makefile.PL POLLUTE=1
192# instead of enabling this. Please report such modules to the respective
193# authors.
194#
195#BUILDOPT += -DPERL_POLLUTE
196
197#
198# This should normally be disabled. Enabling it will disable the File::Glob
199# implementation of CORE::glob.
200#
201#BUILDOPT += -DPERL_EXTERNAL_GLOB
202
203#
204# This should normally be disabled. Enabling it causes perl to read scripts
205# in text mode (which is the 5.005 behavior) and will break ByteLoader.
206#BUILDOPT += -DPERL_TEXTMODE_SCRIPTS
207
208#
209# specify semicolon-separated list of extra directories that modules will
210# look for libraries (spaces in path names need not be quoted)
211#
212EXTRALIBDIRS *=
213
214#
215# set this to point to cmd.exe (only needed if you use some
216# alternate shell that doesn't grok cmd.exe style commands)
217#
218#SHELL *= g:\winnt\system32\cmd.exe
219
220#
221# set this to your email address (perl will guess a value from
222# from your loginname and your hostname, which may not be right)
223#
224#EMAIL *=
225
226##
227## Build configuration ends.
228##
229
230##################### CHANGE THESE ONLY IF YOU MUST #####################
231
232.IF "$(CRYPT_SRC)$(CRYPT_LIB)" == ""
233D_CRYPT = undef
234.ELSE
235D_CRYPT = define
236CRYPT_FLAG = -DHAVE_DES_FCRYPT
237.ENDIF
238
239.IF "$(USE_OBJECT)" == "define"
240PERL_MALLOC != undef
241USE_5005THREADS != undef
242USE_MULTI != undef
243USE_IMP_SYS != define
244.ENDIF
245
246PERL_MALLOC *= undef
247
248USE_5005THREADS *= undef
249
250.IF "$(USE_5005THREADS)" == "define"
251USE_ITHREADS != undef
252.ENDIF
253
254.IF "$(USE_IMP_SYS)" == "define"
255PERL_MALLOC != undef
256.ENDIF
257
258USE_MULTI *= undef
259USE_OBJECT *= undef
260USE_ITHREADS *= undef
261USE_IMP_SYS *= undef
262USE_PERLIO *= undef
263USE_PERLCRT *= undef
264
265.IF "$(USE_IMP_SYS)$(USE_MULTI)$(USE_5005THREADS)$(USE_OBJECT)" == "defineundefundefundef"
266USE_MULTI != define
267.ENDIF
268
269.IF "$(USE_ITHREADS)$(USE_MULTI)$(USE_OBJECT)" == "defineundefundef"
270USE_MULTI != define
271USE_5005THREADS != undef
272.ENDIF
273
274.IF "$(USE_MULTI)$(USE_5005THREADS)$(USE_OBJECT)" != "undefundefundef"
275BUILDOPT += -DPERL_IMPLICIT_CONTEXT
276.ENDIF
277
278.IF "$(USE_IMP_SYS)" != "undef"
279BUILDOPT += -DPERL_IMPLICIT_SYS
280.ENDIF
281
282.IMPORT .IGNORE : PROCESSOR_ARCHITECTURE
283
284PROCESSOR_ARCHITECTURE *= x86
285
286.IF "$(USE_OBJECT)" == "define"
287ARCHNAME = MSWin32-$(PROCESSOR_ARCHITECTURE)-object
288.ELIF "$(USE_5005THREADS)" == "define"
289ARCHNAME = MSWin32-$(PROCESSOR_ARCHITECTURE)-thread
290.ELIF "$(USE_MULTI)" == "define"
291ARCHNAME = MSWin32-$(PROCESSOR_ARCHITECTURE)-multi
292.ELSE
293.IF "$(USE_PERLIO)" == "define"
294ARCHNAME = MSWin32-$(PROCESSOR_ARCHITECTURE)-perlio
295.ELSE
296ARCHNAME = MSWin32-$(PROCESSOR_ARCHITECTURE)
297.ENDIF
298ARCHNAME = MSWin32-$(PROCESSOR_ARCHITECTURE)
299.ENDIF
300
301.IF "$(USE_ITHREADS)" == "define"
302ARCHNAME !:= $(ARCHNAME)-thread
303.ENDIF
304
305# Visual Studio 98 specific
306.IF "$(CCTYPE)" == "MSVC60"
307
308# VC 6.0 can load the socket dll on demand. Makes the test suite
309# run in about 10% less time.
310DELAYLOAD *= -DELAYLOAD:wsock32.dll -DELAYLOAD:shell32.dll delayimp.lib
311
312.IF "$(CFG)" == "Debug"
313.ELSE
314# VC 6.0 seems capable of compiling perl correctly with optimizations
315# enabled. Anything earlier fails tests.
316CFG *= Optimize
317.ENDIF
318.ENDIF
319
320ARCHDIR = ..\lib\$(ARCHNAME)
321COREDIR = ..\lib\CORE
322AUTODIR = ..\lib\auto
323LIBDIR = ..\lib
324EXTDIR = ..\ext
325PODDIR = ..\pod
326EXTUTILSDIR = $(LIBDIR)\ExtUtils
327
328#
329INST_SCRIPT = $(INST_TOP)$(INST_VER)\bin
330INST_BIN = $(INST_SCRIPT)$(INST_ARCH)
331INST_LIB = $(INST_TOP)$(INST_VER)\lib
332INST_ARCHLIB = $(INST_LIB)$(INST_ARCH)
333INST_COREDIR = $(INST_ARCHLIB)\CORE
334INST_POD = $(INST_LIB)\pod
335INST_HTML = $(INST_TOP)$(INST_VER)\html
336
337#
338# Programs to compile, build .lib files and link
339#
340
341.USESHELL :
342
343.IF "$(CCTYPE)" == "BORLAND"
344
345CC = bcc32
346.IF "$(BCCOLD)" != "define"
347LINK32 = ilink32
348.ELSE
349LINK32 = tlink32
350.ENDIF
351LIB32 = tlib /P128
352IMPLIB = implib -c
353RSC = rc
354
355#
356# Options
357#
358INCLUDES = -I$(COREDIR) -I.\include -I. -I.. -I"$(CCINCDIR)"
359#PCHFLAGS = -H -Hc -H=c:\temp\bcmoduls.pch
360DEFINES = -DWIN32 $(CRYPT_FLAG)
361LOCDEFS = -DPERLDLL -DPERL_CORE
362SUBSYS = console
363CXX_FLAG = -P
364
365LIBC = cw32mti.lib
366LIBFILES = $(CRYPT_LIB) import32.lib $(LIBC)
367
368.IF "$(CFG)" == "Debug"
369OPTIMIZE = -v -D_RTLDLL -DDEBUGGING
370LINK_DBG = -v
371.ELSE
372OPTIMIZE = -O2 -D_RTLDLL
373LINK_DBG =
374.ENDIF
375
376CFLAGS = -w -g0 -tWM -tWD $(INCLUDES) $(DEFINES) $(LOCDEFS) \
377 $(PCHFLAGS) $(OPTIMIZE)
378LINK_FLAGS = $(LINK_DBG) -L"$(INST_COREDIR)" -L"$(CCLIBDIR)"
379OBJOUT_FLAG = -o
380EXEOUT_FLAG = -e
381LIBOUT_FLAG =
382.IF "$(BCCOLD)" != "define"
383LINK_FLAGS += -Gn
384DEFINES += -D_MT -D__USELOCALES__ -D_WIN32_WINNT=0x0410
385.END
386.IF "$(BCCVCL)" == "define"
387LIBC = cp32mti.lib vcl.lib vcl50.lib vclx50.lib vcle50.lib
388LINK_FLAGS += -L"$(CCLIBDIR)\Release"
389.END
390
391
392.ELIF "$(CCTYPE)" == "GCC"
393
394CC = gcc
395LINK32 = gcc
396LIB32 = ar rc
397IMPLIB = dlltool
398RSC = rc
399
400i = .i
401o = .o
402a = .a
403
404#
405# Options
406#
407
408INCLUDES = -I.\include -I. -I.. -I$(COREDIR)
409DEFINES = -DWIN32 $(CRYPT_FLAG)
410LOCDEFS = -DPERLDLL -DPERL_CORE
411SUBSYS = console
412CXX_FLAG = -xc++
413
414LIBC = -lmsvcrt
415
416# same libs as MSVC
417LIBFILES = $(CRYPT_LIB) $(LIBC) \
418 -lmoldname -lkernel32 -luser32 -lgdi32 \
419 -lwinspool -lcomdlg32 -ladvapi32 -lshell32 -lole32 \
420 -loleaut32 -lnetapi32 -luuid -lwsock32 -lmpr \
421 -lwinmm -lversion -lodbc32
422
423.IF "$(CFG)" == "Debug"
424OPTIMIZE = -g -O2 -DDEBUGGING
425LINK_DBG = -g
426.ELSE
427OPTIMIZE = -g -O2
428LINK_DBG = -g
429.ENDIF
430
431CFLAGS = $(INCLUDES) $(DEFINES) $(LOCDEFS) $(OPTIMIZE)
432LINK_FLAGS = $(LINK_DBG) -L"$(INST_COREDIR)" -L"$(CCLIBDIR)"
433OBJOUT_FLAG = -o
434EXEOUT_FLAG = -o
435LIBOUT_FLAG =
436
437# NOTE: we assume that GCC uses MSVCRT.DLL
438BUILDOPT += -fno-strict-aliasing -DPERL_MSVCRT_READFIX
439
440.ELSE
441
442CC = cl
443LINK32 = link
444LIB32 = $(LINK32) -lib
445RSC = rc
446
447#
448# Options
449#
450
451INCLUDES = -I$(COREDIR) -I.\include -I. -I..
452#PCHFLAGS = -Fpc:\temp\vcmoduls.pch -YX
453DEFINES = -DWIN32 -D_CONSOLE -DNO_STRICT $(CRYPT_FLAG)
454LOCDEFS = -DPERLDLL -DPERL_CORE
455SUBSYS = console
456CXX_FLAG = -TP -GX
457
458.IF "$(USE_PERLCRT)" != "define"
459LIBC = msvcrt.lib
460.ELSE
461LIBC = PerlCRT.lib
462.ENDIF
463
464PERLEXE_RES =
465PERLDLL_RES =
466
467.IF "$(CFG)" == "Debug"
468.IF "$(CCTYPE)" == "MSVC20"
469OPTIMIZE = -Od -MD -Z7 -DDEBUGGING
470LINK_DBG = -debug -pdb:none
471.ELSE
472# -Zi requires .pdb file(s)
473#OPTIMIZE = -Od -MD -Zi -DDEBUGGING
474#LINK_DBG = -debug
475OPTIMIZE = -O1 -MD -Z7 -DDEBUGGING
476LINK_DBG = -debug -debugtype:both -pdb:none
477.ENDIF
478.ELSE
479.IF "$(CFG)" == "Optimize"
480# -O1 yields smaller code, which turns out to be faster than -O2
481#OPTIMIZE = -O2 -MD -DNDEBUG
482OPTIMIZE = -O1 -MD -DNDEBUG
483.ELSE
484OPTIMIZE = -Od -MD -DNDEBUG
485.ENDIF
486LINK_DBG = -release
487.ENDIF
488
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 \
493 version.lib odbc32.lib odbccp32.lib
494
495# we add LIBC here, since we may be using PerlCRT.dll
496LIBFILES = $(LIBBASEFILES) $(LIBC)
497
498CFLAGS = -nologo -Gf -W3 $(INCLUDES) $(DEFINES) $(LOCDEFS) \
499 $(PCHFLAGS) $(OPTIMIZE)
500LINK_FLAGS = -nologo -nodefaultlib $(LINK_DBG) \
501 -libpath:"$(INST_COREDIR)" \
502 -machine:$(PROCESSOR_ARCHITECTURE)
503OBJOUT_FLAG = -Fo
504EXEOUT_FLAG = -Fe
505LIBOUT_FLAG = /out:
506
507.IF "$(USE_PERLCRT)" != "define"
508BUILDOPT += -DPERL_MSVCRT_READFIX
509.ENDIF
510
511.ENDIF
512
513.IF "$(USE_OBJECT)" == "define"
514OPTIMIZE += $(CXX_FLAG)
515BUILDOPT += -DPERL_OBJECT
516.ENDIF
517
518CFLAGS_O = $(CFLAGS) $(BUILDOPT)
519
520# used to allow local linking flags that are not propogated into Config.pm,
521# currently unused
522# -- BKS, 12-12-1999
523PRIV_LINK_FLAGS *=
524BLINK_FLAGS = $(PRIV_LINK_FLAGS) $(LINK_FLAGS)
525
526#################### do not edit below this line #######################
527############# NO USER-SERVICEABLE PARTS BEYOND THIS POINT ##############
528
529o *= .obj
530a *= .lib
531
532LKPRE = INPUT (
533LKPOST = )
534
535#
536# Rules
537#
538
539.SUFFIXES : .c .i $(o) .dll $(a) .exe .rc .res
540
541.c$(o):
542 $(CC) -c $(null,$(<:d) $(NULL) -I$(<:d)) $(CFLAGS_O) $(OBJOUT_FLAG)$@ $<
543
544.c.i:
545 $(CC) -c $(null,$(<:d) $(NULL) -I$(<:d)) $(CFLAGS_O) -E $< >$@
546
547.y.c:
548 $(NOOP)
549
550$(o).dll:
551.IF "$(CCTYPE)" == "BORLAND"
552 $(LINK32) -Tpd -ap $(BLINK_FLAGS) c0d32$(o) $<,$@,,$(LIBFILES),$(*B).def
553 $(IMPLIB) $(*B).lib $@
554.ELIF "$(CCTYPE)" == "GCC"
555 $(LINK32) -o $@ $(BLINK_FLAGS) $< $(LIBFILES)
556 $(IMPLIB) --input-def $(*B).def --output-lib $(*B).a $@
557.ELSE
558 $(LINK32) -dll -subsystem:windows -implib:$(*B).lib -def:$(*B).def \
559 -out:$@ $(BLINK_FLAGS) $(LIBFILES) $< $(LIBPERL)
560.ENDIF
561
562.rc.res:
563 $(RSC) -i.. $<
564
565#
566# various targets
567MINIPERL = ..\miniperl.exe
568MINIDIR = .\mini
569PERLEXE = ..\perl.exe
570WPERLEXE = ..\wperl.exe
571GLOBEXE = ..\perlglob.exe
572CONFIGPM = ..\lib\Config.pm
573MINIMOD = ..\lib\ExtUtils\Miniperl.pm
574X2P = ..\x2p\a2p.exe
575
576# Nominate a target which causes extensions to be re-built
577# This used to be $(PERLEXE), but at worst it is the .dll that they depend
578# on and really only the interface - i.e. the .def file used to export symbols
579# from the .dll
580PERLDEP = perldll.def
581
582
583PL2BAT = bin\pl2bat.pl
584GLOBBAT = bin\perlglob.bat
585
586UTILS = \
587 ..\utils\h2ph \
588 ..\utils\splain \
589 ..\utils\dprofpp \
590 ..\utils\perlbug \
591 ..\utils\pl2pm \
592 ..\utils\c2ph \
593 ..\utils\h2xs \
594 ..\utils\perldoc \
595 ..\utils\perlcc \
596 ..\utils\perlivp \
597 ..\utils\libnetcfg \
598 ..\pod\checkpods \
599 ..\pod\pod2html \
600 ..\pod\pod2latex \
601 ..\pod\pod2man \
602 ..\pod\pod2text \
603 ..\pod\pod2usage \
604 ..\pod\podchecker \
605 ..\pod\podselect \
606 ..\x2p\find2perl \
607 ..\x2p\s2p \
608 ..\lib\ExtUtils\xsubpp \
609 bin\exetype.pl \
610 bin\runperl.pl \
611 bin\pl2bat.pl \
612 bin\perlglob.pl \
613 bin\search.pl
614
615.IF "$(CCTYPE)" == "BORLAND"
616
617CFGSH_TMPL = config.bc
618CFGH_TMPL = config_H.bc
619
620.ELIF "$(CCTYPE)" == "GCC"
621
622CFGSH_TMPL = config.gc
623CFGH_TMPL = config_H.gc
624PERLIMPLIB = ..\libperl57$(a)
625
626.ELSE
627
628CFGSH_TMPL = config.vc
629CFGH_TMPL = config_H.vc
630
631.ENDIF
632
633# makedef.pl must be updated if this changes, and this should normally
634# only change when there is an incompatible revision of the public API.
635# XXX so why did we change it from perl56 to perl57?
636PERLIMPLIB *= ..\perl57$(a)
637PERLDLL = ..\perl57.dll
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 \
669 ..\pp_sys.c \
670 ..\regcomp.c \
671 ..\regexec.c \
672 ..\run.c \
673 ..\scope.c \
674 ..\sv.c \
8a12a0aa 675 ..\sharedsv.c \
1e71036e 676 ..\taint.c \
677 ..\toke.c \
678 ..\universal.c \
679 ..\utf8.c \
680 ..\util.c \
681 ..\xsutils.c
682
683EXTRACORE_SRC += perllib.c
684
685.IF "$(PERL_MALLOC)" == "define"
686EXTRACORE_SRC += ..\malloc.c
687.ENDIF
688
689.IF "$(USE_OBJECT)" != "define"
690EXTRACORE_SRC += ..\perlio.c
691.ENDIF
692
693WIN32_SRC = \
694 .\win32.c \
695 .\win32io.c \
696 .\win32sck.c \
697 .\win32thread.c
698
699.IF "$(CRYPT_SRC)" != ""
700WIN32_SRC += .\$(CRYPT_SRC)
701.ENDIF
702
703DLL_SRC = $(DYNALOADER).c
704
705X2P_SRC = \
706 ..\x2p\a2p.c \
707 ..\x2p\hash.c \
708 ..\x2p\str.c \
709 ..\x2p\util.c \
710 ..\x2p\walk.c
711
712CORE_NOCFG_H = \
713 ..\av.h \
714 ..\cop.h \
715 ..\cv.h \
716 ..\dosish.h \
717 ..\embed.h \
718 ..\form.h \
719 ..\gv.h \
720 ..\handy.h \
721 ..\hv.h \
722 ..\iperlsys.h \
723 ..\mg.h \
724 ..\nostdio.h \
725 ..\op.h \
726 ..\opcode.h \
727 ..\perl.h \
728 ..\perlapi.h \
729 ..\perlsdio.h \
730 ..\perlsfio.h \
731 ..\perly.h \
732 ..\pp.h \
733 ..\proto.h \
734 ..\regexp.h \
735 ..\scope.h \
8a12a0aa 736 ..\sharedsv.h \
1e71036e 737 ..\sv.h \
738 ..\thread.h \
739 ..\unixish.h \
740 ..\utf8.h \
741 ..\util.h \
742 ..\warnings.h \
743 ..\XSUB.h \
744 ..\EXTERN.h \
745 ..\perlvars.h \
746 ..\intrpvar.h \
747 ..\thrdvar.h \
748 .\include\dirent.h \
749 .\include\netdb.h \
750 .\include\sys\socket.h \
751 .\win32.h
752
753CORE_H = $(CORE_NOCFG_H) .\config.h
754
755MICROCORE_OBJ = $(MICROCORE_SRC:db:+$(o))
756CORE_OBJ = $(MICROCORE_OBJ) $(EXTRACORE_SRC:db:+$(o))
757WIN32_OBJ = $(WIN32_SRC:db:+$(o))
758MINICORE_OBJ = $(MINIDIR)\{$(MICROCORE_OBJ:f) miniperlmain$(o) perlio$(o)}
759MINIWIN32_OBJ = $(MINIDIR)\{$(WIN32_OBJ:f)}
760MINI_OBJ = $(MINICORE_OBJ) $(MINIWIN32_OBJ)
761DLL_OBJ = $(DLL_SRC:db:+$(o))
762X2P_OBJ = $(X2P_SRC:db:+$(o))
763
764PERLDLL_OBJ = $(CORE_OBJ)
765PERLEXE_OBJ = perlmain$(o)
766
767PERLDLL_OBJ += $(WIN32_OBJ) $(DLL_OBJ)
768
769.IF "$(USE_SETARGV)" != ""
770SETARGV_OBJ = setargv$(o)
771.ENDIF
772
773DYNAMIC_EXT = Socket IO Fcntl Opcode SDBM_File POSIX attrs Thread B re \
774 Data/Dumper Devel/Peek ByteLoader Devel/DProf File/Glob \
775 Sys/Hostname Storable Filter/Util/Call Encode \
776 Digest/MD5 PerlIO/Scalar MIME/Base64 Time/HiRes
777STATIC_EXT = DynaLoader
778NONXS_EXT = Errno
779
780DYNALOADER = $(EXTDIR)\DynaLoader\DynaLoader
781
782POD2HTML = $(PODDIR)\pod2html
783POD2MAN = $(PODDIR)\pod2man
784POD2LATEX = $(PODDIR)\pod2latex
785POD2TEXT = $(PODDIR)\pod2text
786
787# vars must be separated by "\t+~\t+", since we're using the tempfile
788# version of config_sh.pl (we were overflowing someone's buffer by
789# trying to fit them all on the command line)
790# -- BKS 10-17-1999
791CFG_VARS = \
792 INST_DRV=$(INST_DRV) ~ \
793 INST_TOP=$(INST_TOP:s/\/\\/) ~ \
794 INST_VER=$(INST_VER:s/\/\\/) ~ \
795 INST_ARCH=$(INST_ARCH) ~ \
796 archname=$(ARCHNAME) ~ \
797 cc=$(CC) ~ \
798 ld=$(LINK32) ~ \
799 ccflags=$(OPTIMIZE) $(DEFINES) $(BUILDOPT) ~ \
800 cf_email=$(EMAIL) ~ \
801 d_crypt=$(D_CRYPT) ~ \
802 d_mymalloc=$(PERL_MALLOC) ~ \
803 libs=$(LIBFILES:f) ~ \
804 incpath=$(CCINCDIR:s/\/\\/) ~ \
805 libperl=$(PERLIMPLIB:f) ~ \
806 libpth=$(CCLIBDIR:s/\/\\/);$(EXTRALIBDIRS:s/\/\\/) ~ \
807 libc=$(LIBC) ~ \
808 make=dmake ~ \
809 _o=$(o) obj_ext=$(o) ~ \
810 _a=$(a) lib_ext=$(a) ~ \
811 static_ext=$(STATIC_EXT) ~ \
812 use5005threads=$(USE_5005THREADS) ~ \
813 useithreads=$(USE_ITHREADS) ~ \
814 usethreads=$(USE_5005THREADS) ~ \
815 usemultiplicity=$(USE_MULTI) ~ \
816 useperlio=$(USE_PERLIO) ~ \
817 LINK_FLAGS=$(LINK_FLAGS:s/\/\\/) ~ \
818 optimize=$(OPTIMIZE)
819
820#
821# set up targets varying between Win95 and WinNT builds
822#
823
824.IF "$(IS_WIN95)" == "define"
825MK2 = .\makefile.95
826RIGHTMAKE = __switch_makefiles
827NOOP = @rem
828.ELSE
829MK2 = __not_needed
830RIGHTMAKE =
831.ENDIF
832
833#
834# Top targets
835#
836
837all : .\config.h $(GLOBEXE) $(MINIPERL) $(MK2) \
838 $(RIGHTMAKE) $(MINIMOD) $(CONFIGPM) $(PERLEXE) \
839 $(X2P) Extensions
840
841$(DYNALOADER)$(o) : $(DYNALOADER).c $(CORE_H) $(EXTDIR)\DynaLoader\dlutils.c
842
843#----------------------------------------------------------------
844
845#-------------------- BEGIN Win95 SPECIFIC ----------------------
846
847# this target is a jump-off point for Win95
848# 1. it switches to the Win95-specific makefile if it exists
849# (__do_switch_makefiles)
850# 2. it prints a message when the Win95-specific one finishes (__done)
851# 3. it then kills this makefile by trying to make __no_such_target
852
853__switch_makefiles: __do_switch_makefiles __done __no_such_target
854
855__do_switch_makefiles:
856.IF "$(NOTFIRST)" != "true"
857 if exist $(MK2) $(MAKE:s/-S//) -f $(MK2) $(MAKETARGETS) NOTFIRST=true
858.ELSE
859 $(NOOP)
860.ENDIF
861
862.IF "$(NOTFIRST)" != "true"
863__done:
864 @echo Build process complete. Ignore any errors after this message.
865 @echo Run "dmake test" to test and "dmake install" to install
866
867.ELSE
868# dummy targets for Win95-specific makefile
869
870__done:
871 $(NOOP)
872
873__no_such_target:
874 $(NOOP)
875
876.ENDIF
877
878# This target is used to generate the new makefile (.\makefile.95) for Win95
879
880.\makefile.95: .\makefile.mk
881 $(MINIPERL) genmk95.pl makefile.mk $(MK2)
882
883#--------------------- END Win95 SPECIFIC ---------------------
884
885# a blank target for when builds don't need to do certain things
886# this target added for Win95 port but used to keep the WinNT port able to
887# use this file
888__not_needed:
889 $(NOOP)
890
891$(GLOBEXE) : perlglob$(o)
892.IF "$(CCTYPE)" == "BORLAND"
893 $(CC) -c -w -v -tWM -I"$(CCINCDIR)" perlglob.c
894 $(LINK32) -Tpe -ap $(BLINK_FLAGS) c0x32$(o) perlglob$(o) \
895 "$(CCLIBDIR)\32BIT\wildargs$(o)",$@,,import32.lib cw32mt.lib,
896.ELIF "$(CCTYPE)" == "GCC"
897 $(LINK32) $(BLINK_FLAGS) -mconsole -o $@ perlglob$(o) $(LIBFILES)
898.ELSE
899 $(LINK32) $(BLINK_FLAGS) $(LIBFILES) -out:$@ -subsystem:$(SUBSYS) \
900 perlglob$(o) setargv$(o)
901.ENDIF
902
903perlglob$(o) : perlglob.c
904
905config.w32 : $(CFGSH_TMPL)
906 copy $(CFGSH_TMPL) config.w32
907
908.\config.h : $(CFGH_TMPL) $(CORE_NOCFG_H)
909 -del /f config.h
910 copy $(CFGH_TMPL) config.h
911
912..\config.sh : config.w32 $(MINIPERL) config_sh.PL FindExt.pm
913 $(MINIPERL) -I..\lib config_sh.PL --cfgsh-option-file \
914 $(mktmp $(CFG_VARS)) config.w32 > ..\config.sh
915
916# this target is for when changes to the main config.sh happen
917# edit config.{b,v,g}c and make this target once for each supported
918# compiler (e.g. `dmake CCTYPE=BORLAND regen_config_h`)
919regen_config_h:
920 perl config_sh.PL --cfgsh-option-file $(mktmp $(CFG_VARS)) \
921 $(CFGSH_TMPL) > ..\config.sh
922 -cd .. && del /f perl.exe
923 cd .. && perl configpm
924 -del /f $(CFGH_TMPL)
925 -mkdir $(COREDIR)
926 -perl -I..\lib config_h.PL "INST_VER=$(INST_VER)"
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
966.IF "$(USE_IMP_SYS)$(USE_OBJECT)" == "defineundef"
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#----------------------------------------------------------------------------------
1080Extensions : buildext.pl $(PERLDEP) $(CONFIGPM)
1081 $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR)
1082
1083Extensions_clean :
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
1106 copy ..\README.hpux ..\pod\perlhpux.pod
1107 copy ..\README.hurd ..\pod\perlhurd.pod
1108 copy ..\README.machten ..\pod\perlmachten.pod
1109 copy ..\README.macos ..\pod\perlmacos.pod
1110 copy ..\README.mint ..\pod\perlmint.pod
1111 copy ..\README.mpeix ..\pod\perlmpeix.pod
1112 copy ..\README.netware ..\pod\perlnetware.pod
1113 copy ..\README.os2 ..\pod\perlos2.pod
1114 copy ..\README.os390 ..\pod\perlos390.pod
1115 copy ..\README.plan9 ..\pod\perlplan9.pod
1116 copy ..\README.qnx ..\pod\perlqnx.pod
1117 copy ..\README.solaris ..\pod\perlsolaris.pod
1118 copy ..\README.tru64 ..\pod\perltru64.pod
1119 copy ..\README.uts ..\pod\perluts.pod
1120 copy ..\README.vmesa ..\pod\perlvmesa.pod
1121 copy ..\vms\perlvms.pod ..\pod\perlvms.pod
1122 copy ..\README.vos ..\pod\perlvos.pod
1123 copy ..\README.win32 ..\pod\perlwin32.pod
1124 cd ..\pod && $(MAKE) -f ..\win32\pod.mak converters
1125 cd ..\lib && $(PERLEXE) lib_pm.PL
1126 $(PERLEXE) $(PL2BAT) $(UTILS)
1127
1128distclean: clean
1129 -del /f $(MINIPERL) $(PERLEXE) $(PERLDLL) $(GLOBEXE) \
1130 $(PERLIMPLIB) ..\miniperl$(a) $(MINIMOD)
1131 -del /f *.def *.map
1132 -del /f $(EXTDIR)\DynaLoader\dl_win32.xs
1133 -del /f $(LIBDIR)\.exists $(LIBDIR)\attrs.pm $(LIBDIR)\DynaLoader.pm
1134 -del /f $(LIBDIR)\XSLoader.pm
1135 -del /f $(LIBDIR)\Fcntl.pm $(LIBDIR)\IO.pm $(LIBDIR)\Opcode.pm
1136 -del /f $(LIBDIR)\ops.pm $(LIBDIR)\Safe.pm $(LIBDIR)\Thread.pm
1137 -del /f $(LIBDIR)\SDBM_File.pm $(LIBDIR)\Socket.pm $(LIBDIR)\POSIX.pm
1138 -del /f $(LIBDIR)\B.pm $(LIBDIR)\O.pm $(LIBDIR)\re.pm
1139 -del /f $(LIBDIR)\Data\Dumper.pm $(LIBDIR)\ByteLoader.pm
1140 -del /f $(LIBDIR)\PerlIO\Scalar.pm
1141 -del /f $(LIBDIR)\Devel\Peek.pm $(LIBDIR)\Devel\DProf.pm
1142 -del /f $(LIBDIR)\File\Glob.pm
1143 -del /f $(LIBDIR)\Storable.pm
1144 -del /f $(LIBDIR)\Filter\Util\Call.pm
1145 -del /f $(LIBDIR)\Digest\MD5.pm
1146 -del /f $(LIBDIR)\MIME\Base64.pm
1147 -del /f $(LIBDIR)\MIME\QuotedPrint.pm
1148 -del /f $(LIBDIR)\Time\HiRes.pm
1149 -del /f $(LIBDIR)\List\Util.pm
1150 -del /f $(LIBDIR)\Scalar\Util.pm
1151 -if exist $(LIBDIR)\IO rmdir /s /q $(LIBDIR)\IO || rmdir /s $(LIBDIR)\IO
1152 -if exist $(LIBDIR)\Thread rmdir /s /q $(LIBDIR)\Thread || rmdir /s $(LIBDIR)\Thread
1153 -if exist $(LIBDIR)\B rmdir /s /q $(LIBDIR)\B || rmdir /s $(LIBDIR)\B
1154 -if exist $(LIBDIR)\Data rmdir /s /q $(LIBDIR)\Data || rmdir /s $(LIBDIR)\Data
1155 -if exist $(LIBDIR)\Filter\Util\Call rmdir /s /q $(LIBDIR)\Filter\Util\Call || rmdir /s $(LIBDIR)\Filter
1156 -if exist $(LIBDIR)\Filter\Util rmdir /s /q $(LIBDIR)\Filter\Util || rmdir /s $(LIBDIR)\Filter
1157 -if exist $(LIBDIR)\Digest rmdir /s /q $(LIBDIR)\Digest || rmdir /s $(LIBDIR)\Digest
1158 -if exist $(LIBDIR)\MIME rmdir /s /q $(LIBDIR)\MIME || rmdir /s $(LIBDIR)\MIME
1159 -if exist $(LIBDIR)\List rmdir /s /q $(LIBDIR)\List || rmdir /s $(LIBDIR)\List
1160 -if exist $(LIBDIR)\Scalar rmdir /s /q $(LIBDIR)\Scalar || rmdir /s $(LIBDIR)\Scalar
1161 -cd $(PODDIR) && del /f *.html *.bat checkpods \
1162 perlaix.pod perlamiga.pod perlapollo.pod \
1163 perlbeos.pod perlbs2000.pod perlce.pod perlcygwin.pod perldgux.pod \
1164 perldos.pod perlepoc.pod perlhpux.pod perlhurd.pod \
1165 perlmachten.pod perlmint.pod \
1166 perlmacos.pod perlmpeix.pod perlnetware.pod \
1167 perlos2.pod perlos390.pod \
1168 perlplan9.pod perlqnx.pod \
1169 perlsolaris.pod perltru64.pod perluts.pod \
1170 perlvmesa.pod perlvms.pod perlvos.pod \
1171 perlwin32.pod pod2html pod2latex pod2man pod2text pod2usage \
1172 podchecker podselect
1173 -cd ..\utils && del /f h2ph splain perlbug pl2pm c2ph h2xs perldoc \
1174 perlivp dprofpp *.bat
1175 -cd ..\x2p && del /f find2perl s2p *.bat
1176 -del /f ..\config.sh ..\splittree.pl perlmain.c dlutils.c config.h.new
1177 -del /f $(CONFIGPM)
1178 -del /f bin\*.bat
1179 -cd $(EXTDIR) && del /s *$(a) *.def *.map *.pdb *.bs Makefile *$(o) \
1180 pm_to_blib
1181 -if exist $(AUTODIR) rmdir /s /q $(AUTODIR) || rmdir /s $(AUTODIR)
1182 -if exist $(COREDIR) rmdir /s /q $(COREDIR) || rmdir /s $(COREDIR)
1183
1184install : all installbare installhtml
1185
1186installbare : $(RIGHTMAKE) utils
1187 $(PERLEXE) ..\installperl
1188 if exist $(WPERLEXE) $(XCOPY) $(WPERLEXE) $(INST_BIN)\*.*
1189 $(XCOPY) $(GLOBEXE) $(INST_BIN)\*.*
1190 $(XCOPY) bin\*.bat $(INST_SCRIPT)\*.*
1191
1192installhtml : doc
1193 $(RCOPY) html\*.* $(INST_HTML)\*.*
1194
1195inst_lib : $(CONFIGPM)
1196 copy splittree.pl ..
1197 $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR)
1198 $(RCOPY) ..\lib $(INST_LIB)\*.*
1199
1200minitest : $(MINIPERL) $(GLOBEXE) $(CONFIGPM) utils
1201 $(XCOPY) $(MINIPERL) ..\t\perl.exe
1202.IF "$(CCTYPE)" == "BORLAND"
1203 $(XCOPY) $(GLOBBAT) ..\t\$(NULL)
1204.ELSE
1205 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1206.ENDIF
1207 attrib -r ..\t\*.*
1208 copy test ..\t
1209 cd ..\t && \
1210 $(MINIPERL) -I..\lib test base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t
1211
1212test-prep : all utils
1213 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1214 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1215.IF "$(CCTYPE)" == "BORLAND"
1216 $(XCOPY) $(GLOBBAT) ..\t\$(NULL)
1217.ELSE
1218 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1219.ENDIF
1220
1221test : $(RIGHTMAKE) test-prep
1222 cd ..\t && $(PERLEXE) -I..\lib harness
1223
1224test-notty : test-prep
1225 set PERL_SKIP_TTY_TEST=1 && \
1226 cd ..\t && $(PERLEXE) -I.\lib harness
1227
1228test-wide : test-prep
1229 set HARNESS_PERL_SWITCHES=-C && \
1230 cd ..\t && $(PERLEXE) -I..\lib harness
1231
1232test-wide-notty : test-prep
1233 set PERL_SKIP_TTY_TEST=1 && \
1234 set HARNESS_PERL_SWITCHES=-C && \
1235 cd ..\t && $(PERLEXE) -I..\lib harness
1236
1237clean : Extensions_clean
1238 -@erase miniperlmain$(o)
1239 -@erase $(MINIPERL)
1240 -@erase perlglob$(o)
1241 -@erase perlmain$(o)
1242 -@erase config.w32
1243 -@erase /f config.h
1244 -@erase $(GLOBEXE)
1245 -@erase $(PERLEXE)
1246 -@erase $(WPERLEXE)
1247 -@erase $(PERLDLL)
1248 -@erase $(CORE_OBJ)
1249 -if exist $(MINIDIR) rmdir /s /q $(MINIDIR) || rmdir /s $(MINIDIR)
1250 -@erase $(WIN32_OBJ)
1251 -@erase $(DLL_OBJ)
1252 -@erase $(X2P_OBJ)
1253 -@erase ..\*$(o) ..\*$(a) ..\*.exp *$(o) *$(a) *.exp *.res
1254 -@erase ..\t\*.exe ..\t\*.dll ..\t\*.bat
1255 -@erase ..\x2p\*.exe ..\x2p\*.bat
1256 -@erase *.ilk
1257 -@erase *.pdb
1258
1259# Handy way to run perlbug -ok without having to install and run the
1260# installed perlbug. We don't re-run the tests here - we trust the user.
1261# Please *don't* use this unless all tests pass.
1262# If you want to report test failures, use "dmake nok" instead.
1263ok: utils
1264 $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)"
1265
1266okfile: utils
1267 $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)" -F perl.ok
1268
1269nok: utils
1270 $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)"
1271
1272nokfile: utils
1273 $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)" -F perl.nok