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