Sync with the latest MakeMaker snapshot.
[p5sagit/p5-mst-13.2.git] / win32 / Makefile
CommitLineData
9e42cd94 1#
2# Makefile to build perl on Windows NT using Microsoft NMAKE.
3# Supported compilers:
c623ac67 4# Visual C++ 2.0 through 6.0 (and possibly newer versions)
5# MS Platform SDK 64-bit compiler and tools **experimental**
9e42cd94 6#
7# This is set up to build a perl.exe that runs off a shared library
78a7c709 8# (perl59.dll). Also makes individual DLLs for the XS extensions.
9e42cd94 9#
10
11##
12## Make sure you read README.win32 *before* you mess with anything here!
13##
14
15##
16## Build configuration. Edit the values below to suit your needs.
17##
18
19#
20# Set these to wherever you want "nmake install" to put your
21# newly built perl.
22#
23INST_DRV = c:
24INST_TOP = $(INST_DRV)\perl
25
26#
27# Comment this out if you DON'T want your perl installation to be versioned.
28# This means that the new installation will overwrite any files from the
29# old installation at the same INST_TOP location. Leaving it enabled is
30# the safest route, as perl adds the extra version directory to all the
31# locations it installs files to. If you disable it, an alternative
32# versioned installation can be obtained by setting INST_TOP above to a
33# path that includes an arbitrary version string.
34#
4282de36 35#INST_VER = \5.8.0
9e42cd94 36
37#
38# Comment this out if you DON'T want your perl installation to have
39# architecture specific components. This means that architecture-
40# specific files will be installed along with the architecture-neutral
41# files. Leaving it enabled is safer and more flexible, in case you
42# want to build multiple flavors of perl and install them together in
43# the same location. Commenting it out gives you a simpler
44# installation that is easier to understand for beginners.
45#
46#INST_ARCH = \$(ARCHNAME)
47
48#
49# uncomment to enable multiple interpreters. This is need for fork()
f7d585d3 50# emulation and for thread support.
9e42cd94 51#
52USE_MULTI = define
53
54#
f7d585d3 55# Beginnings of interpreter cloning/threads; now reasonably complete.
9e42cd94 56# This should be enabled to get the fork() emulation. This needs
57# USE_MULTI as well.
58#
59USE_ITHREADS = define
60
61#
62# uncomment to enable the implicit "host" layer for all system calls
63# made by perl. This needs USE_MULTI above. This is also needed to
64# get fork().
65#
66USE_IMP_SYS = define
67
68#
f7d585d3 69# Comment out next assign to disable perl's I/O subsystem and use compiler's
70# stdio for IO - depending on your compiler vendor and run time library you may
71# then get a number of fails from make test i.e. bugs - complain to them not us ;-).
72# You will also be unable to take full advantage of perl5.8's support for multiple
73# encodings and may see lower IO performance. You have been warned.
9e42cd94 74USE_PERLIO = define
75
76#
4a9d6100 77# Comment this out if you don't want to enable large file support for
78# some reason. Should normally only be changed to maintain compatibility
79# with an older release of perl.
80USE_LARGE_FILES = define
81
82#
9e42cd94 83# uncomment one of the following lines if you are using either
84# Visual C++ 2.x or Visual C++ 6.x (aka Visual Studio 98)
85#
86#CCTYPE = MSVC20
4a9d6100 87CCTYPE = MSVC60
9e42cd94 88
89#
90# uncomment next line if you want debug version of perl (big,slow)
f7d585d3 91# If not enabled, we automatically try to use maximum optimization
92# with all compilers that are known to have a working optimizer.
9e42cd94 93#
94#CFG = Debug
95
96#
97# uncomment to enable use of PerlCRT.DLL when using the Visual C compiler.
98# It has patches that fix known bugs in older versions of MSVCRT.DLL.
99# This currently requires VC 5.0 with Service Pack 3 or later.
100# Get it from CPAN at http://www.cpan.org/authors/id/D/DO/DOUGL/
101# and follow the directions in the package to install.
102#
103# Not recommended if you have VC 6.x and you're not running Windows 9x.
104#
105#USE_PERLCRT = define
106
107#
108# uncomment to enable linking with setargv.obj under the Visual C
109# compiler. Setting this options enables perl to expand wildcards in
110# arguments, but it may be harder to use alternate methods like
111# File::DosGlob that are more powerful. This option is supported only with
112# Visual C.
113#
114#USE_SETARGV = define
115
116#
4ace4afb 117# if you want to have the crypt() builtin function implemented, leave this or
118# CRYPT_LIB uncommented. The fcrypt.c file named here contains a suitable
119# version of des_fcrypt().
9e42cd94 120#
4ace4afb 121CRYPT_SRC = fcrypt.c
9e42cd94 122
123#
124# if you didn't set CRYPT_SRC and if you have des_fcrypt() available in a
125# library, uncomment this, and make sure the library exists (see README.win32)
126# Specify the full pathname of the library.
127#
128#CRYPT_LIB = fcrypt.lib
129
130#
131# set this if you wish to use perl's malloc
132# WARNING: Turning this on/off WILL break binary compatibility with extensions
133# you may have compiled with/without it. Be prepared to recompile all
134# extensions if you change the default. Currently, this cannot be enabled
135# if you ask for USE_IMP_SYS above.
136#
137#PERL_MALLOC = define
138
139#
06c896bb 140# set this to enable debugging mstats
141# This must be enabled to use the Devel::Peek::mstat() function. This cannot
142# be enabled without PERL_MALLOC as well.
143#
144#DEBUG_MSTATS = define
145
146#
147#
9e42cd94 148# set the install locations of the compiler include/libraries
149# Running VCVARS32.BAT is *required* when using Visual C.
150# Some versions of Visual C don't define MSVCDIR in the environment,
151# so you may have to set CCHOME explicitly (spaces in the path name should
152# not be quoted)
153#
154#CCHOME = f:\msvc20
155CCHOME = $(MSVCDIR)
156CCINCDIR = $(CCHOME)\include
157CCLIBDIR = $(CCHOME)\lib
158
159#
160# Additional compiler flags can be specified here.
161#
162
163#
164# This should normally be disabled. Adding -DPERL_POLLUTE enables support
165# for old symbols by default, at the expense of extreme pollution. You most
166# probably just want to build modules that won't compile with
167# perl Makefile.PL POLLUTE=1
168# instead of enabling this. Please report such modules to the respective
169# authors.
170#
171#BUILDOPT = $(BUILDOPT) -DPERL_POLLUTE
172
173#
174# This should normally be disabled. Enabling it will disable the File::Glob
175# implementation of CORE::glob.
176#
177#BUILDOPT = $(BUILDOPT) -DPERL_EXTERNAL_GLOB
178
179#
180# This should normally be disabled. Enabling it causes perl to read scripts
181# in text mode (which is the 5.005 behavior) and will break ByteLoader.
182#BUILDOPT = $(BUILDOPT) -DPERL_TEXTMODE_SCRIPTS
183
184#
185# specify semicolon-separated list of extra directories that modules will
186# look for libraries (spaces in path names need not be quoted)
187#
188EXTRALIBDIRS =
189
190#
191# set this to your email address (perl will guess a value from
192# from your loginname and your hostname, which may not be right)
193#
194#EMAIL =
195
196##
197## Build configuration ends.
198##
199
200##################### CHANGE THESE ONLY IF YOU MUST #####################
201
202!IF "$(CRYPT_SRC)$(CRYPT_LIB)" == ""
203D_CRYPT = undef
204!ELSE
205D_CRYPT = define
206CRYPT_FLAG = -DHAVE_DES_FCRYPT
207!ENDIF
208
209!IF "$(PERL_MALLOC)" == ""
210PERL_MALLOC = undef
06c896bb 211DEBUG_MSTATS = undef
212!ENDIF
213
214!IF "$(DEBUG_MSTATS)" == ""
215DEBUG_MSTATS = undef
216!ENDIF
217
218!IF "$(DEBUG_MSTATS)" == "define"
219BUILDOPT = $(BUILDOPT) -DPERL_DEBUGGING_MSTATS
9e42cd94 220!ENDIF
221
9e42cd94 222!IF "$(USE_IMP_SYS)" == "define"
223PERL_MALLOC = undef
224!ENDIF
225
226!IF "$(USE_MULTI)" == ""
227USE_MULTI = undef
228!ENDIF
229
230!IF "$(USE_ITHREADS)" == ""
231USE_ITHREADS = undef
232!ENDIF
233
234!IF "$(USE_IMP_SYS)" == ""
235USE_IMP_SYS = undef
236!ENDIF
237
238!IF "$(USE_PERLIO)" == ""
239USE_PERLIO = undef
240!ENDIF
241
4a9d6100 242!IF "$(USE_LARGE_FILES)" == ""
243USE_LARGE_FILES = undef
244!ENDIF
245
9e42cd94 246!IF "$(USE_PERLCRT)" == ""
247USE_PERLCRT = undef
248!ENDIF
249
3db8f154 250!IF "$(USE_IMP_SYS)$(USE_MULTI)" == "defineundef"
9e42cd94 251USE_MULTI = define
252!ENDIF
253
254!IF "$(USE_ITHREADS)$(USE_MULTI)" == "defineundef"
255USE_MULTI = define
9e42cd94 256!ENDIF
257
3db8f154 258!IF "$(USE_MULTI)" != "undef"
9e42cd94 259BUILDOPT = $(BUILDOPT) -DPERL_IMPLICIT_CONTEXT
260!ENDIF
261
262!IF "$(USE_IMP_SYS)" != "undef"
263BUILDOPT = $(BUILDOPT) -DPERL_IMPLICIT_SYS
264!ENDIF
265
266!IF "$(PROCESSOR_ARCHITECTURE)" == ""
267PROCESSOR_ARCHITECTURE = x86
268!ENDIF
269
c623ac67 270!IF "$(WIN64)" == ""
271!IF "$(PROCESSOR_ARCHITEW6432)" != ""
272PROCESSOR_ARCHITECTURE = $(PROCESSOR_ARCHITEW6432)
273WIN64 = define
274!ELSE
275!IF "$(PROCESSOR_ARCHITECTURE)" == "IA64"
276WIN64 = define
277!ELSE
278WIN64 = undef
279!ENDIF
280!ENDIF
281!ENDIF
282
9e42cd94 283!IF "$(USE_MULTI)" == "define"
284ARCHNAME = MSWin32-$(PROCESSOR_ARCHITECTURE)-multi
285!ELSE
286!IF "$(USE_PERLIO)" == "define"
287ARCHNAME = MSWin32-$(PROCESSOR_ARCHITECTURE)-perlio
288!ELSE
289ARCHNAME = MSWin32-$(PROCESSOR_ARCHITECTURE)
290!ENDIF
291!ENDIF
9e42cd94 292
293!IF "$(USE_PERLIO)" == "define"
294BUILDOPT = $(BUILDOPT) -DUSE_PERLIO
295!ENDIF
296
297!IF "$(USE_ITHREADS)" == "define"
298ARCHNAME = $(ARCHNAME)-thread
299!ENDIF
300
301# Visual Studio 98 specific
302!IF "$(CCTYPE)" == "MSVC60"
303
304# VC 6.0 can load the socket dll on demand. Makes the test suite
305# run in about 10% less time.
306DELAYLOAD = -DELAYLOAD:wsock32.dll -DELAYLOAD:shell32.dll delayimp.lib
307!ENDIF
308
309ARCHDIR = ..\lib\$(ARCHNAME)
310COREDIR = ..\lib\CORE
311AUTODIR = ..\lib\auto
312LIBDIR = ..\lib
313EXTDIR = ..\ext
314PODDIR = ..\pod
315EXTUTILSDIR = $(LIBDIR)\ExtUtils
316
317#
318INST_SCRIPT = $(INST_TOP)$(INST_VER)\bin
319INST_BIN = $(INST_SCRIPT)$(INST_ARCH)
320INST_LIB = $(INST_TOP)$(INST_VER)\lib
321INST_ARCHLIB = $(INST_LIB)$(INST_ARCH)
322INST_COREDIR = $(INST_ARCHLIB)\CORE
323INST_POD = $(INST_LIB)\pod
324INST_HTML = $(INST_TOP)$(INST_VER)\html
325
326#
327# Programs to compile, build .lib files and link
328#
329
330CC = cl
331LINK32 = link
332LIB32 = $(LINK32) -lib
333RSC = rc
334
335#
336# Options
337#
338
339INCLUDES = -I$(COREDIR) -I.\include -I. -I..
340#PCHFLAGS = -Fpc:\temp\vcmoduls.pch -YX
341DEFINES = -DWIN32 -D_CONSOLE -DNO_STRICT $(CRYPT_FLAG)
342LOCDEFS = -DPERLDLL -DPERL_CORE
343SUBSYS = console
344CXX_FLAG = -TP -GX
345
346!IF "$(USE_PERLCRT)" != "define"
347LIBC = msvcrt.lib
348!ELSE
349LIBC = PerlCRT.lib
350!ENDIF
351
352PERLEXE_RES =
353PERLDLL_RES =
354
355!IF "$(CFG)" == "Debug"
356! IF "$(CCTYPE)" == "MSVC20"
357OPTIMIZE = -Od -MD -Z7 -DDEBUGGING
358! ELSE
359OPTIMIZE = -Od -MD -Zi -DDEBUGGING
360! ENDIF
c623ac67 361LINK_DBG = -debug
9e42cd94 362!ELSE
d921a5fb 363OPTIMIZE = -MD -DNDEBUG
9e42cd94 364LINK_DBG = -release
d921a5fb 365! IF "$(WIN64)" == "define"
366# enable Whole Program Optimizations (WPO) and Link Time Code Generation (LTCG)
367OPTIMIZE = $(OPTIMIZE) -Ox -GL
368LINK_DBG = $(LINK_DBG) -ltcg
369! ELSE
370# -O1 yields smaller code, which turns out to be faster than -O2 on x86
371OPTIMIZE = $(OPTIMIZE) -O1
372#OPTIMIZE = $(OPTIMIZE) -O2
373! ENDIF
9e42cd94 374!ENDIF
375
c623ac67 376!IF "$(WIN64)" == "define"
377DEFINES = $(DEFINES) -DWIN64 -DCONSERVATIVE
378OPTIMIZE = $(OPTIMIZE) -Wp64 -Op
379!ENDIF
380
9e42cd94 381!IF "$(USE_PERLCRT)" != "define"
382BUILDOPT = $(BUILDOPT) -DPERL_MSVCRT_READFIX
383!ENDIF
384
385LIBBASEFILES = $(CRYPT_LIB) \
386 oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.lib \
387 comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \
388 netapi32.lib uuid.lib wsock32.lib mpr.lib winmm.lib \
c623ac67 389 version.lib
390
391# win64 doesn't have some libs
392!IF "$(WIN64)" != "define"
393LIBBASEFILES = $(LIBBASEFILES) odbc32.lib odbccp32.lib
394!ENDIF
9e42cd94 395
396# we add LIBC here, since we may be using PerlCRT.dll
397LIBFILES = $(LIBBASEFILES) $(LIBC)
398
399CFLAGS = -nologo -Gf -W3 $(INCLUDES) $(DEFINES) $(LOCDEFS) \
400 $(PCHFLAGS) $(OPTIMIZE)
401LINK_FLAGS = -nologo -nodefaultlib $(LINK_DBG) \
402 -libpath:"$(INST_COREDIR)" \
403 -machine:$(PROCESSOR_ARCHITECTURE)
404OBJOUT_FLAG = -Fo
405EXEOUT_FLAG = -Fe
406
407CFLAGS_O = $(CFLAGS) $(BUILDOPT)
408
409#################### do not edit below this line #######################
410############# NO USER-SERVICEABLE PARTS BEYOND THIS POINT ##############
411
412o = .obj
413
414#
415# Rules
416#
417
418.SUFFIXES : .c $(o) .dll .lib .exe .rc .res
419
420.c$(o):
421 $(CC) -c -I$(<D) $(CFLAGS_O) $(OBJOUT_FLAG)$@ $<
422
423.y.c:
424 $(NOOP)
425
426$(o).dll:
427 $(LINK32) -dll -subsystem:windows -implib:$(*B).lib -def:$(*B).def \
428 -out:$@ $(LINK_FLAGS) $(LIBFILES) $< $(LIBPERL)
429
430.rc.res:
431 $(RSC) -i.. $<
432
433#
434# various targets
435
436# makedef.pl must be updated if this changes, and this should normally
437# only change when there is an incompatible revision of the public API.
78a7c709 438PERLIMPLIB = ..\perl59.lib
439PERLDLL = ..\perl59.dll
9e42cd94 440
441MINIPERL = ..\miniperl.exe
442MINIDIR = .\mini
443PERLEXE = ..\perl.exe
444WPERLEXE = ..\wperl.exe
445GLOBEXE = ..\perlglob.exe
446CONFIGPM = ..\lib\Config.pm
447MINIMOD = ..\lib\ExtUtils\Miniperl.pm
448X2P = ..\x2p\a2p.exe
449
450# Nominate a target which causes extensions to be re-built
451# This used to be $(PERLEXE), but at worst it is the .dll that they depend
452# on and really only the interface - i.e. the .def file used to export symbols
453# from the .dll
454PERLDEP = perldll.def
455
456PL2BAT = bin\pl2bat.pl
457GLOBBAT = bin\perlglob.bat
458
459UTILS = \
460 ..\utils\h2ph \
461 ..\utils\splain \
462 ..\utils\dprofpp \
463 ..\utils\perlbug \
464 ..\utils\pl2pm \
465 ..\utils\c2ph \
827a599d 466 ..\utils\pstruct \
9e42cd94 467 ..\utils\h2xs \
468 ..\utils\perldoc \
469 ..\utils\perlcc \
470 ..\utils\perlivp \
471 ..\utils\libnetcfg \
827a599d 472 ..\utils\enc2xs \
473 ..\utils\piconv \
83cd6e83 474 ..\utils\cpan \
ea0e987d 475 ..\utils\xsubpp \
4b618757 476 ..\utils\prove \
ea0e987d 477 ..\utils\instmodsh \
9e42cd94 478 ..\pod\checkpods \
479 ..\pod\pod2html \
480 ..\pod\pod2latex \
481 ..\pod\pod2man \
482 ..\pod\pod2text \
483 ..\pod\pod2usage \
484 ..\pod\podchecker \
485 ..\pod\podselect \
486 ..\x2p\find2perl \
827a599d 487 ..\x2p\psed \
9e42cd94 488 ..\x2p\s2p \
9e42cd94 489 bin\exetype.pl \
490 bin\runperl.pl \
491 bin\pl2bat.pl \
492 bin\perlglob.pl \
493 bin\search.pl
494
495MAKE = nmake -nologo
496MAKE_BARE = nmake
497
c623ac67 498!IF "$(WIN64)" == "define"
499CFGSH_TMPL = config.vc64
500CFGH_TMPL = config_H.vc64
501!ELSE
9e42cd94 502CFGSH_TMPL = config.vc
503CFGH_TMPL = config_H.vc
c623ac67 504!ENDIF
9e42cd94 505
506XCOPY = xcopy /f /r /i /d
507RCOPY = xcopy /f /r /i /e /d
508NOOP = @echo
509NULL =
510
511DEL = del
512
513#
514# filenames given to xsubpp must have forward slashes (since it puts
515# full pathnames in #line strings)
516XSUBPP = ..\$(MINIPERL) -I..\..\lib ..\$(EXTUTILSDIR)\xsubpp \
517 -C++ -prototypes
518
519MICROCORE_SRC = \
520 ..\av.c \
521 ..\deb.c \
522 ..\doio.c \
523 ..\doop.c \
524 ..\dump.c \
525 ..\globals.c \
526 ..\gv.c \
527 ..\hv.c \
528 ..\locale.c \
529 ..\mg.c \
530 ..\numeric.c \
531 ..\op.c \
295f0f84 532 ..\pad.c \
9e42cd94 533 ..\perl.c \
534 ..\perlapi.c \
535 ..\perly.c \
536 ..\pp.c \
537 ..\pp_ctl.c \
538 ..\pp_hot.c \
539 ..\pp_pack.c \
540 ..\pp_sort.c \
541 ..\pp_sys.c \
10bc17b6 542 ..\reentr.c \
9e42cd94 543 ..\regcomp.c \
544 ..\regexec.c \
545 ..\run.c \
546 ..\scope.c \
547 ..\sv.c \
548 ..\taint.c \
549 ..\toke.c \
550 ..\universal.c \
551 ..\utf8.c \
552 ..\util.c \
553 ..\xsutils.c
554
555EXTRACORE_SRC = $(EXTRACORE_SRC) perllib.c
556
557!IF "$(PERL_MALLOC)" == "define"
558EXTRACORE_SRC = $(EXTRACORE_SRC) ..\malloc.c
559!ENDIF
560
561EXTRACORE_SRC = $(EXTRACORE_SRC) ..\perlio.c
562
563WIN32_SRC = \
564 .\win32.c \
565 .\win32sck.c \
566 .\win32thread.c
567
f7d585d3 568# We need this for miniperl build unless we override canned
569# config.h #define building mini\*
570#!IF "$(USE_PERLIO)" == "define"
9e42cd94 571WIN32_SRC = $(WIN32_SRC) .\win32io.c
f7d585d3 572#!ENDIF
9e42cd94 573
574!IF "$(CRYPT_SRC)" != ""
575WIN32_SRC = $(WIN32_SRC) .\$(CRYPT_SRC)
576!ENDIF
577
578DLL_SRC = $(DYNALOADER).c
579
580X2P_SRC = \
581 ..\x2p\a2p.c \
582 ..\x2p\hash.c \
583 ..\x2p\str.c \
584 ..\x2p\util.c \
585 ..\x2p\walk.c
586
587CORE_NOCFG_H = \
588 ..\av.h \
589 ..\cop.h \
590 ..\cv.h \
591 ..\dosish.h \
592 ..\embed.h \
593 ..\form.h \
594 ..\gv.h \
595 ..\handy.h \
596 ..\hv.h \
597 ..\iperlsys.h \
598 ..\mg.h \
599 ..\nostdio.h \
600 ..\op.h \
601 ..\opcode.h \
602 ..\perl.h \
603 ..\perlapi.h \
604 ..\perlsdio.h \
605 ..\perlsfio.h \
606 ..\perly.h \
607 ..\pp.h \
608 ..\proto.h \
609 ..\regexp.h \
610 ..\scope.h \
611 ..\sv.h \
612 ..\thread.h \
613 ..\unixish.h \
614 ..\utf8.h \
615 ..\util.h \
616 ..\warnings.h \
617 ..\XSUB.h \
618 ..\EXTERN.h \
619 ..\perlvars.h \
620 ..\intrpvar.h \
621 ..\thrdvar.h \
622 .\include\dirent.h \
623 .\include\netdb.h \
624 .\include\sys\socket.h \
625 .\win32.h
626
627CORE_H = $(CORE_NOCFG_H) .\config.h
628
629MICROCORE_OBJ = $(MICROCORE_SRC:.c=.obj)
630CORE_OBJ = $(MICROCORE_OBJ) $(EXTRACORE_SRC:.c=.obj)
631WIN32_OBJ = $(WIN32_SRC:.c=.obj)
632MINICORE_OBJ = $(MICROCORE_OBJ:..\=.\mini\) \
633 $(MINIDIR)\miniperlmain$(o) \
634 $(MINIDIR)\perlio$(o)
635MINIWIN32_OBJ = $(WIN32_OBJ:.\=.\mini\)
636MINI_OBJ = $(MINICORE_OBJ) $(MINIWIN32_OBJ)
637DLL_OBJ = $(DLL_SRC:.c=.obj)
638X2P_OBJ = $(X2P_SRC:.c=.obj)
639
640PERLDLL_OBJ = $(CORE_OBJ)
641PERLEXE_OBJ = perlmain$(o)
642
643PERLDLL_OBJ = $(PERLDLL_OBJ) $(WIN32_OBJ) $(DLL_OBJ)
644#PERLEXE_OBJ = $(PERLEXE_OBJ) $(WIN32_OBJ) $(DLL_OBJ)
645
646!IF "$(USE_SETARGV)" != ""
647SETARGV_OBJ = setargv$(o)
648!ENDIF
649
650DYNALOADER = $(EXTDIR)\DynaLoader\DynaLoader
651SOCKET = $(EXTDIR)\Socket\Socket
652FCNTL = $(EXTDIR)\Fcntl\Fcntl
653OPCODE = $(EXTDIR)\Opcode\Opcode
654SDBM_FILE = $(EXTDIR)\SDBM_File\SDBM_File
655IO = $(EXTDIR)\IO\IO
656POSIX = $(EXTDIR)\POSIX\POSIX
657ATTRS = $(EXTDIR)\attrs\attrs
658THREAD = $(EXTDIR)\Thread\Thread
659B = $(EXTDIR)\B\B
660RE = $(EXTDIR)\re\re
661DUMPER = $(EXTDIR)\Data\Dumper\Dumper
662ERRNO = $(EXTDIR)\Errno\Errno
663PEEK = $(EXTDIR)\Devel\Peek\Peek
664BYTELOADER = $(EXTDIR)\ByteLoader\ByteLoader
665DPROF = $(EXTDIR)\Devel\DProf\DProf
666GLOB = $(EXTDIR)\File\Glob\Glob
667HOSTNAME = $(EXTDIR)\Sys\Hostname\Hostname
668STORABLE = $(EXTDIR)\Storable\Storable
669FILTER = $(EXTDIR)\Filter\Util\Call\Call
670ENCODE = $(EXTDIR)\Encode\Encode
671MD5 = $(EXTDIR)\Digest\MD5\MD5
e934609f 672PERLIOSCALAR = $(EXTDIR)\PerlIO\scalar\scalar
9e42cd94 673MIMEBASE64 = $(EXTDIR)\MIME\Base64\Base64
674TIMEHIRES = $(EXTDIR)\Time\HiRes\HiRes
675CWD = $(EXTDIR)\Cwd\Cwd
676LISTUTIL = $(EXTDIR)\List\Util\Util
e934609f 677PERLIOVIA = $(EXTDIR)\PerlIO\via\via
83e2e978 678XSAPITEST = $(EXTDIR)\XS\APItest\APItest
9e42cd94 679XSTYPEMAP = $(EXTDIR)\XS\Typemap\Typemap
680UNICODENORMALIZE = $(EXTDIR)\Unicode\Normalize\Normalize
681
682SOCKET_DLL = $(AUTODIR)\Socket\Socket.dll
683FCNTL_DLL = $(AUTODIR)\Fcntl\Fcntl.dll
684OPCODE_DLL = $(AUTODIR)\Opcode\Opcode.dll
685SDBM_FILE_DLL = $(AUTODIR)\SDBM_File\SDBM_File.dll
686IO_DLL = $(AUTODIR)\IO\IO.dll
687POSIX_DLL = $(AUTODIR)\POSIX\POSIX.dll
688ATTRS_DLL = $(AUTODIR)\attrs\attrs.dll
689THREAD_DLL = $(AUTODIR)\Thread\Thread.dll
690B_DLL = $(AUTODIR)\B\B.dll
691DUMPER_DLL = $(AUTODIR)\Data\Dumper\Dumper.dll
692PEEK_DLL = $(AUTODIR)\Devel\Peek\Peek.dll
693RE_DLL = $(AUTODIR)\re\re.dll
694BYTELOADER_DLL = $(AUTODIR)\ByteLoader\ByteLoader.dll
695DPROF_DLL = $(AUTODIR)\Devel\DProf\DProf.dll
696GLOB_DLL = $(AUTODIR)\File\Glob\Glob.dll
697HOSTNAME_DLL = $(AUTODIR)\Sys\Hostname\Hostname.dll
698STORABLE_DLL = $(AUTODIR)\Storable\Storable.dll
699FILTER_DLL = $(AUTODIR)\Filter\Util\Call\Call.dll
700ENCODE_DLL = $(AUTODIR)\Encode\Encode.dll
701MD5_DLL = $(AUTODIR)\Digest\MD5\MD5.dll
e934609f 702PERLIOSCALAR_DLL = $(AUTODIR)\PerlIO\scalar\scalar.dll
9e42cd94 703MIMEBASE64_DLL = $(AUTODIR)\MIME\Base64\Base64.dll
704TIMEHIRES_DLL = $(AUTODIR)\Time\HiRes\HiRes.dll
705CWD_DLL = $(AUTODIR)\Cwd\Cwd.dll
706LISTUTIL_DLL = $(AUTODIR)\List\Util\Util.dll
e934609f 707PERLIOVIA_DLL = $(AUTODIR)\PerlIO\via\via.dll
83e2e978 708XSAPITEST_DLL = $(AUTODIR)\XS\APItest\APItest.dll
9e42cd94 709XSTYPEMAP_DLL = $(AUTODIR)\XS\Typemap\Typemap.dll
710UNICODENORMALIZE_DLL = $(AUTODIR)\Unicode\Normalize\Normalize.dll
711
712EXTENSION_C = \
713 $(SOCKET).c \
714 $(FCNTL).c \
715 $(OPCODE).c \
716 $(SDBM_FILE).c \
717 $(IO).c \
718 $(POSIX).c \
719 $(ATTRS).c \
720 $(THREAD).c \
721 $(RE).c \
722 $(DUMPER).c \
723 $(PEEK).c \
724 $(B).c \
725 $(BYTELOADER).c \
726 $(DPROF).c \
727 $(GLOB).c \
728 $(HOSTNAME).c \
729 $(STORABLE).c \
730 $(FILTER).c \
731 $(ENCODE).c \
732 $(MD5).c \
733 $(PERLIOSCALAR).c \
734 $(MIMEBASE64).c \
735 $(TIMEHIRES).c \
736 $(CWD).c \
737 $(LISTUTIL).c \
738 $(PERLIOVIA).c \
83e2e978 739 $(XSAPITEST).c \
9e42cd94 740 $(XSTYPEMAP).c \
741 $(UNICODENORMALIZE).c
742
743EXTENSION_DLL = \
744 $(SOCKET_DLL) \
745 $(FCNTL_DLL) \
746 $(OPCODE_DLL) \
747 $(SDBM_FILE_DLL)\
748 $(IO_DLL) \
749 $(POSIX_DLL) \
750 $(ATTRS_DLL) \
751 $(DUMPER_DLL) \
752 $(PEEK_DLL) \
753 $(B_DLL) \
754 $(RE_DLL) \
755 $(THREAD_DLL) \
756 $(BYTELOADER_DLL) \
757 $(DPROF_DLL) \
758 $(GLOB_DLL) \
759 $(HOSTNAME_DLL) \
760 $(STORABLE_DLL) \
761 $(FILTER_DLL) \
762 $(ENCODE_DLL) \
763 $(MD5_DLL) \
764 $(PERLIOSCALAR_DLL) \
765 $(MIMEBASE64_DLL) \
766 $(TIMEHIRES_DLL) \
767 $(CWD_DLL) \
768 $(LISTUTIL_DLL) \
769 $(PERLIOVIA_DLL) \
83e2e978 770 $(XSAPITEST_DLL) \
9e42cd94 771 $(XSTYPEMAP_DLL) \
772 $(UNICODENORMALIZE_DLL)
773
774POD2HTML = $(PODDIR)\pod2html
775POD2MAN = $(PODDIR)\pod2man
776POD2LATEX = $(PODDIR)\pod2latex
777POD2TEXT = $(PODDIR)\pod2text
778
779CFG_VARS = \
780 "INST_DRV=$(INST_DRV)" \
781 "INST_TOP=$(INST_TOP)" \
782 "INST_VER=$(INST_VER)" \
783 "INST_ARCH=$(INST_ARCH)" \
784 "archname=$(ARCHNAME)" \
785 "cc=$(CC)" \
786 "ld=$(LINK32)" \
787 "ccflags=-nologo -Gf -W3 $(OPTIMIZE:"=\") $(DEFINES) $(BUILDOPT)" \
788 "cf_email=$(EMAIL)" \
789 "d_crypt=$(D_CRYPT)" \
790 "d_mymalloc=$(PERL_MALLOC)" \
791 "libs=$(LIBFILES)" \
792 "incpath=$(CCINCDIR:"=\")" \
793 "libperl=$(PERLIMPLIB:..\=)" \
794 "libpth=$(CCLIBDIR:"=\");$(EXTRALIBDIRS:"=\")" \
795 "libc=$(LIBC)" \
796 "make=$(MAKE_BARE)" \
7e0017d3 797 "usethreads=$(USE_ITHREADS)" \
9e42cd94 798 "useithreads=$(USE_ITHREADS)" \
9e42cd94 799 "usemultiplicity=$(USE_MULTI)" \
800 "useperlio=$(USE_PERLIO)" \
4a9d6100 801 "uselargefiles=$(USE_LARGE_FILES)" \
9e42cd94 802 "LINK_FLAGS=$(LINK_FLAGS:"=\")" \
803 "optimize=$(OPTIMIZE:"=\")"
804
805#
806# Top targets
807#
808
809all : .\config.h $(GLOBEXE) $(MINIMOD) $(CONFIGPM) $(PERLEXE) \
810 $(X2P) Extensions
811 @echo Everything is up to date. '$(MAKE_BARE) test' to run test suite.
812
813$(DYNALOADER)$(o) : $(DYNALOADER).c $(CORE_H) $(EXTDIR)\DynaLoader\dlutils.c
814
815#------------------------------------------------------------
816
817$(GLOBEXE) : perlglob$(o)
818 $(LINK32) $(LINK_FLAGS) $(LIBFILES) -out:$@ -subsystem:$(SUBSYS) \
819 perlglob$(o) setargv$(o)
820
821perlglob$(o) : perlglob.c
822
823config.w32 : $(CFGSH_TMPL)
824 copy $(CFGSH_TMPL) config.w32
825
826.\config.h : $(CFGH_TMPL)
827 -del /f config.h
828 copy $(CFGH_TMPL) config.h
829
830..\config.sh : config.w32 $(MINIPERL) config_sh.PL
831 $(MINIPERL) -I..\lib config_sh.PL $(CFG_VARS) config.w32 > ..\config.sh
832
833# this target is for when changes to the main config.sh happen
834# edit config.{b,v,g}c and make this target once for each supported
835# compiler (e.g. `nmake CCTYPE=BORLAND regen_config_h`)
836regen_config_h:
837 perl config_sh.PL $(CFG_VARS) $(CFGSH_TMPL) > ..\config.sh
838 cd ..
8839b9e4 839 -del /f perl.exe perl*.dll
9e42cd94 840 perl configpm
841 cd win32
842 -del /f $(CFGH_TMPL)
843 -mkdir $(COREDIR)
8839b9e4 844 -perl config_h.PL "INST_VER=$(INST_VER)"
9e42cd94 845 rename config.h $(CFGH_TMPL)
846
847$(CONFIGPM) : $(MINIPERL) ..\config.sh config_h.PL ..\minimod.pl
848 cd ..
849 miniperl configpm
850 cd win32
851 if exist lib\* $(RCOPY) lib\*.* ..\lib\$(NULL)
852 $(XCOPY) ..\*.h $(COREDIR)\*.*
853 $(XCOPY) *.h $(COREDIR)\*.*
854 $(XCOPY) ..\ext\re\re.pm $(LIBDIR)\*.*
855 $(RCOPY) include $(COREDIR)\*.*
856 -$(MINIPERL) -I..\lib config_h.PL "INST_VER=$(INST_VER)"
857 if errorlevel 1 $(MAKE) /$(MAKEFLAGS) $(CONFIGPM)
858
859$(MINIPERL) : $(MINIDIR) $(MINI_OBJ)
860 $(LINK32) -subsystem:console -out:$@ @<<
861 $(LINK_FLAGS) $(LIBFILES) $(MINI_OBJ)
862<<
863
864$(MINIDIR) :
865 if not exist "$(MINIDIR)" mkdir "$(MINIDIR)"
866
867$(MINICORE_OBJ) : $(CORE_NOCFG_H)
868 $(CC) -c $(CFLAGS) -DPERL_EXTERNAL_GLOB $(OBJOUT_FLAG)$@ ..\$(*F).c
869
870$(MINIWIN32_OBJ) : $(CORE_NOCFG_H)
871 $(CC) -c $(CFLAGS) $(OBJOUT_FLAG)$@ $(*F).c
872
873# -DPERL_IMPLICIT_SYS needs C++ for perllib.c
874# This is the only file that depends on perlhost.h, vmem.h, and vdir.h
875!IF "$(USE_IMP_SYS)" == "define"
876perllib$(o) : perllib.c .\perlhost.h .\vdir.h .\vmem.h
877 $(CC) -c -I. $(CFLAGS_O) $(CXX_FLAG) $(OBJOUT_FLAG)$@ perllib.c
878!ENDIF
879
880# 1. we don't want to rebuild miniperl.exe when config.h changes
881# 2. we don't want to rebuild miniperl.exe with non-default config.h
882$(MINI_OBJ) : $(CORE_NOCFG_H)
883
884$(WIN32_OBJ) : $(CORE_H)
885$(CORE_OBJ) : $(CORE_H)
886$(DLL_OBJ) : $(CORE_H)
887$(X2P_OBJ) : $(CORE_H)
888
889perldll.def : $(MINIPERL) $(CONFIGPM) ..\global.sym ..\pp.sym ..\makedef.pl
890 $(MINIPERL) -w ..\makedef.pl PLATFORM=win32 $(OPTIMIZE) $(DEFINES) $(BUILDOPT) \
891 CCTYPE=$(CCTYPE) > perldll.def
892
893$(PERLDLL): perldll.def $(PERLDLL_OBJ) $(PERLDLL_RES)
894 $(LINK32) -dll -def:perldll.def -base:0x28000000 -out:$@ @<<
895 $(LINK_FLAGS) $(DELAYLOAD) $(LIBFILES) $(PERLDLL_OBJ) $(PERLDLL_RES)
896<<
897 $(XCOPY) $(PERLIMPLIB) $(COREDIR)
898
899$(MINIMOD) : $(MINIPERL) ..\minimod.pl
900 cd ..
901 miniperl minimod.pl > lib\ExtUtils\Miniperl.pm
902 cd win32
903
904..\x2p\a2p$(o) : ..\x2p\a2p.c
905 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\a2p.c
906
907..\x2p\hash$(o) : ..\x2p\hash.c
908 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\hash.c
909
910..\x2p\str$(o) : ..\x2p\str.c
911 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\str.c
912
913..\x2p\util$(o) : ..\x2p\util.c
914 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\util.c
915
916..\x2p\walk$(o) : ..\x2p\walk.c
917 $(CC) -I..\x2p $(CFLAGS) $(OBJOUT_FLAG)$@ -c ..\x2p\walk.c
918
919$(X2P) : $(MINIPERL) $(X2P_OBJ)
920 $(MINIPERL) ..\x2p\find2perl.PL
921 $(MINIPERL) ..\x2p\s2p.PL
922 $(LINK32) -subsystem:console -out:$@ @<<
923 $(LINK_FLAGS) $(LIBFILES) $(X2P_OBJ)
924<<
925
926perlmain.c : runperl.c
927 copy runperl.c perlmain.c
928
929perlmain$(o) : perlmain.c
930 $(CC) $(CFLAGS_O) -UPERLDLL $(OBJOUT_FLAG)$@ -c perlmain.c
931
932$(PERLEXE): $(PERLDLL) $(CONFIGPM) $(PERLEXE_OBJ) $(PERLEXE_RES)
933 $(LINK32) -subsystem:console -out:$@ -stack:0x1000000 $(LINK_FLAGS) \
934 $(LIBFILES) $(PERLEXE_OBJ) $(SETARGV_OBJ) $(PERLIMPLIB) $(PERLEXE_RES)
935 copy $(PERLEXE) $(WPERLEXE)
936 $(MINIPERL) -I..\lib bin\exetype.pl $(WPERLEXE) WINDOWS
937 copy splittree.pl ..
938 $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR)
939
940$(DYNALOADER).c: $(MINIPERL) $(EXTDIR)\DynaLoader\dl_win32.xs $(CONFIGPM)
941 if not exist $(AUTODIR) mkdir $(AUTODIR)
942 cd $(EXTDIR)\$(*B)
943 ..\$(MINIPERL) -I..\..\lib $(*B)_pm.PL
944 ..\$(MINIPERL) -I..\..\lib XSLoader_pm.PL
945 cd ..\..\win32
946 $(XCOPY) $(EXTDIR)\$(*B)\$(*B).pm $(LIBDIR)\$(NULL)
947 $(XCOPY) $(EXTDIR)\$(*B)\XSLoader.pm $(LIBDIR)\$(NULL)
948 cd $(EXTDIR)\$(*B)
949 $(XSUBPP) dl_win32.xs > $(*B).c
950 cd ..\..\win32
951
952$(EXTDIR)\DynaLoader\dl_win32.xs: dl_win32.xs
953 copy dl_win32.xs $(EXTDIR)\DynaLoader\dl_win32.xs
954
955#----------------------------------------------------------------------------------
956Extensions: buildext.pl $(PERLDEP) $(CONFIGPM)
957 $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR)
958
959Extensions_clean:
960 -if exist $(MINIPERL) $(MINIPERL) -I..\lib buildext.pl $(MAKE) $(PERLDEP) $(EXTDIR) clean
961
962#----------------------------------------------------------------------------------
963
964doc: $(PERLEXE)
965 $(PERLEXE) -I..\lib ..\installhtml --podroot=.. --htmldir=./html \
966 --podpath=pod:lib:ext:utils --htmlroot="file://$(INST_HTML::=|)" \
967 --libpod=perlfunc:perlguts:perlvar:perlrun:perlop --recurse
968
969utils: $(PERLEXE) $(X2P)
970 cd ..\utils
971 $(MAKE) PERL=$(MINIPERL)
972 cd ..\pod
973 copy ..\README.aix .\perlaix.pod
974 copy ..\README.amiga .\perlamiga.pod
975 copy ..\README.apollo .\perlapollo.pod
976 copy ..\README.beos .\perlbeos.pod
977 copy ..\README.bs2000 .\perlbs2000.pod
4cb44f92 978 copy ..\README.ce .\perlce.pod
979 copy ..\README.cn .\perlcn.pod
9e42cd94 980 copy ..\README.cygwin .\perlcygwin.pod
981 copy ..\README.dgux .\perldgux.pod
982 copy ..\README.dos .\perldos.pod
983 copy ..\README.epoc .\perlepoc.pod
4cb44f92 984 copy ..\README.freebsd .\perlfreebsd.pod
9e42cd94 985 copy ..\README.hpux .\perlhpux.pod
4cb44f92 986 copy ..\README.hurd .\perlhurd.pod
1a412519 987 copy ..\README.irix .\perlirix.pod
4cb44f92 988 copy ..\README.jp .\perljp.pod
989 copy ..\README.ko .\perlko.pod
9e42cd94 990 copy ..\README.machten .\perlmachten.pod
991 copy ..\README.macos .\perlmacos.pod
0d53b15f 992 copy ..\README.macosx .\perlmacosx.pod
9e42cd94 993 copy ..\README.mint .\perlmint.pod
994 copy ..\README.mpeix .\perlmpeix.pod
995 copy ..\README.netware .\perlnetware.pod
996 copy ..\README.os2 .\perlos2.pod
997 copy ..\README.os390 .\perlos390.pod
6b0bc4bb 998 copy ..\README.os400 .\perlos400.pod
9e42cd94 999 copy ..\README.plan9 .\perlplan9.pod
1000 copy ..\README.qnx .\perlqnx.pod
1001 copy ..\README.solaris .\perlsolaris.pod
1002 copy ..\README.tru64 .\perltru64.pod
4cb44f92 1003 copy ..\README.tw .\perltw.pod
9e42cd94 1004 copy ..\README.uts .\perluts.pod
1005 copy ..\README.vmesa .\perlvmesa.pod
4cb44f92 1006 copy ..\README.vms .\perlvms.pod
9e42cd94 1007 copy ..\README.vos .\perlvos.pod
1008 copy ..\README.win32 .\perlwin32.pod
4cb44f92 1009 copy ..\vms\perlvms.pod .\perlvms.pod
9e42cd94 1010 $(MAKE) -f ..\win32\pod.mak converters
1011 cd ..\lib
1012 $(PERLEXE) lib_pm.PL
1013 cd ..\win32
1014 $(PERLEXE) $(PL2BAT) $(UTILS)
1015
522078af 1016# the doubled rmdir calls are needed because older cmd shells
1017# don't understand /q
9e42cd94 1018distclean: clean
1019 -del /f $(MINIPERL) $(PERLEXE) $(PERLDLL) $(GLOBEXE) \
1020 $(PERLIMPLIB) ..\miniperl.lib $(MINIMOD)
1021 -del /f *.def *.map
1022 -del /f $(EXTENSION_DLL)
1023 -del /f $(EXTENSION_C) $(DYNALOADER).c $(ERRNO).pm
1024 -del /f $(EXTDIR)\DynaLoader\dl_win32.xs
1025 -del /f $(LIBDIR)\.exists $(LIBDIR)\attrs.pm $(LIBDIR)\DynaLoader.pm
1026 -del /f $(LIBDIR)\XSLoader.pm
1027 -del /f $(LIBDIR)\Fcntl.pm $(LIBDIR)\IO.pm $(LIBDIR)\Opcode.pm
1028 -del /f $(LIBDIR)\ops.pm $(LIBDIR)\Safe.pm
1029 -del /f $(LIBDIR)\SDBM_File.pm $(LIBDIR)\Socket.pm $(LIBDIR)\POSIX.pm
1030 -del /f $(LIBDIR)\B.pm $(LIBDIR)\O.pm $(LIBDIR)\re.pm
1031 -del /f $(LIBDIR)\Data\Dumper.pm $(LIBDIR)\ByteLoader.pm
1032 -del /f $(LIBDIR)\Devel\Peek.pm $(LIBDIR)\Devel\DProf.pm
1033 -del /f $(LIBDIR)\File\Glob.pm
1034 -del /f $(LIBDIR)\Storable.pm
1035 -del /f $(LIBDIR)\Filter\Util\Call.pm
1036 -del /f $(LIBDIR)\Digest\MD5.pm
e934609f 1037 -del /f $(LIBDIR)\PerlIO\scalar.pm
1038 -del /f $(LIBDIR)\PerlIO\via.pm
9e42cd94 1039 -del /f $(LIBDIR)\MIME\Base64.pm
1040 -del /f $(LIBDIR)\MIME\QuotedPrint.pm
1041 -del /f $(LIBDIR)\List\Util.pm
1042 -del /f $(LIBDIR)\Scalar\Util.pm
1043 -del /f $(LIBDIR)\Time\HiRes.pm
83e2e978 1044 -del /f $(LIBDIR)\XS\APItest.pm
9e42cd94 1045 -del /f $(LIBDIR)\XS\Typemap.pm
1046 -del /f $(LIBDIR)\Unicode\Normalize.pm
1047 -if exist $(LIBDIR)\IO rmdir /s /q $(LIBDIR)\IO
522078af 1048 -if exist $(LIBDIR)\IO rmdir /s $(LIBDIR)\IO
9e42cd94 1049 -if exist $(LIBDIR)\B rmdir /s /q $(LIBDIR)\B
522078af 1050 -if exist $(LIBDIR)\B rmdir /s $(LIBDIR)\B
9e42cd94 1051 -if exist $(LIBDIR)\Data rmdir /s /q $(LIBDIR)\Data
522078af 1052 -if exist $(LIBDIR)\Data rmdir /s $(LIBDIR)\Data
9e42cd94 1053 -if exist $(LIBDIR)\Filter\Util rmdir /s /q $(LIBDIR)\Filter\Util
522078af 1054 -if exist $(LIBDIR)\Filter\Util rmdir /s $(LIBDIR)\Filter\Util
9e42cd94 1055 -if exist $(LIBDIR)\Digest rmdir /s /q $(LIBDIR)\Digest
522078af 1056 -if exist $(LIBDIR)\Digest rmdir /s $(LIBDIR)\Digest
9e42cd94 1057 -if exist $(LIBDIR)\MIME rmdir /s /q $(LIBDIR)\MIME
522078af 1058 -if exist $(LIBDIR)\MIME rmdir /s $(LIBDIR)\MIME
9e42cd94 1059 -if exist $(LIBDIR)\List rmdir /s /q $(LIBDIR)\List
522078af 1060 -if exist $(LIBDIR)\List rmdir /s $(LIBDIR)\List
9e42cd94 1061 -if exist $(LIBDIR)\Scalar rmdir /s /q $(LIBDIR)\Scalar
522078af 1062 -if exist $(LIBDIR)\Scalar rmdir /s $(LIBDIR)\Scalar
9e42cd94 1063 -if exist $(LIBDIR)\XS rmdir /s /q $(LIBDIR)\XS
522078af 1064 -if exist $(LIBDIR)\XS rmdir /s $(LIBDIR)\XS
9e42cd94 1065 cd $(PODDIR)
1066 -del /f *.html *.bat checkpods \
1067 perlaix.pod perlamiga.pod perlapollo.pod perlbeos.pod \
1068 perlbs2000.pod perlce.pod perlcygwin.pod perldgux.pod \
1a412519 1069 perldos.pod perlepoc.pod perlfreebsd.pod perlhurd.pod \
1070 perlhpux.pod perlirix.pod perlmachten.pod \
9e42cd94 1071 perlmacos.pod perlmint.pod perlmpeix.pod perlnetware.pod \
6b0bc4bb 1072 perlos2.pod perlos390.pod perlos400.pod perlplan9.pod \
1073 perlqnx.pod perlsolaris.pod perltru64.pod perluts.pod \
9e42cd94 1074 perlvmesa.pod perlvms.pod perlvos.pod \
1075 perlwin32.pod pod2html pod2latex pod2man pod2text pod2usage \
1076 podchecker podselect
1077 cd ..\utils
827a599d 1078 -del /f h2ph splain perlbug pl2pm c2ph pstruct h2xs perldoc perlivp \
4b618757 1079 dprofpp perlcc libnetcfg enc2xs piconv cpan xsubpp instmodsh prove
9e42cd94 1080 -del /f *.bat
1081 cd ..\win32
1082 cd ..\x2p
827a599d 1083 -del /f find2perl s2p psed
9e42cd94 1084 -del /f *.bat
1085 cd ..\win32
1086 -del /f ..\config.sh ..\splittree.pl perlmain.c dlutils.c config.h.new
1087 -del /f $(CONFIGPM)
1088 -del /f bin\*.bat
827a599d 1089 cd ..
1090 -del /s *.lib *.map *.pdb *.ilk *.bs *$(o) .exists pm_to_blib
1091 cd win32
9e42cd94 1092 cd $(EXTDIR)
827a599d 1093 -del /s *.def Makefile Makefile.old
9e42cd94 1094 cd ..\win32
1095 -if exist $(AUTODIR) rmdir /s /q $(AUTODIR)
522078af 1096 -if exist $(AUTODIR) rmdir /s $(AUTODIR)
9e42cd94 1097 -if exist $(COREDIR) rmdir /s /q $(COREDIR)
522078af 1098 -if exist $(COREDIR) rmdir /s $(COREDIR)
9e42cd94 1099
1100install : all installbare installhtml
1101
1102installbare : utils
1103 $(PERLEXE) ..\installperl
1104 if exist $(WPERLEXE) $(XCOPY) $(WPERLEXE) $(INST_BIN)\*.*
1105 $(XCOPY) $(GLOBEXE) $(INST_BIN)\*.*
1106 $(XCOPY) bin\*.bat $(INST_SCRIPT)\*.*
1107
1108installhtml : doc
1109 $(RCOPY) html\*.* $(INST_HTML)\*.*
1110
1111inst_lib : $(CONFIGPM)
1112 copy splittree.pl ..
1113 $(MINIPERL) -I..\lib ..\splittree.pl "../LIB" $(AUTODIR)
1114 $(RCOPY) ..\lib $(INST_LIB)\*.*
1115
1116minitest : $(MINIPERL) $(GLOBEXE) $(CONFIGPM) utils
1117 $(XCOPY) $(MINIPERL) ..\t\perl.exe
1118 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1119 attrib -r ..\t\*.*
1120 copy test ..\t
1121 cd ..\t
1122 $(MINIPERL) -I..\lib test base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t
1123 cd ..\win32
1124
1125test-prep : all utils
1126 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1127 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1128 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1129
1130test : test-prep
1131 cd ..\t
1132 $(PERLEXE) -I..\lib harness
1133 cd ..\win32
1134
1135test-notty : test-prep
1136 set PERL_SKIP_TTY_TEST=1
1137 cd ..\t
1138 $(PERLEXE) -I..\lib harness
1139 cd ..\win32
1140
b4a93add 1141_test :
1142 $(XCOPY) $(PERLEXE) ..\t\$(NULL)
1143 $(XCOPY) $(PERLDLL) ..\t\$(NULL)
1144 $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
1145 cd ..\t
1146 $(PERLEXE) -I..\lib harness
1147 cd ..\win32
1148
9e42cd94 1149clean : Extensions_clean
1150 -@$(DEL) miniperlmain$(o)
1151 -@$(DEL) $(MINIPERL)
1152 -@$(DEL) perlglob$(o)
1153 -@$(DEL) perlmain$(o)
1154 -@$(DEL) config.w32
1155 -@$(DEL) config.h
1156 -@$(DEL) $(GLOBEXE)
1157 -@$(DEL) $(PERLEXE)
1158 -@$(DEL) $(WPERLEXE)
1159 -@$(DEL) $(PERLDLL)
1160 -@$(DEL) $(CORE_OBJ)
1161 -if exist $(MINIDIR) rmdir /s /q $(MINIDIR)
522078af 1162 -if exist $(MINIDIR) rmdir /s $(MINIDIR)
9e42cd94 1163 -@$(DEL) $(WIN32_OBJ)
1164 -@$(DEL) $(DLL_OBJ)
1165 -@$(DEL) $(X2P_OBJ)
1166 -@$(DEL) ..\*$(o) ..\*.lib ..\*.exp *$(o) *.lib *.exp *.res
1167 -@$(DEL) ..\t\*.exe ..\t\*.dll ..\t\*.bat
1168 -@$(DEL) ..\x2p\*.exe ..\x2p\*.bat
1169 -@$(DEL) *.ilk
1170 -@$(DEL) *.pdb
1171
1172# Handy way to run perlbug -ok without having to install and run the
1173# installed perlbug. We don't re-run the tests here - we trust the user.
1174# Please *don't* use this unless all tests pass.
1175# If you want to report test failures, use "nmake nok" instead.
1176ok: utils
1177 $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)"
1178
1179okfile: utils
1180 $(PERLEXE) -I..\lib ..\utils\perlbug -ok -s "(UNINSTALLED)" -F perl.ok
1181
1182nok: utils
1183 $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)"
1184
1185nokfile: utils
1186 $(PERLEXE) -I..\lib ..\utils\perlbug -nok -s "(UNINSTALLED)" -F perl.nok