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