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