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