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