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