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