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