per Larry's idea, parse 1.2.3 as v1.2.3; C<require 5.6.0> and
[p5sagit/p5-mst-13.2.git] / win32 / makefile.mk
CommitLineData
08aa1457 1#
e7083a8c 2# Makefile to build perl on Windows NT using DMAKE.
d56e6723 3# Supported compilers:
5db10396 4# Visual C++ 2.0 thro 6.0
d56e6723 5# Borland C++ 5.02
5db10396 6# Mingw32 with gcc-2.95.2 or better **experimental**
08aa1457 7#
8# This is set up to build a perl.exe that runs off a shared library
9# (perl.dll). Also makes individual DLLs for the XS extensions.
10#
11
e7083a8c 12##
69e1fe5e 13## Make sure you read README.win32 *before* you mess with anything here!
14##
15
16##
e7083a8c 17## Build configuration. Edit the values below to suit your needs.
18##
19
08aa1457 20#
7a958ec3 21# Set these to wherever you want "dmake install" to put your
08aa1457 22# newly built perl.
e7083a8c 23#
d56e6723 24INST_DRV *= c:
e5a95ffb 25INST_TOP *= $(INST_DRV)\perl
26
e7083a8c 27#
e5a95ffb 28# Comment this out if you DON'T want your perl installation to be versioned.
29# This means that the new installation will overwrite any files from the
30# old installation at the same INST_TOP location. Leaving it enabled is
31# the safest route, as perl adds the extra version directory to all the
32# locations it installs files to. If you disable it, an alternative
33# versioned installation can be obtained by setting INST_TOP above to a
34# path that includes an arbitrary version string.
e7083a8c 35#
bf6c18a6 36INST_VER *= \5.5.660
d56e6723 37
38#
0cb96387 39# Comment this out if you DON'T want your perl installation to have
40# architecture specific components. This means that architecture-
41# specific files will be installed along with the architecture-neutral
42# files. Leaving it enabled is safer and more flexible, in case you
43# want to build multiple flavors of perl and install them together in
44# the same location. Commenting it out gives you a simpler
45# installation that is easier to understand for beginners.
46#
47INST_ARCH *= \$(ARCHNAME)
48
49#
d08ede9a 50# uncomment to enable multiple interpreters. This is need for fork()
51# emulation.
c5be433b 52#
d08ede9a 53#USE_MULTI *= define
08aa1457 54
55#
d08ede9a 56# XXX WARNING! This option is still very experimental. May be broken.
c5be433b 57#
d08ede9a 58# Beginnings of interpreter cloning/threads; still very incomplete.
59# This should be enabled to get the fork() emulation. This needs
60# USE_MULTI as well.
b86a2fa7 61#
d08ede9a 62#USE_ITHREADS *= define
b86a2fa7 63
64#
d08ede9a 65# uncomment to enable the implicit "host" layer for all system calls
66# made by perl. This needs USE_MULTI above. This is also needed to
67# get fork().
c5be433b 68#
d08ede9a 69#USE_IMP_SYS *= define
c5be433b 70
71#
d08ede9a 72# WARNING! This option is deprecated and will eventually go away (enable
73# USE_ITHREADS instead).
7766f137 74#
d08ede9a 75# uncomment to enable threads-capabilities. This is incompatible with
76# USE_ITHREADS, and is only here for people who may have come to rely
77# on the experimental Thread support that was in 5.005.
7766f137 78#
d08ede9a 79#USE_5005THREADS *= define
7766f137 80
81#
d08ede9a 82# WARNING! This option is deprecated and will eventually go away (enable
83# USE_MULTI instead).
7766f137 84#
d08ede9a 85# uncomment next line if you want to use the PERL_OBJECT build option.
86# DO NOT ENABLE unless you have legacy code that relies on the C++
87# CPerlObj class that was available in 5.005. This cannot be enabled
88# if you ask for USE_5005THREADS above.
89#
90#USE_OBJECT *= define
7766f137 91
92#
7fac1903 93# uncomment exactly one of the following
94#
95# Visual C++ 2.x
d56e6723 96#CCTYPE *= MSVC20
7fac1903 97# Visual C++ > 2.x and < 6.x
d56e6723 98#CCTYPE *= MSVC
7fac1903 99# Visual C++ >= 6.x
100#CCTYPE *= MSVC60
101# Borland 5.02 or later
7a1f88ac 102#CCTYPE *= BORLAND
103# mingw32+gcc-2.95.2 or better
104CCTYPE *= GCC
08aa1457 105
106#
04dc9db9 107# uncomment this if you are compiling under Windows 95/98 and command.com
108# (not needed if you're running under 4DOS/NT 6.01 or later)
109#IS_WIN95 *= define
110
111#
08aa1457 112# uncomment next line if you want debug version of perl (big,slow)
7fac1903 113# If not enabled, we automatically try to use maximum optimization
114# with all compilers that are known to have a working optimizer.
e7083a8c 115#
d56e6723 116#CFG *= Debug
08aa1457 117
118#
5db10396 119# uncomment to enable use of PerlCRT.DLL when using the Visual C compiler.
120# It has patches that fix known bugs in older versions of MSVCRT.DLL.
121# This currently requires VC 5.0 with Service Pack 3 or later.
b89743e8 122# Get it from CPAN at http://www.perl.com/CPAN/authors/id/D/DO/DOUGL/
e9ee4811 123# and follow the directions in the package to install.
e7083a8c 124#
f7aeb604 125# Not recommended if you have VC 6.x and you're not running Windows 9x.
126#
e7083a8c 127#USE_PERLCRT *= define
128
129#
baed7233 130# uncomment to enable linking with setargv.obj under the Visual C
131# compiler. Setting this options enables perl to expand wildcards in
132# arguments, but it may be harder to use alternate methods like
133# File::DosGlob that are more powerful. This option is supported only with
134# Visual C.
135#
136#USE_SETARGV *= define
137
138#
26618a56 139# if you have the source for des_fcrypt(), uncomment this and make sure the
8d9b2e3c 140# file exists (see README.win32). File should be located in the same
ff95b63e 141# directory as this file.
e7083a8c 142#
2d77217b 143#CRYPT_SRC *= fcrypt.c
26618a56 144
145#
146# if you didn't set CRYPT_SRC and if you have des_fcrypt() available in a
147# library, uncomment this, and make sure the library exists (see README.win32)
a1dd9325 148# Specify the full pathname of the library.
e7083a8c 149#
2d77217b 150#CRYPT_LIB *= fcrypt.lib
26618a56 151
152#
1c1c7f20 153# set this if you wish to use perl's malloc
154# WARNING: Turning this on/off WILL break binary compatibility with extensions
5fd76c3e 155# you may have compiled with/without it. Be prepared to recompile all
156# extensions if you change the default. Currently, this cannot be enabled
d08ede9a 157# if you ask for USE_IMP_SYS above.
e7083a8c 158#
ac4c12e7 159#PERL_MALLOC *= define
1c1c7f20 160
161#
08aa1457 162# set the install locations of the compiler include/libraries
69e1fe5e 163# Running VCVARS32.BAT is *required* when using Visual C.
95883bf3 164# Some versions of Visual C don't define MSVCDIR in the environment,
80252599 165# so you may have to set CCHOME explicitly (spaces in the path name should
166# not be quoted)
a8deba26 167#
7a1f88ac 168#CCHOME *= c:\bc5
95883bf3 169#CCHOME *= $(MSVCDIR)
7a1f88ac 170CCHOME *= c:\gcc-2.95.2-msvcrt
d56e6723 171CCINCDIR *= $(CCHOME)\include
172CCLIBDIR *= $(CCHOME)\lib
08aa1457 173
174#
c39cd008 175# Additional compiler flags can be specified here.
e02fdbd2 176#
c39cd008 177
178#
179# This should normally be disabled. Adding -DPERL_POLLUTE enables support
180# for old symbols by default, at the expense of extreme pollution. You most
181# probably just want to build modules that won't compile with
182# perl Makefile.PL POLLUTE=1
183# instead of enabling this. Please report such modules to the respective
184# authors.
e02fdbd2 185#
c5be433b 186#BUILDOPT += -DPERL_POLLUTE
e02fdbd2 187
188#
c39cd008 189# This should normally be disabled. Enabling it will disable the File::Glob
190# implementation of CORE::glob.
a7089531 191#
52bb0670 192#BUILDOPT += -DPERL_EXTERNAL_GLOB
a7089531 193
c39cd008 194#
195# This should normally be disabled. Enabling it causes perl to read scripts
196# in text mode (which is the 5.005 behavior) and will break ByteLoader.
e68cb057 197#BUILDOPT += -DPERL_TEXTMODE_SCRIPTS
5db10396 198
c39cd008 199#
200# This should normally be disabled. Enabling it runs a cloned toplevel
201# interpreter (*EXPERIMENTAL*, fails tests)
7766f137 202#BUILDOPT += -DTOP_CLONE
203
a7089531 204#
80252599 205# specify semicolon-separated list of extra directories that modules will
206# look for libraries (spaces in path names need not be quoted)
fa4efe8e 207#
208EXTRALIBDIRS *=
209
210#
08aa1457 211# set this to point to cmd.exe (only needed if you use some
212# alternate shell that doesn't grok cmd.exe style commands)
e7083a8c 213#
d56e6723 214#SHELL *= g:\winnt\system32\cmd.exe
08aa1457 215
216#
217# set this to your email address (perl will guess a value from
218# from your loginname and your hostname, which may not be right)
e7083a8c 219#
0b94c7bb 220#EMAIL *=
08aa1457 221
e7083a8c 222##
223## Build configuration ends.
224##
225
08aa1457 226##################### CHANGE THESE ONLY IF YOU MUST #####################
227
26618a56 228.IF "$(CRYPT_SRC)$(CRYPT_LIB)" == ""
eb480a0b 229D_CRYPT = undef
26618a56 230.ELSE
eb480a0b 231D_CRYPT = define
232CRYPT_FLAG = -DHAVE_DES_FCRYPT
26618a56 233.ENDIF
234
c5be433b 235.IF "$(USE_OBJECT)" == "define"
eb480a0b 236PERL_MALLOC != undef
aaacdc8b 237USE_5005THREADS != undef
b86a2fa7 238USE_MULTI != undef
7766f137 239USE_IMP_SYS != define
1c1c7f20 240.ENDIF
241
eb480a0b 242PERL_MALLOC *= undef
243
aaacdc8b 244USE_5005THREADS *= undef
7766f137 245
aaacdc8b 246.IF "$(USE_5005THREADS)" == "define"
7766f137 247USE_ITHREADS != undef
248.ENDIF
249
d08ede9a 250.IF "$(USE_IMP_SYS)" == "define"
251PERL_MALLOC != undef
252.ENDIF
253
b86a2fa7 254USE_MULTI *= undef
3bb366e1 255USE_OBJECT *= undef
7766f137 256USE_ITHREADS *= undef
257USE_IMP_SYS *= undef
f7aeb604 258USE_PERLCRT *= undef
eb480a0b 259
6f4183fe 260.IF "$(USE_IMP_SYS)$(USE_MULTI)$(USE_5005THREADS)$(USE_OBJECT)" == "defineundefundefundef"
261USE_MULTI != define
262.ENDIF
263
264.IF "$(USE_ITHREADS)$(USE_MULTI)$(USE_OBJECT)" == "defineundefundef"
265USE_MULTI != define
266USE_5005THREADS != undef
267.ENDIF
268
aaacdc8b 269.IF "$(USE_MULTI)$(USE_5005THREADS)$(USE_OBJECT)" != "undefundefundef"
0b94c7bb 270BUILDOPT += -DPERL_IMPLICIT_CONTEXT
271.ENDIF
272
7766f137 273.IF "$(USE_IMP_SYS)" != "undef"
274BUILDOPT += -DPERL_IMPLICIT_SYS
275.ENDIF
0b94c7bb 276
d07c2202 277.IMPORT .IGNORE : PROCESSOR_ARCHITECTURE
278
279PROCESSOR_ARCHITECTURE *= x86
280
c5be433b 281.IF "$(USE_OBJECT)" == "define"
b83ac84c 282ARCHNAME = MSWin32-$(PROCESSOR_ARCHITECTURE)-object
aaacdc8b 283.ELIF "$(USE_5005THREADS)" == "define"
d07c2202 284ARCHNAME = MSWin32-$(PROCESSOR_ARCHITECTURE)-thread
c5be433b 285.ELIF "$(USE_MULTI)" == "define"
286ARCHNAME = MSWin32-$(PROCESSOR_ARCHITECTURE)-multi
924b3ec4 287.ELSE
288ARCHNAME = MSWin32-$(PROCESSOR_ARCHITECTURE)
d07c2202 289.ENDIF
290
7a1f88ac 291.IF "$(USE_ITHREADS)" == "define"
292ARCHNAME !:= $(ARCHNAME)-thread
aaacdc8b 293.ENDIF
294
7fac1903 295# Visual Studio 98 specific
296.IF "$(CCTYPE)" == "MSVC60"
297
298# VC 6.0 can load the socket dll on demand. Makes the test suite
299# run in about 10% less time.
300DELAYLOAD *= -DELAYLOAD:wsock32.dll delayimp.lib
301
302# VC 6.0 seems capable of compiling perl correctly with optimizations
303# enabled. Anything earlier fails tests.
304CFG *= Optimize
305.ENDIF
306
28004758 307ARCHDIR = ..\lib\$(ARCHNAME)
d07c2202 308COREDIR = ..\lib\CORE
eb480a0b 309AUTODIR = ..\lib\auto
28004758 310LIBDIR = ..\lib
311EXTDIR = ..\ext
312PODDIR = ..\pod
313EXTUTILSDIR = $(LIBDIR)\ExtUtils
314
315#
316INST_SCRIPT = $(INST_TOP)$(INST_VER)\bin
317INST_BIN = $(INST_SCRIPT)$(INST_ARCH)
318INST_LIB = $(INST_TOP)$(INST_VER)\lib
319INST_ARCHLIB = $(INST_LIB)$(INST_ARCH)
320INST_COREDIR = $(INST_ARCHLIB)\CORE
321INST_POD = $(INST_LIB)\pod
322INST_HTML = $(INST_POD)\html
d07c2202 323
08aa1457 324#
325# Programs to compile, build .lib files and link
326#
327
328.USESHELL :
329
330.IF "$(CCTYPE)" == "BORLAND"
331
eb480a0b 332CC = bcc32
333LINK32 = tlink32
064a70d4 334LIB32 = tlib /P128
eb480a0b 335IMPLIB = implib -c
fd9459bc 336RSC = rc
08aa1457 337
338#
339# Options
340#
eb480a0b 341RUNTIME = -D_RTLDLL
80252599 342INCLUDES = -I$(COREDIR) -I.\include -I. -I.. -I"$(CCINCDIR)"
eb480a0b 343#PCHFLAGS = -H -Hc -H=c:\temp\bcmoduls.pch
c5be433b 344DEFINES = -DWIN32 $(CRYPT_FLAG)
eb480a0b 345LOCDEFS = -DPERLDLL -DPERL_CORE
346SUBSYS = console
347CXX_FLAG = -P
08aa1457 348
eb480a0b 349LIBC = cw32mti.lib
350LIBFILES = $(CRYPT_LIB) import32.lib $(LIBC) odbc32.lib odbccp32.lib
08aa1457 351
352.IF "$(CFG)" == "Debug"
eb480a0b 353OPTIMIZE = -v $(RUNTIME) -DDEBUGGING
354LINK_DBG = -v
08aa1457 355.ELSE
6a6688c3 356OPTIMIZE = -O2 $(RUNTIME)
eb480a0b 357LINK_DBG =
08aa1457 358.ENDIF
359
a88c3d7c 360CFLAGS = -w -g0 -tWM -tWD $(INCLUDES) $(DEFINES) $(LOCDEFS) \
eb480a0b 361 $(PCHFLAGS) $(OPTIMIZE)
28004758 362LINK_FLAGS = $(LINK_DBG) -L"$(INST_COREDIR)" -L"$(CCLIBDIR)"
eb480a0b 363OBJOUT_FLAG = -o
364EXEOUT_FLAG = -e
064a70d4 365LIBOUT_FLAG =
d56e6723 366
367.ELIF "$(CCTYPE)" == "GCC"
368
3b657871 369CC = gcc
370LINK32 = gcc
064a70d4 371LIB32 = ar rc
eb480a0b 372IMPLIB = dlltool
fd9459bc 373RSC = rc
d56e6723 374
375o = .o
eda5ff31 376a = .a
d56e6723 377
378#
379# Options
380#
7a958ec3 381
5db10396 382RUNTIME =
9036c72f 383INCLUDES = -I$(COREDIR) -I.\include -I. -I..
c5be433b 384DEFINES = -DWIN32 $(CRYPT_FLAG)
eb480a0b 385LOCDEFS = -DPERLDLL -DPERL_CORE
386SUBSYS = console
387CXX_FLAG = -xc++
d56e6723 388
5db10396 389LIBC = -lmsvcrt
7a958ec3 390
5db10396 391# same libs as MSVC
392LIBFILES = $(CRYPT_LIB) $(LIBC) \
393 -lmoldname -lkernel32 -luser32 -lgdi32 \
394 -lwinspool -lcomdlg32 -ladvapi32 -lshell32 -lole32 \
395 -loleaut32 -lnetapi32 -luuid -lwsock32 -lmpr \
396 -lwinmm -lversion -lodbc32
d56e6723 397
398.IF "$(CFG)" == "Debug"
2b260de0 399OPTIMIZE = -g $(RUNTIME) -DDEBUGGING
eb480a0b 400LINK_DBG = -g
d56e6723 401.ELSE
eb480a0b 402OPTIMIZE = -g -O2 $(RUNTIME)
403LINK_DBG =
d56e6723 404.ENDIF
405
eb480a0b 406CFLAGS = $(INCLUDES) $(DEFINES) $(LOCDEFS) $(OPTIMIZE)
28004758 407LINK_FLAGS = $(LINK_DBG) -L"$(INST_COREDIR)" -L"$(CCLIBDIR)"
eb480a0b 408OBJOUT_FLAG = -o
409EXEOUT_FLAG = -o
064a70d4 410LIBOUT_FLAG =
08aa1457 411
7a1f88ac 412# NOTE: we assume that GCC uses MSVCRT.DLL
413BUILDOPT += -fno-strict-aliasing -DPERL_MSVCRT_READFIX
414
08aa1457 415.ELSE
416
045453ec 417CC = cl
418LINK32 = link
eb480a0b 419LIB32 = $(LINK32) -lib
fd9459bc 420RSC = rc
eb480a0b 421
08aa1457 422#
423# Options
424#
eb480a0b 425
af883608 426RUNTIME = -MD
9036c72f 427INCLUDES = -I$(COREDIR) -I.\include -I. -I..
eb480a0b 428#PCHFLAGS = -Fpc:\temp\vcmoduls.pch -YX
c5be433b 429DEFINES = -DWIN32 -D_CONSOLE -DNO_STRICT $(CRYPT_FLAG)
eb480a0b 430LOCDEFS = -DPERLDLL -DPERL_CORE
431SUBSYS = console
432CXX_FLAG = -TP -GX
08aa1457 433
f7aeb604 434.IF "$(USE_PERLCRT)" != "define"
e7083a8c 435.IF "$(CFG)" == "Debug"
436PERLCRTLIBC = msvcrtd.lib
437.ELSE
438PERLCRTLIBC = msvcrt.lib
439.ENDIF
440.ELSE
441.IF "$(CFG)" == "Debug"
442PERLCRTLIBC = PerlCRTD.lib
443.ELSE
444PERLCRTLIBC = PerlCRT.lib
445.ENDIF
446.ENDIF
447
fd9459bc 448PERLEXE_RES =
449PERLDLL_RES =
450
08aa1457 451.IF "$(RUNTIME)" == "-MD"
e7083a8c 452LIBC = $(PERLCRTLIBC)
08aa1457 453.ELSE
eb480a0b 454LIBC = libcmt.lib
08aa1457 455.ENDIF
456
457.IF "$(CFG)" == "Debug"
458.IF "$(CCTYPE)" == "MSVC20"
eb480a0b 459OPTIMIZE = -Od $(RUNTIME) -Z7 -D_DEBUG -DDEBUGGING
08aa1457 460.ELSE
3dfd1da1 461OPTIMIZE = -Od $(RUNTIME)d -Zi -D_DEBUG -DDEBUGGING
08aa1457 462.ENDIF
eb480a0b 463LINK_DBG = -debug -pdb:none
08aa1457 464.ELSE
74593e1f 465.IF "$(CFG)" == "Optimize"
c5be433b 466# -O1 yields smaller code, which turns out to be faster than -O2
467#OPTIMIZE = -O2 $(RUNTIME) -DNDEBUG
468OPTIMIZE = -O1 $(RUNTIME) -DNDEBUG
08aa1457 469.ELSE
af883608 470OPTIMIZE = -Od $(RUNTIME) -DNDEBUG
08aa1457 471.ENDIF
eb480a0b 472LINK_DBG = -release
08aa1457 473.ENDIF
474
7fac1903 475LIBBASEFILES = $(DELAYLOAD) $(CRYPT_LIB) \
f7aeb604 476 oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.lib \
477 comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \
478 netapi32.lib uuid.lib wsock32.lib mpr.lib winmm.lib \
479 version.lib odbc32.lib odbccp32.lib
08aa1457 480
e7083a8c 481# we add LIBC here, since we may be using PerlCRT.dll
482LIBFILES = $(LIBBASEFILES) $(LIBC)
483
eb480a0b 484CFLAGS = -nologo -Gf -W3 $(INCLUDES) $(DEFINES) $(LOCDEFS) \
485 $(PCHFLAGS) $(OPTIMIZE)
28004758 486LINK_FLAGS = -nologo -nodefaultlib $(LINK_DBG) \
487 -libpath:"$(INST_COREDIR)" \
488 -machine:$(PROCESSOR_ARCHITECTURE)
eb480a0b 489OBJOUT_FLAG = -Fo
490EXEOUT_FLAG = -Fe
064a70d4 491LIBOUT_FLAG = /out:
08aa1457 492
f7aeb604 493.IF "$(USE_PERLCRT)" != "define"
494BUILDOPT += -DPERL_MSVCRT_READFIX
495.ENDIF
496
08aa1457 497.ENDIF
498
c5be433b 499.IF "$(USE_OBJECT)" == "define"
eb480a0b 500OPTIMIZE += $(CXX_FLAG)
c5be433b 501BUILDOPT += -DPERL_OBJECT
eb480a0b 502.ENDIF
503
c5be433b 504CFLAGS_O = $(CFLAGS) $(BUILDOPT)
eb480a0b 505
5db10396 506# used to allow local linking flags that are not propogated into Config.pm,
507# currently unused
508# -- BKS, 12-12-1999
7a958ec3 509PRIV_LINK_FLAGS *=
510BLINK_FLAGS = $(PRIV_LINK_FLAGS) $(LINK_FLAGS)
511
08aa1457 512#################### do not edit below this line #######################
513############# NO USER-SERVICEABLE PARTS BEYOND THIS POINT ##############
514
d56e6723 515o *= .obj
eda5ff31 516a *= .lib
d56e6723 517
eb480a0b 518LKPRE = INPUT (
519LKPOST = )
520
08aa1457 521#
522# Rules
523#
08aa1457 524
fd9459bc 525.SUFFIXES : .c $(o) .dll $(a) .exe .rc .res
d56e6723 526
527.c$(o):
eb480a0b 528 $(CC) -c $(null,$(<:d) $(NULL) -I$(<:d)) $(CFLAGS_O) $(OBJOUT_FLAG)$@ $<
d07c2202 529
530.y.c:
531 $(NOOP)
08aa1457 532
d56e6723 533$(o).dll:
08aa1457 534.IF "$(CCTYPE)" == "BORLAND"
7a958ec3 535 $(LINK32) -Tpd -ap $(BLINK_FLAGS) c0d32$(o) $<,$@,,$(LIBFILES),$(*B).def
08aa1457 536 $(IMPLIB) $(*B).lib $@
d56e6723 537.ELIF "$(CCTYPE)" == "GCC"
7a958ec3 538 $(LINK32) -o $@ $(BLINK_FLAGS) $< $(LIBFILES)
5db10396 539 $(IMPLIB) --input-def $(*B).def --output-lib $(*B).a $@
08aa1457 540.ELSE
08aa1457 541 $(LINK32) -dll -subsystem:windows -implib:$(*B).lib -def:$(*B).def \
7a958ec3 542 -out:$@ $(BLINK_FLAGS) $(LIBFILES) $< $(LIBPERL)
08aa1457 543.ENDIF
544
fd9459bc 545.rc.res:
e9ff6d27 546 $(RSC) -i.. $<
fd9459bc 547
08aa1457 548#
08aa1457 549# various targets
eb480a0b 550MINIPERL = ..\miniperl.exe
551MINIDIR = .\mini
552PERLEXE = ..\perl.exe
7766f137 553WPERLEXE = ..\wperl.exe
eb480a0b 554GLOBEXE = ..\perlglob.exe
555CONFIGPM = ..\lib\Config.pm
556MINIMOD = ..\lib\ExtUtils\Miniperl.pm
557X2P = ..\x2p\a2p.exe
558
559PL2BAT = bin\pl2bat.pl
560GLOBBAT = bin\perlglob.bat
08aa1457 561
4a71ed0c 562UTILS = \
563 ..\utils\h2ph \
564 ..\utils\splain \
95667ae4 565 ..\utils\dprofpp \
4a71ed0c 566 ..\utils\perlbug \
567 ..\utils\pl2pm \
568 ..\utils\c2ph \
569 ..\utils\h2xs \
570 ..\utils\perldoc \
4a71ed0c 571 ..\utils\perlcc \
572 ..\pod\checkpods \
573 ..\pod\pod2html \
574 ..\pod\pod2latex \
575 ..\pod\pod2man \
576 ..\pod\pod2text \
360aca43 577 ..\pod\pod2usage \
578 ..\pod\podchecker \
579 ..\pod\podselect \
4a71ed0c 580 ..\x2p\find2perl \
581 ..\x2p\s2p \
c4bbdec3 582 bin\exetype.pl \
4a71ed0c 583 bin\runperl.pl \
584 bin\pl2bat.pl \
585 bin\perlglob.pl \
586 bin\search.pl
587
08aa1457 588.IF "$(CCTYPE)" == "BORLAND"
589
eb480a0b 590CFGSH_TMPL = config.bc
591CFGH_TMPL = config_H.bc
d56e6723 592
593.ELIF "$(CCTYPE)" == "GCC"
594
eb480a0b 595CFGSH_TMPL = config.gc
596CFGH_TMPL = config_H.gc
7a1f88ac 597PERLIMPLIB = ..\libperl56$(a)
08aa1457 598
599.ELSE
600
eb480a0b 601CFGSH_TMPL = config.vc
602CFGH_TMPL = config_H.vc
08aa1457 603
604.ENDIF
605
3075ddba 606PERLIMPLIB *= ..\perl56$(a)
607PERLDLL = ..\perl56.dll
eda5ff31 608
eb480a0b 609XCOPY = xcopy /f /r /i /d
610RCOPY = xcopy /f /r /i /e /d
611NOOP = @echo
08aa1457 612
eb480a0b 613#
614# filenames given to xsubpp must have forward slashes (since it puts
615# full pathnames in #line strings)
616XSUBPP = ..\$(MINIPERL) -I..\..\lib ..\$(EXTUTILSDIR)\xsubpp \
617 -C++ -prototypes
618
852c2e52 619MICROCORE_SRC = \
eb480a0b 620 ..\av.c \
eb480a0b 621 ..\deb.c \
622 ..\doio.c \
623 ..\doop.c \
624 ..\dump.c \
625 ..\globals.c \
626 ..\gv.c \
627 ..\hv.c \
628 ..\mg.c \
629 ..\op.c \
630 ..\perl.c \
c5be433b 631 ..\perlapi.c \
eb480a0b 632 ..\perly.c \
633 ..\pp.c \
634 ..\pp_ctl.c \
635 ..\pp_hot.c \
636 ..\pp_sys.c \
637 ..\regcomp.c \
638 ..\regexec.c \
639 ..\run.c \
640 ..\scope.c \
641 ..\sv.c \
642 ..\taint.c \
643 ..\toke.c \
644 ..\universal.c \
a176fa2a 645 ..\utf8.c \
349fd7b7 646 ..\util.c \
647 ..\xsutils.c
eb480a0b 648
c5be433b 649EXTRACORE_SRC += perllib.c
650
1c1c7f20 651.IF "$(PERL_MALLOC)" == "define"
852c2e52 652EXTRACORE_SRC += ..\malloc.c
1c1c7f20 653.ENDIF
654
c5be433b 655.IF "$(USE_OBJECT)" != "define"
852c2e52 656EXTRACORE_SRC += ..\perlio.c
eb480a0b 657.ENDIF
658
659WIN32_SRC = \
660 .\win32.c \
661 .\win32sck.c
662
aaacdc8b 663.IF "$(USE_5005THREADS)" == "define"
eb480a0b 664WIN32_SRC += .\win32thread.c
665.ENDIF
666
8d9b2e3c 667.IF "$(CRYPT_SRC)" != ""
668WIN32_SRC += .\$(CRYPT_SRC)
669.ENDIF
670
eb480a0b 671DLL_SRC = $(DYNALOADER).c
672
eb480a0b 673X2P_SRC = \
674 ..\x2p\a2p.c \
675 ..\x2p\hash.c \
676 ..\x2p\str.c \
677 ..\x2p\util.c \
678 ..\x2p\walk.c
679
852c2e52 680CORE_NOCFG_H = \
eb480a0b 681 ..\av.h \
eb480a0b 682 ..\cop.h \
683 ..\cv.h \
684 ..\dosish.h \
685 ..\embed.h \
686 ..\form.h \
687 ..\gv.h \
688 ..\handy.h \
689 ..\hv.h \
0f4eea8f 690 ..\iperlsys.h \
eb480a0b 691 ..\mg.h \
692 ..\nostdio.h \
693 ..\op.h \
694 ..\opcode.h \
695 ..\perl.h \
c5be433b 696 ..\perlapi.h \
eb480a0b 697 ..\perlsdio.h \
698 ..\perlsfio.h \
699 ..\perly.h \
700 ..\pp.h \
701 ..\proto.h \
702 ..\regexp.h \
703 ..\scope.h \
704 ..\sv.h \
705 ..\thread.h \
706 ..\unixish.h \
a176fa2a 707 ..\utf8.h \
eb480a0b 708 ..\util.h \
2985053f 709 ..\warnings.h \
eb480a0b 710 ..\XSUB.h \
eb480a0b 711 ..\EXTERN.h \
712 ..\perlvars.h \
713 ..\intrpvar.h \
714 ..\thrdvar.h \
715 .\include\dirent.h \
716 .\include\netdb.h \
717 .\include\sys\socket.h \
7766f137 718 .\win32.h \
719 .\perlhost.h \
720 .\vdir.h \
721 .\vmem.h
eb480a0b 722
852c2e52 723CORE_H = $(CORE_NOCFG_H) .\config.h
724
725MICROCORE_OBJ = $(MICROCORE_SRC:db:+$(o))
726CORE_OBJ = $(MICROCORE_OBJ) $(EXTRACORE_SRC:db:+$(o))
eb480a0b 727WIN32_OBJ = $(WIN32_SRC:db:+$(o))
5fd76c3e 728MINICORE_OBJ = $(MINIDIR)\{$(MICROCORE_OBJ:f) miniperlmain$(o) perlio$(o)}
eb480a0b 729MINIWIN32_OBJ = $(MINIDIR)\{$(WIN32_OBJ:f)}
730MINI_OBJ = $(MINICORE_OBJ) $(MINIWIN32_OBJ)
eb480a0b 731DLL_OBJ = $(DLL_SRC:db:+$(o))
732X2P_OBJ = $(X2P_SRC:db:+$(o))
733
eb480a0b 734PERLDLL_OBJ = $(CORE_OBJ)
735PERLEXE_OBJ = perlmain$(o)
736
eb480a0b 737PERLDLL_OBJ += $(WIN32_OBJ) $(DLL_OBJ)
eb480a0b 738
baed7233 739.IF "$(USE_SETARGV)" != ""
740SETARGV_OBJ = setargv$(o)
741.ENDIF
742
823edd99 743DYNAMIC_EXT = Socket IO Fcntl Opcode SDBM_File POSIX attrs Thread B re \
f91101c9 744 Data/Dumper Devel/Peek ByteLoader Devel/DProf File/Glob \
745 Sys/Hostname
eb480a0b 746STATIC_EXT = DynaLoader
eab60bb1 747NONXS_EXT = Errno
eb480a0b 748
749DYNALOADER = $(EXTDIR)\DynaLoader\DynaLoader
750SOCKET = $(EXTDIR)\Socket\Socket
751FCNTL = $(EXTDIR)\Fcntl\Fcntl
752OPCODE = $(EXTDIR)\Opcode\Opcode
753SDBM_FILE = $(EXTDIR)\SDBM_File\SDBM_File
754IO = $(EXTDIR)\IO\IO
755POSIX = $(EXTDIR)\POSIX\POSIX
756ATTRS = $(EXTDIR)\attrs\attrs
757THREAD = $(EXTDIR)\Thread\Thread
758B = $(EXTDIR)\B\B
15e52e56 759RE = $(EXTDIR)\re\re
823edd99 760DUMPER = $(EXTDIR)\Data\Dumper\Dumper
eab60bb1 761ERRNO = $(EXTDIR)\Errno\Errno
3967c732 762PEEK = $(EXTDIR)\Devel\Peek\Peek
a6c40364 763BYTELOADER = $(EXTDIR)\ByteLoader\ByteLoader
38b3a85b 764DPROF = $(EXTDIR)\Devel\DProf\DProf
4f49e16e 765GLOB = $(EXTDIR)\File\Glob\Glob
f91101c9 766HOSTNAME = $(EXTDIR)\Sys\Hostname\Hostname
eb480a0b 767
768SOCKET_DLL = $(AUTODIR)\Socket\Socket.dll
769FCNTL_DLL = $(AUTODIR)\Fcntl\Fcntl.dll
770OPCODE_DLL = $(AUTODIR)\Opcode\Opcode.dll
771SDBM_FILE_DLL = $(AUTODIR)\SDBM_File\SDBM_File.dll
772IO_DLL = $(AUTODIR)\IO\IO.dll
773POSIX_DLL = $(AUTODIR)\POSIX\POSIX.dll
774ATTRS_DLL = $(AUTODIR)\attrs\attrs.dll
775THREAD_DLL = $(AUTODIR)\Thread\Thread.dll
776B_DLL = $(AUTODIR)\B\B.dll
823edd99 777DUMPER_DLL = $(AUTODIR)\Data\Dumper\Dumper.dll
3967c732 778PEEK_DLL = $(AUTODIR)\Devel\Peek\Peek.dll
15e52e56 779RE_DLL = $(AUTODIR)\re\re.dll
b295d113 780BYTELOADER_DLL = $(AUTODIR)\ByteLoader\ByteLoader.dll
38b3a85b 781DPROF_DLL = $(AUTODIR)\Devel\DProf\DProf.dll
4f49e16e 782GLOB_DLL = $(AUTODIR)\File\Glob\Glob.dll
f91101c9 783HOSTNAME_DLL = $(AUTODIR)\Sys\Hostname\Hostname.dll
eb480a0b 784
eab60bb1 785ERRNO_PM = $(LIBDIR)\Errno.pm
786
ac4c12e7 787EXTENSION_C = \
eb480a0b 788 $(SOCKET).c \
789 $(FCNTL).c \
790 $(OPCODE).c \
791 $(SDBM_FILE).c \
792 $(IO).c \
793 $(POSIX).c \
794 $(ATTRS).c \
795 $(THREAD).c \
15e52e56 796 $(RE).c \
823edd99 797 $(DUMPER).c \
3967c732 798 $(PEEK).c \
b295d113 799 $(B).c \
38b3a85b 800 $(BYTELOADER).c \
4f49e16e 801 $(DPROF).c \
f91101c9 802 $(GLOB).c \
803 $(HOSTNAME).c
eb480a0b 804
ac4c12e7 805EXTENSION_DLL = \
eb480a0b 806 $(SOCKET_DLL) \
807 $(FCNTL_DLL) \
808 $(OPCODE_DLL) \
809 $(SDBM_FILE_DLL)\
810 $(IO_DLL) \
811 $(POSIX_DLL) \
51aa15f3 812 $(ATTRS_DLL) \
823edd99 813 $(DUMPER_DLL) \
3967c732 814 $(PEEK_DLL) \
b295d113 815 $(B_DLL) \
c5be433b 816 $(RE_DLL) \
817 $(THREAD_DLL) \
38b3a85b 818 $(BYTELOADER_DLL) \
4f49e16e 819 $(DPROF_DLL) \
f91101c9 820 $(GLOB_DLL) \
821 $(HOSTNAME_DLL)
26ca90b6 822
eab60bb1 823EXTENSION_PM = \
824 $(ERRNO_PM)
825
eb480a0b 826POD2HTML = $(PODDIR)\pod2html
827POD2MAN = $(PODDIR)\pod2man
828POD2LATEX = $(PODDIR)\pod2latex
829POD2TEXT = $(PODDIR)\pod2text
830
7a958ec3 831# vars must be separated by "\t+~\t+", since we're using the tempfile
832# version of config_sh.pl (we were overflowing someone's buffer by
833# trying to fit them all on the command line)
834# -- BKS 10-17-1999
eb480a0b 835CFG_VARS = \
7a958ec3 836 INST_DRV=$(INST_DRV) ~ \
837 INST_TOP=$(INST_TOP) ~ \
838 INST_VER=$(INST_VER:s/\/\\/) ~ \
839 INST_ARCH=$(INST_ARCH) ~ \
840 archname=$(ARCHNAME) ~ \
841 cc=$(CC) ~ \
842 ccflags=$(OPTIMIZE) $(DEFINES) $(BUILDOPT) ~ \
843 cf_email=$(EMAIL) ~ \
844 d_crypt=$(D_CRYPT) ~ \
845 d_mymalloc=$(PERL_MALLOC) ~ \
846 libs=$(LIBFILES:f) ~ \
847 incpath=$(CCINCDIR) ~ \
848 libperl=$(PERLIMPLIB:f) ~ \
849 libpth=$(CCLIBDIR);$(EXTRALIBDIRS) ~ \
850 libc=$(LIBC) ~ \
851 make=dmake ~ \
852 _o=$(o) obj_ext=$(o) ~ \
853 _a=$(a) lib_ext=$(a) ~ \
854 static_ext=$(STATIC_EXT) ~ \
855 dynamic_ext=$(DYNAMIC_EXT) ~ \
856 nonxs_ext=$(NONXS_EXT) ~ \
aaacdc8b 857 use5005threads=$(USE_5005THREADS) ~ \
858 useithreads=$(USE_ITHREADS) ~ \
859 usethreads=$(USE_5005THREADS) ~ \
7a958ec3 860 usemultiplicity=$(USE_MULTI) ~ \
861 LINK_FLAGS=$(LINK_FLAGS:s/\/\\/) ~ \
862 optimize=$(OPTIMIZE)
863
864#
865# set up targets varying between Win95 and WinNT builds
866#
867
868.IF "$(IS_WIN95)" == "define"
869MK2 = .\makefile.95
870RIGHTMAKE = __switch_makefiles
871NOOP = @rem
872.ELSE
873MK2 = __not_needed
874RIGHTMAKE = __not_needed
875.ENDIF
924b3ec4 876
08aa1457 877#
878# Top targets
879#
880
5db10396 881all : .\config.h $(GLOBEXE) $(MINIPERL) $(MK2) \
9e5f57de 882 $(RIGHTMAKE) $(MINIMOD) $(CONFIGPM) $(PERLEXE) \
7a958ec3 883 $(X2P) $(EXTENSION_DLL) $(EXTENSION_PM)
884
885$(DYNALOADER)$(o) : $(DYNALOADER).c $(CORE_H) $(EXTDIR)\DynaLoader\dlutils.c
886
887#----------------------------------------------------------------
888
889#-------------------- BEGIN Win95 SPECIFIC ----------------------
890
891# this target is a jump-off point for Win95
892# 1. it switches to the Win95-specific makefile if it exists
5db10396 893# (__do_switch_makefiles)
7a958ec3 894# 2. it prints a message when the Win95-specific one finishes (__done)
895# 3. it then kills this makefile by trying to make __no_such_target
8ec44883 896
7a958ec3 897__switch_makefiles: __do_switch_makefiles __done __no_such_target
898
899__do_switch_makefiles:
900.IF "$(NOTFIRST)" != "true"
901 if exist $(MK2) $(MAKE:s/-S//) -f $(MK2) $(MAKETARGETS) NOTFIRST=true
8ec44883 902.ELSE
7a958ec3 903 $(NOOP)
8ec44883 904.ENDIF
08aa1457 905
7a958ec3 906.IF "$(NOTFIRST)" != "true"
907__done:
908 @echo Build process complete. Ignore any errors after this message.
909 @echo Run "dmake test" to test and "dmake install" to install
910
911.ELSE
912# dummy targets for Win95-specific makefile
08aa1457 913
7a958ec3 914__done:
915 $(NOOP)
916
917__no_such_target:
918 $(NOOP)
08aa1457 919
8ec44883 920.ENDIF
921
7a958ec3 922# This target is used to generate the new makefile (.\makefile.95) for Win95
923
924.\makefile.95: .\makefile.mk
925 $(MINIPERL) genmk95.pl makefile.mk $(MK2)
926
927#--------------------- END Win95 SPECIFIC ---------------------
928
7a958ec3 929# a blank target for when builds don't need to do certain things
930# this target added for Win95 port but used to keep the WinNT port able to
931# use this file
932__not_needed:
4ce4f76e 933 $(NOOP)
7a958ec3 934
eb480a0b 935$(GLOBEXE) : perlglob$(o)
08aa1457 936.IF "$(CCTYPE)" == "BORLAND"
80252599 937 $(CC) -c -w -v -tWM -I"$(CCINCDIR)" perlglob.c
7a958ec3 938 $(LINK32) -Tpe -ap $(BLINK_FLAGS) c0x32$(o) perlglob$(o) \
80252599 939 "$(CCLIBDIR)\32BIT\wildargs$(o)",$@,,import32.lib cw32mt.lib,
d56e6723 940.ELIF "$(CCTYPE)" == "GCC"
5db10396 941 $(LINK32) $(BLINK_FLAGS) -mconsole -o $@ perlglob$(o) $(LIBFILES)
08aa1457 942.ELSE
7a958ec3 943 $(LINK32) $(BLINK_FLAGS) $(LIBFILES) -out:$@ -subsystem:$(SUBSYS) \
d56e6723 944 perlglob$(o) setargv$(o)
08aa1457 945.ENDIF
946
d56e6723 947perlglob$(o) : perlglob.c
08aa1457 948
08aa1457 949config.w32 : $(CFGSH_TMPL)
950 copy $(CFGSH_TMPL) config.w32
951
852c2e52 952.\config.h : $(CFGH_TMPL) $(CORE_NOCFG_H)
08aa1457 953 -del /f config.h
954 copy $(CFGH_TMPL) config.h
955
956..\config.sh : config.w32 $(MINIPERL) config_sh.PL
7a958ec3 957 $(MINIPERL) -I..\lib config_sh.PL --cfgsh-option-file \
958 $(mktmp $(CFG_VARS)) config.w32 > ..\config.sh
924b3ec4 959
960# this target is for when changes to the main config.sh happen
961# edit config.{b,v,g}c and make this target once for each supported
962# compiler (e.g. `dmake CCTYPE=BORLAND regen_config_h`)
963regen_config_h:
bbda9c9d 964 perl config_sh.PL --cfgsh-option-file $(mktmp $(CFG_VARS)) \
965 $(CFGSH_TMPL) > ..\config.sh
924b3ec4 966 -cd .. && del /f perl.exe
967 cd .. && perl configpm
968 -del /f $(CFGH_TMPL)
80252599 969 -mkdir $(COREDIR)
e5a95ffb 970 -perl -I..\lib config_h.PL "INST_VER=$(INST_VER)"
924b3ec4 971 rename config.h $(CFGH_TMPL)
08aa1457 972
973$(CONFIGPM) : $(MINIPERL) ..\config.sh config_h.PL ..\minimod.pl
974 cd .. && miniperl configpm
975 if exist lib\* $(RCOPY) lib\*.* ..\lib\$(NULL)
d07c2202 976 $(XCOPY) ..\*.h $(COREDIR)\*.*
977 $(XCOPY) *.h $(COREDIR)\*.*
15e52e56 978 $(XCOPY) ..\ext\re\re.pm $(LIBDIR)\*.*
d07c2202 979 $(RCOPY) include $(COREDIR)\*.*
e5a95ffb 980 $(MINIPERL) -I..\lib config_h.PL "INST_VER=$(INST_VER)" \
d543acb6 981 || $(MAKE) $(MAKEMACROS) $(CONFIGPM) $(MAKEFILE)
08aa1457 982
7a958ec3 983$(MINIPERL) : $(MINIDIR) $(MINI_OBJ) $(CRTIPMLIBS)
08aa1457 984.IF "$(CCTYPE)" == "BORLAND"
7a958ec3 985 $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
eb480a0b 986 @$(mktmp c0x32$(o) $(MINI_OBJ:s,\,\\),$(@:s,\,\\),,$(LIBFILES),)
d56e6723 987.ELIF "$(CCTYPE)" == "GCC"
5db10396 988 $(LINK32) -v -mconsole -o $@ $(BLINK_FLAGS) \
7a958ec3 989 $(mktmp $(LKPRE) $(MINI_OBJ:s,\,\\) $(LIBFILES) $(LKPOST))
08aa1457 990.ELSE
991 $(LINK32) -subsystem:console -out:$@ \
7a958ec3 992 @$(mktmp $(BLINK_FLAGS) $(LIBFILES) $(MINI_OBJ:s,\,\\))
08aa1457 993.ENDIF
994
eb480a0b 995$(MINIDIR) :
996 if not exist "$(MINIDIR)" mkdir "$(MINIDIR)"
997
852c2e52 998$(MINICORE_OBJ) : $(CORE_NOCFG_H)
fe0bfefd 999 $(CC) -c $(CFLAGS) -DPERL_EXTERNAL_GLOB $(OBJOUT_FLAG)$@ ..\$(*B).c
eb480a0b 1000
852c2e52 1001$(MINIWIN32_OBJ) : $(CORE_NOCFG_H)
eb480a0b 1002 $(CC) -c $(CFLAGS) $(OBJOUT_FLAG)$@ $(*B).c
1003
7766f137 1004# -DPERL_IMPLICIT_SYS needs C++ for perllib.c
5db10396 1005# rules wrapped in .IFs break Win9X build (we end up with unbalanced []s unless
1006# unless the .IF is true), so instead we use a .ELSE with the default
7766f137 1007perllib$(o) : perllib.c
5db10396 1008.IF "$(USE_IMP_SYS)$(USE_OBJECT)" == "defineundef"
7766f137 1009 $(CC) -c -I. $(CFLAGS_O) $(CXX_FLAG) $(OBJOUT_FLAG)$@ perllib.c
5db10396 1010.ELSE
1011 $(CC) -c -I. $(CFLAGS_O) $(OBJOUT_FLAG)$@ perllib.c
7766f137 1012.ENDIF
1013
852c2e52 1014# 1. we don't want to rebuild miniperl.exe when config.h changes
1015# 2. we don't want to rebuild miniperl.exe with non-default config.h
1016$(MINI_OBJ) : $(CORE_NOCFG_H)
1017
eb480a0b 1018$(WIN32_OBJ) : $(CORE_H)
1019$(CORE_OBJ) : $(CORE_H)
eb480a0b 1020$(DLL_OBJ) : $(CORE_H)
eb480a0b 1021$(X2P_OBJ) : $(CORE_H)
08aa1457 1022
549a6b10 1023perldll.def : $(MINIPERL) $(CONFIGPM) ..\global.sym ..\pp.sym ..\makedef.pl
e2207946 1024 $(MINIPERL) -w ..\makedef.pl PLATFORM=win32 $(OPTIMIZE) $(DEFINES) \
1025 $(BUILDOPT) CCTYPE=$(CCTYPE) > perldll.def
08aa1457 1026
fd9459bc 1027$(PERLDLL): perldll.def $(PERLDLL_OBJ) $(PERLDLL_RES)
08aa1457 1028.IF "$(CCTYPE)" == "BORLAND"
e2207946 1029 $(LINK32) -Tpd -ap $(BLINK_FLAGS) \
eb480a0b 1030 @$(mktmp c0d32$(o) $(PERLDLL_OBJ:s,\,\\)\n \
08aa1457 1031 $@,\n \
1032 $(LIBFILES)\n \
1033 perldll.def\n)
1034 $(IMPLIB) $*.lib $@
d56e6723 1035.ELIF "$(CCTYPE)" == "GCC"
e2207946 1036 $(LINK32) -mdll -o $@ -Wl,--base-file -Wl,perl.base $(BLINK_FLAGS) \
eb480a0b 1037 $(mktmp $(LKPRE) $(PERLDLL_OBJ:s,\,\\) $(LIBFILES) $(LKPOST))
d56e6723 1038 dlltool --output-lib $(PERLIMPLIB) \
5db10396 1039 --dllname $(PERLDLL:b).dll \
1040 --def perldll.def \
1041 --base-file perl.base \
1042 --output-exp perl.exp
e2207946 1043 $(LINK32) -mdll -o $@ $(BLINK_FLAGS) \
eb480a0b 1044 $(mktmp $(LKPRE) $(PERLDLL_OBJ:s,\,\\) $(LIBFILES) \
1045 perl.exp $(LKPOST))
08aa1457 1046.ELSE
1047 $(LINK32) -dll -def:perldll.def -out:$@ \
fd9459bc 1048 @$(mktmp $(BLINK_FLAGS) $(LIBFILES) $(PERLDLL_RES) $(PERLDLL_OBJ:s,\,\\))
08aa1457 1049.ENDIF
d07c2202 1050 $(XCOPY) $(PERLIMPLIB) $(COREDIR)
08aa1457 1051
08aa1457 1052$(MINIMOD) : $(MINIPERL) ..\minimod.pl
1053 cd .. && miniperl minimod.pl > lib\ExtUtils\Miniperl.pm
1054
eb480a0b 1055..\x2p\a2p$(o) : ..\x2p\a2p.c
1056 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\a2p.c
1057
1058..\x2p\hash$(o) : ..\x2p\hash.c
1059 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\hash.c
1060
1061..\x2p\str$(o) : ..\x2p\str.c
1062 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\str.c
1063
1064..\x2p\util$(o) : ..\x2p\util.c
1065 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\util.c
1066
1067..\x2p\walk$(o) : ..\x2p\walk.c
1068 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\walk.c
1069
1070$(X2P) : $(MINIPERL) $(X2P_OBJ)
d07c2202 1071 $(MINIPERL) ..\x2p\find2perl.PL
1072 $(MINIPERL) ..\x2p\s2p.PL
1073.IF "$(CCTYPE)" == "BORLAND"
7a958ec3 1074 $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
d07c2202 1075 @$(mktmp c0x32$(o) $(X2P_OBJ:s,\,\\),$(@:s,\,\\),,$(LIBFILES),)
1076.ELIF "$(CCTYPE)" == "GCC"
7a958ec3 1077 $(LINK32) -v -o $@ $(BLINK_FLAGS) \
d07c2202 1078 $(mktmp $(LKPRE) $(X2P_OBJ:s,\,\\) $(LIBFILES) $(LKPOST))
1079.ELSE
1080 $(LINK32) -subsystem:console -out:$@ \
7a958ec3 1081 @$(mktmp $(BLINK_FLAGS) $(LIBFILES) $(X2P_OBJ:s,\,\\))
d07c2202 1082.ENDIF
1083
08aa1457 1084perlmain.c : runperl.c
1085 copy runperl.c perlmain.c
1086
d56e6723 1087perlmain$(o) : perlmain.c
8957be0a 1088 $(CC) $(CFLAGS_O) -UPERLDLL $(OBJOUT_FLAG)$@ -c perlmain.c
08aa1457 1089
fd9459bc 1090$(PERLEXE): $(PERLDLL) $(CONFIGPM) $(PERLEXE_OBJ) $(PERLEXE_RES)
08aa1457 1091.IF "$(CCTYPE)" == "BORLAND"
7a958ec3 1092 $(LINK32) -Tpe -ap $(BLINK_FLAGS) \
8957be0a 1093 @$(mktmp c0x32$(o) $(PERLEXE_OBJ:s,\,\\)\n \
1094 $(@:s,\,\\),\n \
08aa1457 1095 $(PERLIMPLIB) $(LIBFILES)\n)
d56e6723 1096.ELIF "$(CCTYPE)" == "GCC"
5db10396 1097 $(LINK32) -mconsole -o $@ $(BLINK_FLAGS) \
eb480a0b 1098 $(PERLEXE_OBJ) $(PERLIMPLIB) $(LIBFILES)
08aa1457 1099.ELSE
7a958ec3 1100 $(LINK32) -subsystem:console -out:$@ $(BLINK_FLAGS) $(LIBFILES) \
fd9459bc 1101 $(PERLEXE_OBJ) $(SETARGV_OBJ) $(PERLIMPLIB) $(PERLEXE_RES)
08aa1457 1102.ENDIF
2f8d1947 1103 copy $(PERLEXE) $(WPERLEXE)
1104 $(MINIPERL) -I..\lib bin\exetype.pl $(WPERLEXE) WINDOWS
08aa1457 1105 copy splittree.pl ..
eb480a0b 1106 $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR)
08aa1457 1107
08aa1457 1108$(DYNALOADER).c: $(MINIPERL) $(EXTDIR)\DynaLoader\dl_win32.xs $(CONFIGPM)
eb480a0b 1109 if not exist $(AUTODIR) mkdir $(AUTODIR)
bfab39a2 1110 cd $(EXTDIR)\$(*B) && ..\$(MINIPERL) -I..\..\lib $(*B)_pm.PL
8454a2ba 1111 cd $(EXTDIR)\$(*B) && ..\$(MINIPERL) -I..\..\lib XSLoader_pm.PL
08aa1457 1112 $(XCOPY) $(EXTDIR)\$(*B)\$(*B).pm $(LIBDIR)\$(NULL)
8454a2ba 1113 $(XCOPY) $(EXTDIR)\$(*B)\XSLoader.pm $(LIBDIR)\$(NULL)
08aa1457 1114 cd $(EXTDIR)\$(*B) && $(XSUBPP) dl_win32.xs > $(*B).c
1115 $(XCOPY) $(EXTDIR)\$(*B)\dlutils.c .
1116
1117$(EXTDIR)\DynaLoader\dl_win32.xs: dl_win32.xs
1118 copy dl_win32.xs $(EXTDIR)\DynaLoader\dl_win32.xs
1119
823edd99 1120$(DUMPER_DLL): $(PERLEXE) $(DUMPER).xs
1121 cd $(EXTDIR)\Data\$(*B) && \
1122 ..\..\..\miniperl -I..\..\..\lib Makefile.PL INSTALLDIRS=perl
1123 cd $(EXTDIR)\Data\$(*B) && $(MAKE)
1124
38b3a85b 1125$(DPROF_DLL): $(PERLEXE) $(DPROF).xs
1126 cd $(EXTDIR)\Devel\$(*B) && \
1127 ..\..\..\miniperl -I..\..\..\lib Makefile.PL INSTALLDIRS=perl
1128 cd $(EXTDIR)\Devel\$(*B) && $(MAKE)
1129
4f49e16e 1130$(GLOB_DLL): $(PERLEXE) $(GLOB).xs
1131 cd $(EXTDIR)\File\$(*B) && \
1132 ..\..\..\miniperl -I..\..\..\lib Makefile.PL INSTALLDIRS=perl
1133 cd $(EXTDIR)\File\$(*B) && $(MAKE)
1134
35ef4773 1135$(PEEK_DLL): $(PERLEXE) $(PEEK).xs
3967c732 1136 cd $(EXTDIR)\Devel\$(*B) && \
1137 ..\..\..\miniperl -I..\..\..\lib Makefile.PL INSTALLDIRS=perl
1138 cd $(EXTDIR)\Devel\$(*B) && $(MAKE)
1139
15e52e56 1140$(RE_DLL): $(PERLEXE) $(RE).xs
1141 cd $(EXTDIR)\$(*B) && \
1142 ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
1143 cd $(EXTDIR)\$(*B) && $(MAKE)
1144
2a321948 1145$(B_DLL): $(PERLEXE) $(B).xs
1146 cd $(EXTDIR)\$(*B) && \
1147 ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
1148 cd $(EXTDIR)\$(*B) && $(MAKE)
1149
a98bd6f4 1150$(THREAD_DLL): $(PERLEXE) $(THREAD).xs
1151 cd $(EXTDIR)\$(*B) && \
1152 ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
1153 cd $(EXTDIR)\$(*B) && $(MAKE)
1154
5d925967 1155$(ATTRS_DLL): $(PERLEXE) $(ATTRS).xs
1156 cd $(EXTDIR)\$(*B) && \
1157 ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
1158 cd $(EXTDIR)\$(*B) && $(MAKE)
1159
6dead956 1160$(POSIX_DLL): $(PERLEXE) $(POSIX).xs
1161 cd $(EXTDIR)\$(*B) && \
1162 ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
1163 cd $(EXTDIR)\$(*B) && $(MAKE)
1164
5d925967 1165$(IO_DLL): $(PERLEXE) $(IO).xs
08aa1457 1166 cd $(EXTDIR)\$(*B) && \
1167 ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
1168 cd $(EXTDIR)\$(*B) && $(MAKE)
1169
1170$(SDBM_FILE_DLL) : $(PERLEXE) $(SDBM_FILE).xs
1171 cd $(EXTDIR)\$(*B) && \
1172 ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
1173 cd $(EXTDIR)\$(*B) && $(MAKE)
1174
1175$(FCNTL_DLL): $(PERLEXE) $(FCNTL).xs
1176 cd $(EXTDIR)\$(*B) && \
1177 ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
1178 cd $(EXTDIR)\$(*B) && $(MAKE)
1179
1180$(OPCODE_DLL): $(PERLEXE) $(OPCODE).xs
1181 cd $(EXTDIR)\$(*B) && \
1182 ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
1183 cd $(EXTDIR)\$(*B) && $(MAKE)
1184
5d925967 1185$(SOCKET_DLL): $(PERLEXE) $(SOCKET).xs
08aa1457 1186 cd $(EXTDIR)\$(*B) && \
1187 ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
1188 cd $(EXTDIR)\$(*B) && $(MAKE)
1189
f91101c9 1190$(HOSTNAME_DLL): $(PERLEXE) $(HOSTNAME).xs
1191 cd $(EXTDIR)\Sys\$(*B) && \
1192 ..\..\..\miniperl -I..\..\..\lib Makefile.PL INSTALLDIRS=perl
1193 cd $(EXTDIR)\Sys\$(*B) && $(MAKE)
1194
b295d113 1195$(BYTELOADER_DLL): $(PERLEXE) $(BYTELOADER).xs
1196 cd $(EXTDIR)\$(*B) && \
1197 ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
1198 cd $(EXTDIR)\$(*B) && $(MAKE)
1199
eab60bb1 1200$(ERRNO_PM): $(PERLEXE) $(ERRNO)_pm.PL
1201 cd $(EXTDIR)\$(*B) && \
1202 ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
1203 cd $(EXTDIR)\$(*B) && $(MAKE)
1204
08aa1457 1205doc: $(PERLEXE)
d07c2202 1206 $(PERLEXE) -I..\lib ..\installhtml --podroot=.. --htmldir=./html \
b3b61bd8 1207 --podpath=pod:lib:ext:utils --htmlroot="file://$(INST_HTML:s,:,|,)"\
08aa1457 1208 --libpod=perlfunc:perlguts:perlvar:perlrun:perlop --recurse
1209
4a71ed0c 1210utils: $(PERLEXE) $(X2P)
08aa1457 1211 cd ..\utils && $(MAKE) PERL=$(MINIPERL)
66aa1127 1212 copy ..\README.win32 ..\pod\perlwin32.pod
4a71ed0c 1213 cd ..\pod && $(MAKE) -f ..\win32\pod.mak converters
1214 $(PERLEXE) $(PL2BAT) $(UTILS)
08aa1457 1215
1216distclean: clean
9e5f57de 1217 -del /f $(MINIPERL) $(PERLEXE) $(PERLDLL) $(GLOBEXE) \
eda5ff31 1218 $(PERLIMPLIB) ..\miniperl$(a) $(MINIMOD)
08aa1457 1219 -del /f *.def *.map
eab60bb1 1220 -del /f $(EXTENSION_DLL) $(EXTENSION_PM)
1221 -del /f $(EXTENSION_C) $(DYNALOADER).c $(ERRNO).pm
eb480a0b 1222 -del /f $(EXTDIR)\DynaLoader\dl_win32.xs
1223 -del /f $(LIBDIR)\.exists $(LIBDIR)\attrs.pm $(LIBDIR)\DynaLoader.pm
8454a2ba 1224 -del /f $(LIBDIR)\XSLoader.pm
eb480a0b 1225 -del /f $(LIBDIR)\Fcntl.pm $(LIBDIR)\IO.pm $(LIBDIR)\Opcode.pm
1226 -del /f $(LIBDIR)\ops.pm $(LIBDIR)\Safe.pm $(LIBDIR)\Thread.pm
1227 -del /f $(LIBDIR)\SDBM_File.pm $(LIBDIR)\Socket.pm $(LIBDIR)\POSIX.pm
15e52e56 1228 -del /f $(LIBDIR)\B.pm $(LIBDIR)\O.pm $(LIBDIR)\re.pm
b295d113 1229 -del /f $(LIBDIR)\Data\Dumper.pm $(LIBDIR)\ByteLoader.pm
38b3a85b 1230 -del /f $(LIBDIR)\Devel\Peek.pm $(LIBDIR)\Devel\DProf.pm
4f49e16e 1231 -del /f $(LIBDIR)\File\Glob.pm
eb480a0b 1232 -rmdir /s /q $(LIBDIR)\IO || rmdir /s $(LIBDIR)\IO
1233 -rmdir /s /q $(LIBDIR)\Thread || rmdir /s $(LIBDIR)\Thread
1234 -rmdir /s /q $(LIBDIR)\B || rmdir /s $(LIBDIR)\B
823edd99 1235 -rmdir /s /q $(LIBDIR)\Data || rmdir /s $(LIBDIR)\Data
08aa1457 1236 -del /f $(PODDIR)\*.html
1237 -del /f $(PODDIR)\*.bat
22c35a8c 1238 -cd ..\utils && del /f h2ph splain perlbug pl2pm c2ph h2xs perldoc \
5920a0ba 1239 dprofpp *.bat
eb480a0b 1240 -cd ..\x2p && del /f find2perl s2p *.bat
d444a431 1241 -del /f ..\config.sh ..\splittree.pl perlmain.c dlutils.c config.h.new
eb480a0b 1242 -del /f $(CONFIGPM)
d444a431 1243 -del /f bin\*.bat
22c35a8c 1244 -cd $(EXTDIR) && del /s *$(a) *.def *.map *.pdb *.bs Makefile *$(o) \
1245 pm_to_blib
eb480a0b 1246 -rmdir /s /q $(AUTODIR) || rmdir /s $(AUTODIR)
d07c2202 1247 -rmdir /s /q $(COREDIR) || rmdir /s $(COREDIR)
08aa1457 1248
4a71ed0c 1249install : all installbare installhtml
6dead956 1250
7a958ec3 1251installbare : $(RIGHTMAKE) utils
d07c2202 1252 $(PERLEXE) ..\installperl
7766f137 1253 if exist $(WPERLEXE) $(XCOPY) $(WPERLEXE) $(INST_BIN)\*.*
08aa1457 1254 $(XCOPY) $(GLOBEXE) $(INST_BIN)\*.*
e5a95ffb 1255 $(XCOPY) bin\*.bat $(INST_SCRIPT)\*.*
6dead956 1256
1257installhtml : doc
08aa1457 1258 $(RCOPY) html\*.* $(INST_HTML)\*.*
1259
1260inst_lib : $(CONFIGPM)
1261 copy splittree.pl ..
eb480a0b 1262 $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR)
08aa1457 1263 $(RCOPY) ..\lib $(INST_LIB)\*.*
1264
dfb634a9 1265minitest : $(MINIPERL) $(GLOBEXE) $(CONFIGPM) utils
08aa1457 1266 $(XCOPY) $(MINIPERL) ..\t\perl.exe
1267.IF "$(CCTYPE)" == "BORLAND"
1268 $(XCOPY) $(GLOBBAT) ..\t\$(NULL)
1269.ELSE
1270 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1271.ENDIF
1272 attrib -r ..\t\*.*
1273 copy test ..\t
1274 cd ..\t && \
1275 $(MINIPERL) -I..\lib test base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t
1276
dfb634a9 1277test-prep : all utils
08aa1457 1278 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1279 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1280.IF "$(CCTYPE)" == "BORLAND"
1281 $(XCOPY) $(GLOBBAT) ..\t\$(NULL)
1282.ELSE
1283 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1284.ENDIF
32f822de 1285
7a958ec3 1286test : $(RIGHTMAKE) test-prep
08aa1457 1287 cd ..\t && $(PERLEXE) -I..\lib harness
1288
32f822de 1289test-notty : test-prep
1290 set PERL_SKIP_TTY_TEST=1 && \
1291 cd ..\t && $(PERLEXE) -I.\lib harness
1292
08aa1457 1293clean :
d56e6723 1294 -@erase miniperlmain$(o)
08aa1457 1295 -@erase $(MINIPERL)
d56e6723 1296 -@erase perlglob$(o)
1297 -@erase perlmain$(o)
08aa1457 1298 -@erase config.w32
1299 -@erase /f config.h
1300 -@erase $(GLOBEXE)
1301 -@erase $(PERLEXE)
7766f137 1302 -@erase $(WPERLEXE)
08aa1457 1303 -@erase $(PERLDLL)
1304 -@erase $(CORE_OBJ)
eb480a0b 1305 -rmdir /s /q $(MINIDIR) || rmdir /s $(MINIDIR)
08aa1457 1306 -@erase $(WIN32_OBJ)
1307 -@erase $(DLL_OBJ)
d07c2202 1308 -@erase $(X2P_OBJ)
c5be433b 1309 -@erase ..\*$(o) ..\*$(a) ..\*.exp *$(o) *$(a) *.exp *.res
d444a431 1310 -@erase ..\t\*.exe ..\t\*.dll ..\t\*.bat
d07c2202 1311 -@erase ..\x2p\*.exe ..\x2p\*.bat
08aa1457 1312 -@erase *.ilk
1313 -@erase *.pdb