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