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