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